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
590
Property to name and display the Grid Name
posted

Is there a property or mechanism to show a grid name above the grid column heading...as in a single row above the column header. This can be done in the windows grid so was wondering if a similar property/feature is available with the webdatagrid...

Parents
No Data
Reply
  • 14517
    Suggested Answer
    Offline posted

    Hello,

    Currently there is no builtin functionality available to do this. A row can be added before the header in javascript as follows:

     function WebDataGrid_Initialize() {
                var grid = $find("WebDataGrid1");
                var hdr_area = grid._headingArea;
                hdr_area.insertRow(0);
                hdr_area.rows[0].innerText = "WebDataGrid Header1";
         
            }

    Thanks,

    Valerie

Children