iggridsortingcolumnsorted and iggridsortingcolumnsorting
These aren't firing on a sort multiple dialog action. How do I track these? The documentation doesn't show any other events. The events for Hiding and Shown are fired correctly when using the dialog so I am at a loss at how I capture this event correctly.
(thoughts?)
Hello Daniel,
Thank you for contacting us.
Column sorted and column sorting need to be used if you use the column header click in order to sort a column. If you are using the modalDialog you will need to use modalDialogButtonApplyClick or modalDialogSortingChanged, although it depends what exactly you want to achieve.
Online sample:
http://jsfiddle.net/zdravko/u3xn4s1d/6/
Useful references:
http://help.infragistics.com/jQuery/2014.2/ui.iggridsorting#events:modalDialogButtonApplyClick
http://help.infragistics.com/jQuery/2014.2/ui.iggridsorting#events:modalDialogSortingChanged
Let me know if I may be of further assistance.
I saw the modaDialogSortingChanged and modalDialogButtonApplyClick events but I am hoping the API is incorrect. It says the events are cancellable which means I can't rely on the event because another subscriber can void the entire process. The event does take on the 'ED' suffix which means non-cancellable (going by the rest of the API) so hopefully it is just a typo. Can you confirm?
I need to know if the events are truly changed and will persist like the other events which is why I can't subscribe to "ING" events.
Hi,