Вставить lookupedit значение для xtragrid и в xtragrid двойной щелчок по ячейке и это значение должно отображаться в lookupedit
I created one XtraGrid and added some values with the help of LookUpEdit and some TextBoxes. I want to modify the values what I have added into grid here. I am using getfocusedrowcellvalue to get values from grid into TextBoxes. How can I get that getfocusedrowcellvalue to LookUpEdit? example:- txtdrmk.Text = Convert.ToString(gridView3.GetFocusedRowCellValue("remark"));//to get value from selected cell to text box. cmbper // this is my lookupedit.
Что я уже пробовал:
Я пытался давать вот так
cmbper.text=Convert.ToString(gridView3.GetFocusedRowCellValue("person"));
он показывает это имя в lookup edit, но когда я попытался выбрать другое имя, этот выпадающий список в первый раз показывал пустое, а во второй раз только имена.