Hi,
I am new to UltraComboEditor and i would wish to populate the combo with three columns only, where in the _objLedger contain total 15 columns.
Code ----------------------------------------------------------
List _objLedger = new List();_objLedger = _objClsLedger.GetLedgerListDT(Utility.glbClientID, _intCCode, _strFinYear, _strFields, 26);cboLedger.DataSource = _objLedger;cboLedger.DisplayMember = "ADispName";cboLedger.ValueMember = "ACode";cboLedger.DataBind();
End Code -----------------------------------------------------------
Looking forward for your reply
The easiest way to solve this task, could be if you are using UltraCombo control instead of UltraComboEditor control. After that you could hide desired columns. For example:
ultraCombo1.DisplayLayout.Bands[0].Columns[2].Hidden =true;
Let me know if you have any questions
Hi Georgi,
Thanks for the suggestion.
Will you plese suggest when to use UltraCombo and UltraCombo Editor contorl?
Best Regard,