This is lokendra Ujjwal.
I Had two issues with autoresize of the grid property.
Let Me explan my problem,
1.When I set the width of columns and put any of them as * , then al those columns are hidden for which I had mention width as *.
2. First time only grid is resizing, second time when I bind the same grid , in that case is not resizing, but the rezible columns is always increase and move out of the grid width boundry.
Columns with () width take all available width from grid container after setting width for other columns. So if sum of width of other columns is bigger or equal to width of grid container, column with () width will not be visible as there is no free space
The same algorithm uses while column resizing.
I had the grid width is 650px.
MyWorkGrid.setInitWidths(“65,73,110,93,60,65,65,46,73”);
The totals of this columns Width is about 645.
But is I give like this-
MyWorkGrid.setInitWidths(“65,73,110,93,60,65,65,46,*”);
Then the last colums is hidden.
and not only this, if I define 2-3 columns with * width, all were hidden.
Can You help me out for this issue.