Hi team,
i am using a iggrid in which we could see the row size is getting vary between movable columns and fixed columns.
could you please let us the way to fix it.
Regards,
Praveen
Hello Praveen,
Please keep in mind that all versions of Ignite UI prior to version 16.2 are no longer eligible for support. More information about our products lifecycle is available here.
I created a sample for you (using version 19.1) with a similar grid configuration as the one, described by you, and the issue is not reproducing itself. Please have a look at that sample and test it on your side. If this is not accurate demonstration of what you are trying to achieve please feel free to modify it and send it back to me for further investigation along with steps to reproduce.
Please let me know if you need any further assistance
Best regards, Petko Bozhinov
6685.2019.1.zip
This following works better if you need to scroll to an arbitrary item in the list (rather than always to the bottom):
function scrollIntoView(element, container) { var containerTop = $(container).scrollTop(); var containerBottom = containerTop + $(container).height(); var elemTop = element.offsetTop; var elemBottom = elemTop + $(element).height(); if (elemTop < containerTop) { $(container).scrollTop(elemTop); } else if (elemBottom > containerBottom) { $(container).scrollTop(elemBottom - $(container).height()); } }The Note"Iggrid rowoffset"there is more information visit:https://bit.ly/2OUHlbu
Hi Petko,
Thanks for your reply,
Please find the screenshot for your reference. In that first three columns (Material nbr, Material desc, Plant ) are fixed columns.In My gird i have around 40 columns and some of the columns are hidden.
When i unhide the hidden columns we are getting row alignment issue(Marked in Red Color) between fixed column and non fixed columns.
Version Details : 13.2.20132.2157
Please provide the solution the below issue
May I ask you to provide us a more detailed information about the problem that you’re facing, or send us a sample of the described issue? I could suggest you to use jsFiddle or an alternative platform for the creation of the sample.
It is advised to describe the issue as specific as possible because otherwise I won’t be able to give a complete and precise answer to your question.
Thank you,Petko Bozhinov