-
Notifications
You must be signed in to change notification settings - Fork 284
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
custom_select with ajax loaded data #609
Comments
@sparh from docs:
|
Hello thanks for this but it is implemented Have a look at my demo, the only difference between the 2 is line 95 of http://admingva.ch/2.html (the one which is working) |
Hi When data is loaded the multiselect filter is not populated unless I add this line : yadcf.exFilterColumn(table, [ [0, []]]); |
Added initOnDtXhrComplete: Allows to set a callback function to be called after dt xhr finishes - #609
handled in 0.9.4.beta.35, see working jsfiddle the problem is that your multi select is being loaded before the xhr completes, so I added a method test page: https://jsfiddle.net/vedmack/n4dybvp1/2/
|
Hi
I am using the custom_select with jquery multiselect plugin https://github.com/ehynds/jquery-ui-multiselect-widget/
When I load the data, the filter is initialized but not refreshed after data has been populated unless I use yadcf.exFilterColumn(table, [ [0, []] ]);
Here are the demo
http://admingva.ch (multiselect is initialized but empty)
http://admingva.ch/2.html (as expected but I had to add this line of code : yadcf.exFilterColumn(table, [ [0, []] ]);
Hope you can find something better to make it work
The text was updated successfully, but these errors were encountered: