How can I add an icon to the header row of the Row Selector column in a webdatagrid? I have a webdatamenu context menu that pops up when the user clicks on the row selector column of a row in a webdatagrid. What I would like is an icon with tooltip in the header row that helps indicate to the user that they can click on the row selector.
Sorry, think I figured it out...use HeaderRowSelectorCssClass.
Hello Mark,
Thank you for posting your solution in our forum. It will be helpful to other community members as well.
The exact CSS class is:
.igg_HeaderRowSelector
{
background-color:Transparent;
background-image: url(<your image URL here>);
border-width:0px;
}
It is located in “ig_dataGrid.css” file in “ig_res” folder of the project.
More about CSS styling of our Aikido grids (including row selectors) can be found in the following guide - http://community.infragistics.com/blogs/engineering/archive/2010/08/25/webdatagrid-css-styling-guide.aspx
Let me know if you have further questions.