Hello world,
I'm using RebGUI, but I don't know how to update a whole table content.
I'm writing a program that put data in a RebGUI table, but if I alter the data block of the table, the table isn't updated.
Here an example:
The redraw don't work! Or I don't understand how to update table...Code:do %rebgui.r display "temp" [ a: table options ["a" left 0.5 "b" left 0.5 ] data [ 1 2 3 4 5 6] button "1" [ a/data: ["one" "two" "three" "four"] a/redraw ] ] do-events
Max
The redraw function works on the original series, but you are creating a new series and so redraw doesn't know about it.
should work. This applies to all rebgui data series.Code:insert clear head a/data [ "one" "two" "three" "four" ] a/redraw