Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh is not working #59

Open
amrography opened this issue Apr 2, 2020 · 0 comments
Open

Refresh is not working #59

amrography opened this issue Apr 2, 2020 · 0 comments

Comments

@amrography
Copy link

amrography commented Apr 2, 2020

Thank you for your great effort,

I am trying to update data-min and data-max for buttons-range-filter using javascript, But the jplist is filtering with old values

html

<button data-jplist-control="buttons-range-filter" data-selected="true" data-group="group" data-name="filter-1" data-path=".date">Clear duration</button>
<button id="filter-date-btn" class="d-none" data-jplist-control="buttons-range-filter" data-group="group" data-name="filter-1" data-path=".date" data-min="1585692000" data-max="1590530399"></button>

<div class="list-group" data-jplist-group="group">
   <div class="list-group-item" data-jplist-item>
        <span class="date">1585692000</span>
    </div>
</div>
$(document).ready(function() {
jplist.init();

let $btn = $('#filter-date-btn')[0];
    
    $btn.setAttribute('data-min', 1585692001)
    $btn.setAttribute('data-max', 1585692002)

    jplist.refresh()

   $btn.click();

/* I ALSO TRIED THIS
    $btn.dispatchEvent(new MouseEvent("click", {
        bubbles: true,
        cancelable: true,
        view: window
    }))
*/
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant