I' am loading content of a tab delimited file into my Grid1.
In a Button script i'am using this command to update specific cells:
set the '["value of cell G"&tmyrow&""] of grp "Grid1" of card "Datenerfassung" of stack "DimuEteilVerwaltung" to tnewCellContent
send "render" to grp "Grid1"
This works perfectly to update the content of a specific cell in column G
But when i edit a cell inside the grid (click in cell , then adding text) and i try to update the cell content by the above command again the cell is not updated nor i get an error.
What i'am doing wrong?
updating cell content in rgrid by script
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: updating cell content in rgrid by script
i've solved it myself:
set the '["htmltext of cell G"&tmyrow&""] of grp "Grid1" of card "Datenerfassung" of stack "DimuEteilVerwaltung" to tnewCellContent
But why does
set the '["value of cell ...
not work after a cell was edited inside the grid?
set the '["htmltext of cell G"&tmyrow&""] of grp "Grid1" of card "Datenerfassung" of stack "DimuEteilVerwaltung" to tnewCellContent
But why does
set the '["value of cell ...
not work after a cell was edited inside the grid?