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.
xbrowse edit column
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: xbrowse edit column
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
If you are not using a very old version of FWH, retotalling is automatically done by XBrowse.
When
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: xbrowse edit column
Thanks for the answer but is not column totals, other totals in gets with many expressions. I want to do after edit the cell.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
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: xbrowse edit column
Code: Select all
oCol:bOnChange := { |oCol, uOldValue| yourfunction( oCol, uOldValue ) }
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: xbrowse edit column
Thank you! Works great!nageswaragunupudi wrote:Code: Select all
oCol:bOnChange := { |oCol, uOldValue| yourfunction( oCol, uOldValue ) }