Hi for my WebApp i use Datawebdatset.querystring and Load to get data from server. There is any way to get all data from server and use something like "filter" to select this without every time use a different querystring ? in other words i want to have available all data in memory to fast access on it ... i see WebClientDataSet ... its a solution ? how use it ?
The QueryString is supposed to be sent to the server to retrieve data. To use it, you need to hit the server. After you retrieve data, it's just an array with objects, you can always manually filter it out using your regular Pascal/JavaScript code, but then it's up to you, not up to the dataset or XData.