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
175
Add blank item to UltraCombo dynamically
posted

How can i add a blank item to the ultra combo box list of values dynamically

Thanks in advance

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    You would have to add a row to the underlying data source.

    Example:
    DataTable table = this.ultraCombo1.DataSource as DataTable;   

    if ( table != null )
     table.Rows.Add( new object[]{ false, "test", "test", 233, DateTime.Today } );

Children