I'd apply combobox with style "0" in each row of grid for ensuring to edit content. I can't managed to set bound to .f. because it will affect the rest of combobox in grid with same selected option.It won't be problem if I edit the content of combobox in form outside the grid and still hold in displayable in view. I need to edit content of combobox in each row but it will stand to hold the content until I reach or append in next row without dissapear.I'm using VFP6.0.
Here is my combox coding in init()
frm.grid_list.column9.width = 65
frm.grid_list.column9.bound = .t.
frm.grid_list.column9.removeobject("text1")
frm.grid_list.column9.addobject("com_uom","combobox")
frm.grid_list.column9.currentcontrol = "com_uom"
frm.grid_list.column9.com_uom.visible = .t.
frm.grid_list.column9.com_uom.readonly = .f.
frm.grid_list.column9.sparse = .f.
Appreciate someone could help me in this case of problems.Thanks.
Here is my combox coding in init()
frm.grid_list.column9.width = 65
frm.grid_list.column9.bound = .t.
frm.grid_list.column9.removeobject("text1")
frm.grid_list.column9.addobject("com_uom","combobox")
frm.grid_list.column9.currentcontrol = "com_uom"
frm.grid_list.column9.com_uom.visible = .t.
frm.grid_list.column9.com_uom.readonly = .f.
frm.grid_list.column9.sparse = .f.
Appreciate someone could help me in this case of problems.Thanks.