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
525
rendering event is not fired for Ignite Grid
posted

Hello,

I have hooked the rendering event to the Ignite Grid as following:

$('#myGrid').igGrid({
rendering: function (evt, ui) {
//my logic goes here...
}
});

But, this event is never fired. What could be wrong?

Regards,

Arfan Baig

Parents
  • 23953
    Verified Answer
    Offline posted

    Hello Arfan,

    I could not reproduce this issue in the 12.2 releases (both volume and SRs). Which version and build of Ignite UI product are you using?

    @Pete: Pete, it is normal that the event doesn't fire in your case, because you bind to it after the grid is created and this event fires only once while the grid is initialized.

    Here is the description of the event from the documentation:

    rendered

    Event fired after the whole grid widget has been rendered (including headers, footers, etc.).

    This event is fired only when the grid is being initialized.

    It will not be fired if the grid is rebound to its data

    (for example, when calling the dataBind() API method

    or when changing the page size (when paging is enabled)).

     

    Hope this helps,

    Martin Pavlov

    Infragistics, Inc.

Reply Children
No Data