Dear all,
I have the ultra combo in my windows form. If I have set the datasource from datatable, how to access the records in the selected row from ultra combo??
More two questions as below.
Hello Rchiu5hk,
If you would like to disable typing you could set the following property :- combo.DropDownStyle = UltraComboStyle.DropDownList;Also you are able to hide unnecessary columns setting the Hidden property like:- combo.DisplayLayout.Bands[0].Columns["key"].Hidden = true;
If you would like to access the cells in the selected row from UltraComobo:- combo.SelectedRow.Cells collection
Please let me know if you have any questionsRegards