• I am trying to click the expandable row on page load with

    $(function() {
        $('#erow).click();
    });

    where #erow is the row id but no luck, I have also tried different selector using firebug but am not getting this

    Thanks

    • This topic was modified 9 years, 2 months ago by capson.
Viewing 1 replies (of 1 total)
  • Bhushan

    (@bhushansbobade20)

    Hello capson (@capson),

    Sorry for delay to reach out, Below is the response to your query,

    FYI: Our Expand row perform click event on bb-er-row class.

    I am going to share updated js code with you.

    Custom JS code:
    =================================

    jQuery(document).ready(function() {
        jQuery('#erow .bb-er-row').click();
    });

    =================================

    Try above js code once, It will definitely work for you.

    Hope the information provided is helpful. If you have any issue, please do let me know.

    Regards,
    Bhushan

    • This reply was modified 9 years ago by Bhushan.
Viewing 1 replies (of 1 total)

The topic ‘Expand row on page load with js’ is closed to new replies.