Hello.
I have a problem with a view and openaccess, i have 3 fields to return for build a multicolumn radcombobox, in the examples for create multicolumn radcombo typed the following:
e.Item.Text = (DirectCast(e.Item.DataItem, DataRowView))("Field1").ToString() + _
"; " + (DirectCast(e.Item.DataItem, DataRowView))("Field2").ToString() + _
"; " + (DirectCast(e.Item.DataItem, DataRowView))("Field3").ToString()
Now to create a RadCombo with OpenAccess I've typed the following,
e.Item.Text = (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field1).ToString() + _
" - " + (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field2).ToString() + _
" - " + (DirectCast(e.Item.DataItem, TelerikORM.Mivista).Field3).ToString()
and the problem is that when I run the form displays all records repeated with data from the last returned in the query, the number of records that is well add, delete and the number of records is OK, but the description is the only is the last record that casts the query OpenAccess.
As if to create the records only reads the last record is of the number of records resulting in the query.
thanks for the Colaboration
Alex Alfonso
Bogotá - Colombia