Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
How to associate AutoCompleteExtender (AJAX Control Tool kit 3.5) control with a column of UltraWebGrid 10.2
posted

Hi,

I have a requirement in which I have to associate an AutoCompleteExtender (AJAX Control Tool kit 3.5) control with a column of UltraWebGrid.

In the design time my column is not editable. We make it editable at run time. At design time we have defined the columns in this way:

<igtbl:UltraGridColumn BaseColumnName="Comments" IsBound="True"

Key="Comments">

<Header Caption="Comments">

<RowLayoutColumnInfo OriginX="51" />

</Header>

<Footer>

<RowLayoutColumnInfo OriginX="51" />

</Footer>

</igtbl:UltraGridColumn>

At run time in "DataBound" event we are making that field editable in this way:

UltraGridRow.Cells.FromKey("Comments").AllowEditing = AllowEditing.Yes

Now, how can I associate the AutoCompleteExtender control with this column? This AutoCompleteExtender has to fetch the data through an asynchronous WebService call and show it in the editable text box for each row of the grid.

 

Please provide some help on this. If you have certain resources/links regarding this then also point me to the same.

Thanks.

Prateek

Parents Reply Children
No Data