1. I have two events itemsrequested and selected indexchanged on my combo box.
On pageload combo box is loaded with a single value.
On text search the selected values get loaded and after that post back occurs. After post back if I expand the dropdown original single value( the value on page load is present). Why the searched value is not present?
For Example:
I have control which displays Manufacturers. On page load I get all the manufacturers in the datatable and load the selected value(eg. 'caterpilllar') in the dropdown(By filering all the other values). So my dropdown has one value only.
Now if I type 'a' all the records starting 'a' gets filtred and loaded in the dropdown. I select one of them and post back happens so as to bring the values related to the selected. But now the dropdown has only one value i.e. 'caterpillar' which is wrong. I am not modifying the value that is attached to thew control.
2. Once I erase all the text from the text area, I want all the records coming into the dropdown list but I see this going for infinite loop in the ItemsRequested event handler.
I have put ItemRequestTimeout="500". It is going in an infinite loop between item requested and page load. The total records are 1267.
Any help would be highly appreciated.