Hi,
I have a IGGrid where Column resizing feature is implemented. Facing below issues:
1. If I expand/contract first and then sort on any of the columns, the column width goes back to original state(initialize section width). How can I retain the width of the columns as is before sorting?
2. when I expand/contract the columns, the header width increases, in that case when I double click on the bottom portion of header it fires row click event. Note: we have custom row click event implemented in the grid. How do we restrict the row click event firing when clicked on the header row.
Thanks,
kiran
I am just checking the progress of this issue. Please let me know if you have more questions regarding the topic!
Hello Kiran,
Could you please specify the exact IgniteUI version you are using?
I have tested this using one of our online samples as a base:http://jsfiddle.net/kqrh0uvn/It currently uses 14.2.20142.1024 and there is no such issue appearing.I have also tested this with the latest 14.1.20141.2426 with the same results.Please notice there has being also IgniteUI 13.2 e 13.2.20132.2364 released yesterday. You could refer to the attached sample and observe the results.
What is more the dblclick is attached to the document and this breakpoint should fire no matter where is the dblclick occurring (inside or outside of the grid). I am not aware what is the “#adjacencysGrid” you are trying to attach the handler to.
If you want to attach this handler to a particular element, I suggest directly specify this as for example:
$("#grid").dblclick(function (evt) { debugger;});
Please let me know how the applying the latest Service Release works for you.
on double click of row header it fires row double click event(not row click event as mentioned above)