Hello All,
I am working to search a bunch of data in a dataset and display the results in a datagrid and I have been working on this for a while and I have come up with the following code:
//first empty the previous found set
foundset_ds.clear();
data1_ds.addSort("description", ["description", "trackID"]);
if(data1_ds.find(searchTerm)) {
foundset_ds.addItem(data1_ds(data1_ds.getItemId()));
}
And I have the datagrid bound to the 'foundset_ds'.
Am I missing anything? I know the data is being read into data1_ds properly becuase it is displayed in another datagrid for debugging purposes. Any help into getting this to work would be greatly apprecited, sorry I am a little light on the details if you need to know anything let me know.
Thanks
Nate