How to inject custom header template for IGgrid which can have custom icons and dialog for filtering,sorting and hiding.
Hello Dhirendra,
You can use igGrid.headerRendered event and add your custom row in the THEAD section of the grid.
Here is an example code:
headerRendered: function (evt, ui) {
ui.table.find("thead").prepend("<tr><th colspan='4' class='ui-iggrid-header ui-widget-header'>put your content here</th></tr>");
}
You can find the complete sample attached to this post.
Best regards, Martin Pavlov Infragistics, Inc.