Hello.
When displaying a tree view with sao, I noticed that my client only requests 2 rows per post request, generating dozens of post requests per view display.
An exemple of request parameters :
id=123, model=model.MYMODULE.MYMODEL.read, params:{{64,120},…}
When using the demo server (http://demo5.0.tryton.org) with its sao version, all rows are requested and loaded by only one request.
Witch configuration parameter did I messed up ?
Thank you for your help.
Below are fragments of my config files :
conf.ini :
[cache]
model = 100
record = 100
field = 100
sao.js :
Sao.config = {};
Sao.config.limit = 20;
Sao.config.display_size = 20;
Sao.config.roundup = {};
Sao.config.roundup.url = ‘’;
Sao.config.title = ‘(test server)’;
Sao.config.icon_color = ‘#00387b’;//’#3465a4’;
Sao.config.bus_timeout = 10 * 60 * 1000;