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
920
Row Selector Header Text
posted

I have rowselectors with checkboxes enabled on igGrid - all works Ok but how do I add some Text to appear at column header.

 

features: [

                         {

                           name:"RowSelectors",

                           enableCheckBoxes:true,

                           enableRowNumbering:false,

                           rowSelectorColumnWidth: 40

                         },

                        {

                            name:'Selection',

                            mode:"row",

                            multipleSelection:true

                        }

            ]

  • 24671
    posted

    hi,

    we currently don't offer an option to set text in the "check all" checkbox header, but you can add a text element after the grid has been rendered in the following way:

    $("th.ui-iggrid-rowselector-header").append("<span> Some header text </span>");

    Hope it helps. Thanks,

    Angel