Hi,
I have ignite grid with width as 100%.
SInce for fixed column settings (% is not supported), am setting width in px for each column.
When i give columns width in Pixcel, last column is occupys more space in large screens (it is getting auto adjusted to rest of the available width)
Please let me know how to solve the last column width issue.
Thanks,
Rajesh
Hello Rajesh,
After investigating this further, I determined that your requirement could be achieved by setting the autofitLastColumn property to false. However, please keep in mind that when the property is set to false the remaining space in the grid would be left empty.
$("#grid").igGrid({
width: "100%",
autofitLastColumn : false,
. . .
});
Please let me know if you need any further information regarding this matter.
Regards, Monika Kirkova, Infragistics
Hi Monika Kirkova,
Thanks for the solution. it worked for the last column issue.