Hi,
How to make a Textbox as a AutoComplete or Autosuggest for the dynamic created textbox inside the WebDatagrid? I am creating a textbox in the Init method of the WebDataGrid as below code
Infragistics.Web.UI.GridControls.TextBoxProvider txtCustomer = new Infragistics.Web.UI.GridControls.TextBoxProvider();txtCustomer.ID = "txtCustmer";txtCustomer.EditorControl.AutoCompleteType = AutoCompleteType.Search;
this.HitGrid.EditorProviders.Add(txtCustomer);Infragistics.Web.UI.GridControls.EditingColumnSetting columnSettingCustomer = new Infragistics.Web.UI.GridControls.EditingColumnSetting();columnSettingCustomer.ColumnKey = "Key_CUSTOMER";columnSettingCustomer.ReadOnly = (strrole == "ADM") ? true : false;columnSettingCustomer.EditorID = txtCustomer.ID;this.HitGrid.Behaviors.EditingCore.Behaviors.CellEditing.ColumnSettings.Add(columnSettingCustomer);
Please do the Needful.
Thanks in Advance.
I am using ASP.NET 15.2 and I found TextboxProvider, but I could not do it yet.
Could you check and let me know with your latest release.
Hi
Could you let me know the update of this post.
Is there any possiblities to acheive the autocomplete of the textbox which is created in the webdatagrid.
Thanks in advance.
sorry, i didn't mention that we cannot use the webdropdown approach, since the lookup dataset was huge and the grid contains many of columns...thx
hi,
is there any workaround solution if we want to implement autocomplete like feature by using textbox inside webdatagrid cell? is that possible did that by using JQuery/javascript? if yes, could you give me some example how to make it happen?
thanks a lot
jacky