Hi,
I wanted to use textbox and autocomplete extender in gridview. after entering in textbox corresponding letter series should come from database like google search. I am not getting what procedures to follow for adding textbox and autocomplete extender in gridview. i have done this without using gridview. Now i wanted to use in gridview. please can anybody help me regarding this?
Thanks in advance.
Loading
Javeed M ShaikhPosted Oct 22, 2011, 12:08 PM
Following is how you define your gridview for the same:
DataSourceID="SqlDataSource1">
...//other columns here
ID="autoComplete1"
TargetControlID="txtAutoCompBox"
ServicePath="MyAutoComplete.asmx"
ServiceMethod="MyGetList"
MinimumPrefixLength="1"
CompletionInterval="10"
EnableCaching="true"
CompletionSetCount="12" />
//Your datasource here...
Please do not forget to mark "Accepted Answer".