Hi,
I have a array xbrowse, how i can turn a cell editable and process a function when finish edit and make total this column?
Thanks in advance.
Hi,
I have a array xbrowse, how i can turn a cell editable and process a function when finish edit and make total this column?
Thanks in advance.
Set oCol:nEditType := EDIT_GET. That makes the cell editable.
If you are not using a very old version of FWH, retotalling is automatically done by XBrowse.
When
nageswaragunupudi wrote:Set oCol:nEditType := EDIT_GET. That makes the cell editable.
If you are not using a very old version of FWH, retotalling is automatically done by XBrowse.
When
oCol:bOnChange := { |oCol, uOldValue| yourfunction( oCol, uOldValue ) }nageswaragunupudi wrote:oCol:bOnChange := { |oCol, uOldValue| yourfunction( oCol, uOldValue ) }