We have an application containing a list grid with more than 30 columns and all the columns are combobox items.
All the columns are associated with a single datasource.
When the application is loaded there is a server call for fetching data of each column. (setAutoFetchData is set to true)
Now since smartgwt forms a queue of calls for the fetch and the response is returned only after all the calls are done (The end time of each calls is equal to the queue end time), there is a delay in populating the data. This causes the filtering to not work properly when something is typed in any of the text editors of the comboboxes.
Is there anything that can be done to improve this fetch call? Also, can we access the queue and process the calls in multi threaded way?
All the columns are associated with a single datasource.
When the application is loaded there is a server call for fetching data of each column. (setAutoFetchData is set to true)
Now since smartgwt forms a queue of calls for the fetch and the response is returned only after all the calls are done (The end time of each calls is equal to the queue end time), there is a delay in populating the data. This causes the filtering to not work properly when something is typed in any of the text editors of the comboboxes.
Is there anything that can be done to improve this fetch call? Also, can we access the queue and process the calls in multi threaded way?
Comment