I'd like to iterate through all the rows in a gridview and retrieve data from RepositoryLookupEdit.
Basically I'd like to do this, but I don't know how to get the RepositoryLookupEdit:
 For i as Int32 = 0 to myGridView.RowCount -1
   Dim row As DataRowView = CType(myGridView.GetRow(i), DataRowView)
   //'This next line does not work
  ...
            
           
          
            
            Hai all,
       Am using DevExpress LookupEdit in C#.NET project,also set both Display Member and Value member property of LookupEdit.How do I get selected value from DevExpress LookupEdit.
Thank you   
...
            
           
          
            
            Hai all, Am using DevExpress LookupEdit in C#.NET project,also set both Display Member and Value member property of LookupEdit and  items are not dispaying on LookupEdit list page ,but i can select items. After selecting one item the selected item dispayed on LookupEdit text. Please help
lkpReference.Properties.DataSource = _lab.selectL...
            
           
          
            
            Hai,
  Am using DevExpress LookupEdit in C#.NET application.I want to clear all items in the LookupEdit.Please help 
code:
lkpLabItem.Properties.DataSource = null; 
         lkpLabItem .Properties.DataSource = _lab.selectChemicals ();
         lkpLabItem.Properties.DisplayMember = "labitem_Name";
         lkpLabItem.Properties.ValueMem...
            
           
          
            
            Hai all,
I want to get lookupedit display text when am giving correspond edit value.
example:
if am giving
LookupEdit1.Editvalue="3";
then it should show display text of Editvalue="3"
please help
//code
 cmbChemical.Properties.DataSource = _lab.selectChemicals();
        cmbChemical.Properties.DisplayMember = "labitem_Name";
    ...