Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
50
Grid last column width auto adjustment issue
posted

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

Parents
  • 1300
    Verified Answer
    Offline posted

    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

Reply Children