Hi Telerik,
I'm using a RadCombobox in my application and i like to know how i can select item in code behind?
My RadCombobox is bounded thats so:
this.lstCliente is a list of objects.
Thanks.
I'm using a RadCombobox in my application and i like to know how i can select item in code behind?
My RadCombobox is bounded thats so:
foreach (ClienteBE _cliente in this.lstCliente)
{
tam = _cliente.Nome.Length > tam ?
_cliente.Nome.Length :
tam;
this.cmbCliente.DisplayMemberPath = "Nome";
this.cmbCliente.Items.Add(_cliente);
}
this.lstCliente is a list of objects.
Thanks.