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
820
GridRowSelectors - EnableCheckBoxes
posted

Hi,

Is it possible to make this column with checkbox frozen (to have it always visible when we scroll)?

Thanks,

Aliaksei

Parents
  • 3595
    posted

    Hello Aliaksei,

    Thank you for posting in our forum!

    It is possible to freeze the igGrid columns by enabling the column fixing feature (see in bold below):

                $("#grid").igGrid({

                    columns: [

                        { headerText: "Customer ID", key: "ID", dataType: "string", width: "150px" },

                        { headerText: "Company Name", key: "CompanyName", dataType: "string", width: "200px" },

                              …

                    ],

                              …

                    features: [

                        {

                            name: "ColumnFixing",

                            fixingDirection: "left",

                            columnSettings: [

                                {

                                    columnKey: "CompanyName",

                                    isFixed: true,

                                    allowFixing: false

                                },

                                …

                            ]

                        }

                    ]

                });

      

    A detailed sample regarding this feature might be found at the following resource: http://www.igniteui.com/grid/column-fixing

    If you need any additional assistance regarding this scenario please let me know.

Reply Children