Skip to content
Discussion options

You must be logged in to vote

Hi,

I have a workaround if you are still interested,

add javascript into your global script file -- app.js and listen ajax complete function in jQuery

$(document).ready(() => {
    $(document).ajaxComplete(function (event, jqXHR, ajaxOptions) {
        const project = new Project();
        project.checkRows();
    });
});

Make function that will check row, something like this

class Project {
    checkRows() {
            $('[data-mark="true"]').each(function () {
                const $this = $(this);
                const min = $this.data('min');
                const current = $this.data('current');
    
                let elem = $this.closest("tr");
                if (min > current && 

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@pxpm
Comment options

pxpm Jun 9, 2023
Maintainer

Comment options

You must be logged in to vote
0 replies
Answer selected by jcastroa87
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants