and also want to know that how to change the color of grid..Please help me....
Hello Mayuri,
Thank you for posting in our forum!
One possible approach for changing the igGrid style is using the jQuery UI theme roller. It is compatible with the Infragistics components. A detailed article on how to achieve this could be found at the following link: http://help.infragistics.com/Help/Doc/jQuery/2013.1/CLR4.0/html/Deployment_Guide_Styling_and_Theming.html#_Ref321389098
More information on other style customizations could be found at: http://help.infragistics.com/Help/Doc/jQuery/2013.1/CLR4.0/html/Deployment_Guide_Styling_and_Theming.html
If you need any further assistance or if any additional questions arise please let me know.
Thanks Dimka
right now i have one another query here I want the parent header to be repetitive for each expanded child. In below example I want dr name row will be there for Mohite row( above the mohite row)
Do you want me to consider any additional specificities of your scenario? If so, don’t hesitate to post here your requirements.
Hi
actually am still facing the header issue as you told me am doing like that but which is not the proper solution for me. my requirement is like that i want to add the alternate color bands for all the headers.
I am just following up to check if you have any further questions regarding this scenario. If so, feel free to contact me again.
thank you dimka
its working for me also
but when we change the background color to respective one it reflects but at the same time the lable of header is into the span so it look funny
<span class="ui-iggrid-headertext">Doctor name</span> then how to change the only css of this because the every header span has the same class name as class="ui-iggrid-headertext"
Have you changed the styles to correspond to your grid column id-s?
# hierarchicalGrid_DoctorName
{
background:blue;
}
# hierarchicalGrid_DoctorID
.ui-iggrid-expandheadercell {
background:blue !important;
.ui-widget-header {
background: none repeat scroll 0 0 #FF0000;
border-bottom: 1px solid #777777;
color: #FFFFFF;
font-weight: normal;
From the code you have provided they should be something like the id-s above.
I have tested this on a couple of projects and this works as expected.