In RadGrid control, you can add DetailTables.
By default, the html generated out of this added DetailTable contains <colgroup> and <thead> elements.
I'd need to remove these 2 elements and currently I'm using JQuery on the client side:
thisNestedTable.find('> thead,> colgroup').remove();
How to achieve this from the server side? Does GridTableView support this to exclude these 2 elements from the generated html?
I'd need this asap so would really appreciate it if you could respond quickly.
By default, the html generated out of this added DetailTable contains <colgroup> and <thead> elements.
I'd need to remove these 2 elements and currently I'm using JQuery on the client side:
thisNestedTable.find('> thead,> colgroup').remove();
How to achieve this from the server side? Does GridTableView support this to exclude these 2 elements from the generated html?
I'd need this asap so would really appreciate it if you could respond quickly.