Search the Community
Showing results for tags 'Table'.
-
[request] a button for show list command in console
ahmad.karami posted a topic in Feedback for UNIGINE team
Hi unigine team, is it possible add a button for show list command in console windows for new release version? -
Hello, As I haven't found a standart class for tables in Unigine (something like “WidgetTable”), I decided to use undocumented class Unigine::Widget::Table defined in widget_table.h and used in examples and, apparently, in Editor's GUI. Now I face a problem: I can't change content in any of the table's boxes, exept the box in the first column of the given TableRow. Content of all boxes in the table, exept of the first column's box content, is passed to the table consrtuctor. Content of the first column is set by TableRow::setText(string) method. The other methods which seems to be what I need give unexpected result (for example, setValue(int) selects column in current row) or realize unevident mechanism with bit masks. Question: how to change content in the boxes by realized means? If it is not possible, I need advice in how to realize it.