I have a xbrowse object that has 5 columns. The last 2 columns is editable with
Code: Select all
oCol:nEditType := EDIT_GET
How can I do it?
Thanks.
Code: Select all
oCol:nEditType := EDIT_GET
Code: Select all
oCol:bEditWhen := { |oColObj| <yourcondition> }
Thank you very much Mr. Rao. It works.nageswaragunupudi wrote:Code: Select all
oCol:bEditWhen := { |oColObj| <yourcondition> }