List view loadNext with custom url and parameters

Dear webix community,

the problem i am having is that i can not get it to work that additional parameters would be passed along with start, count and continue while calling the loadNext method of list view.

Example:
var url = “data/LoadSomething.php”;
$$(“SomeList”).loadNext(5,0,null, url + “?filter=test”);

How the server receives the request:

QUERY_STRING = “start=0&count=5&continue=true”
REQUEST_URI = “/app/data/LoadSomething.php?start=0&count=5&continue=true”

What am I missing?

my webix version is 7.1.3.

Thank you in advance for your time and effort.

Kind Regards,

Simon

Hi @SimonPriber ,
Could you, please, share the snippet?
Unfortunately wasn’t able to reproduce your problem. Everything works as expected for me: Code Snippet

1 Like

Dear @pyrus_vagus ,

thank you for your response.

Well you snippet is a fine example.

You have put that the filtered value of architecture should be “all”.

But as a result you get “i386” architecture value.

Kind Regards,

Simon

Dear @pyrus_vagus,

figured it out. Your snippet probably uses data that can not be server filtered.

Prepared a snippet where this works.

Snippet

Thank you for your help.

?filter[package]=acx did the trick.

Kind Regards,

Simon

1 Like