Hi,
I am using the new Search component to search for nodes in a RadTreeView. (Is there a way to do this directly?)
I'm using an ArrayList to capture all my node names, and during Page_load, I am populating this ArrayList and then setting the datasource of my search box to this list.
This seems like it should work based off the documentation, but any letter I type into the box returns a client side error of "Datasource not sets."
I haven't done much with my onSearch event handler just yet, because I wanted to first ensure the search box was getting bound. Any ideas?
Thanks,
Ajit
I am using the new Search component to search for nodes in a RadTreeView. (Is there a way to do this directly?)
I'm using an ArrayList to capture all my node names, and during Page_load, I am populating this ArrayList and then setting the datasource of my search box to this list.
// this line is in a for loop, adding elements to my arrayList
measureSearchNodesList.Add(m.ToString());
RadMeasuresSearchBox.DataSource = measureSearchNodesList;
This seems like it should work based off the documentation, but any letter I type into the box returns a client side error of "Datasource not sets."
I haven't done much with my onSearch event handler just yet, because I wanted to first ensure the search box was getting bound. Any ideas?
Thanks,
Ajit