Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
Add column Using API
posted

Hi,

I want to add a column to ig grid using API.

I have a button in page if user click this button I want to add a new column to the grid. How can I do this. below is the code please see  $("#btnAdd").click(function () 

 

<script type="text/javascript">

var products = [

            { "ProductID": 1, "Name": "Adjustable Race", "ProductNumber": "AR-5381" },

            { "ProductID": 2, "Name": "Bearing Ball", "ProductNumber": "BA-8327" },

            { "ProductID": 3, "Name": "BB Ball Bearing", "ProductNumber": "BE-2349" },

            { "ProductID": 4, "Name": "Headset Ball Bearings", "ProductNumber": "BE-2908" },

            { "ProductID": 316, "Name": "Blade", "ProductNumber": "BL-2036" },

            { "ProductID": 317, "Name": "LL Crankarm", "ProductNumber": "CA-5965" },

            { "ProductID": 318, "Name": "ML Crankarm", "ProductNumber": "CA-6738" },

            { "ProductID": 319, "Name": "HL Crankarm", "ProductNumber": "CA-7457" },

            { "ProductID": 320, "Name": "Chainring Bolts", "ProductNumber": "CB-2903" }

       ];

        var adventureWorks;

 

        $(function () {

 

            $("#btnAdd").click(function () {

//Here I want to add a column to grid

            });

 

            $("#grid1").igGrid({

                autoGenerateColumns: false,

                columns: [

{ headerText: "Product ID", key: "ProductID", dataType: "number" },

{ headerText: "Product Name", key: "Name", dataType: "string" },

{ headerText: "Product Number", key: "ProductNumber", dataType: "string" },

{ headerText: "Color", key: "Color", dataType: "string" },

{ headerText: "Safety Level", key: "SafetyStockLevel", dataType: "string" },

{ headerText: "Reorder Point", key: "ReorderPoint", dataType: "number" },

{ headerText: "List Price", key: "ListPrice", dataType: "number" },

{ headerText: "Standard Cost", key: "StandardCost", dataType: "number" },

],

                dataSource: products,

                responseDataKey: 'd.results',

                features: [

{

   name: 'Sorting',

   type: "local"

},

                {

                    name: 'Paging',

                    type: "remote",

                    pageSize: 12

                },

                {

                    name: "Hiding",

                    columnHidden: function (ui, args) {

                        var Columns = localStorage.getItem('Columns');

                        if (Columns === null) {

                            Columns = args.columnKey + ";";

                            localStorage.setItem('Columns', Columns);

                        }

                        else if (Columns.indexOf(args.columnKey) < 0) {

                            Columns += args.columnKey + ";";

                            localStorage.setItem('Columns', Columns);

                        }

                    },

                    columnShown: function (ui, args) {

                        var Columns = localStorage.getItem('Columns');

                        if ((Columns != null) || (Columns.indexOf(args.columnKey) > 0)) {

                            Columns = Columns.replace(args.columnKey + ";", "");

                            localStorage.setItem('Columns', Columns);

                        }

                    },

                    columnSettings: [

                                    { columnKey: "FirstName", allowHiding: true }

                                                    ]

                },

                {

                    name: "Resizing",

                    deferredResizing: false,

                    allowDoubleClickToResize: true,

                    columnSettings: [

                                        { columnKey: "ProductID", allowResizing: true },

                                        { columnKey: "Name", minimumWidth: 40 }

                                        ]

                }

]

            });

        });

</script>

<body>

<a href="BLOCKED SCRIPTvoid(0)" id="btnAdd">Add Column</a>

    <br>

    <table id="grid1">

    </table>

</body>