Hi,
Thanks for your reply…
But, what about this?
Change the back ground color of a cell in a row dynamically(programatical…).
I am doing the following.
I’ve a columns like Title, Episode Title and Season Number.
If the selected Title is type of ‘Feature’, then I need to make the ‘EpisodeTitle’ and ‘SeasonNumber’ cells as
1. non-editable and
2. greyed background color.
With the below URL I can able to solve the #1.
For #2, I am trying like the below…
var rowindex=0;
//rowindex=editingrow.uid.
$("#row"+rowindex+"IngestGrid div:nth-child(9)").css("background-color", "grey");
Its working fine, but when I added a new row with the blow code
$("#IngestGrid").jqxGrid('addrow', rowindex, rowdata);
I am losing the grey color.
I tried all the possible ways…
And also when we navigated to next page in grid, row0 is greyed.(i.e. we greyed first row in the first page)
Can you please help me regarding this?