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
4695
ultra combo issue??
posted

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.

Parents
No Data
Reply
  • 53790
    Suggested Answer
    posted

    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 questions
    Regards

Children
No Data