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...
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
Do you have any other questions about headers in the WebDataGrid?
Thanks