How to fire an event to know Wijmo Flexsheet has finished rendering in Angular?

Posted by: reeshabh.choudhary on 11 June 2019, 11:50 pm EST

    • Post Options:
    • Link

    Posted 11 June 2019, 11:50 pm EST

    I want an event to be triggered from wijmo flexsheet once it has completed rendering of datasource provided to it.

    I am using Angular 5.

  • Posted 12 June 2019, 7:12 pm EST

    You may use the initialized or the loadedRows event. Please refer to the code snippet below that shows how you can use these events:

    In your markup:

    <wj-flex-sheet #sheet (initialized)="initSheet(sheet)" (loadedRows)="loadedRows(sheet, $event)>
    



    In your TS file:

    initSheet(sheet) {
        // your code
    }
    
    loadedRows(sheet, args) {
        // your code
    }
    

    You may use any one of the events for your use case.

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels