Hi,
I am configuring my grid using xml.
I need column level userdata for that.
For each column in the grid i need to set some userdata.
1.Can i set column level userdata for grid using xml configuration . and how to do that?
2.How can i define grid level or global level userdata for a grid using xml configuration.
I know using js method grid.setUserData("",“name”,“value”); we can set global level userdata,
but how to do this in xml configuration.
The Number of columns may vary in my grid .
It is dynamic that how many columns that a grid can have.
So can i initialize columns without width attribute?
It is working perfectly in firefox and chrome but in IE i am getting error and my grid not loading.
But when i am creating my grid by giving width = “200” in xml, if i have 9 columns in my grid only 8
columns displaying 9th one not displayed.
then if i have 10 columns each with 200 width 9 columns displayed again not 10th.
What is the problem with it?
I am giving last column width as “*” every time to take rest space as width to last column. Is there any problem with this * for last column?