After colouring the child table I’ve managed to mark the specific rows I want to mark automatically

Hi @Debjit_Bhattacharjee:

Maybe you have not solved yet … :sweat_smile:

This code define an event wich will triggered when user click on any button in the grid footer. You can customize it to “hearing” just one button (if you need different behavior on each button …)

refresh(frm){
    $(frm.wrapper).find(".grid-footer").on("click",function(evt){
        console.log('Pagination buttons pressed')
        your_color_logic_here()
     })
}

@girumtibebu try this:

Hope this helps.

2 Likes