application/main.c

changeset 1053
f9976b83795c
parent 1039
6691e007cef7
child 1054
c08c2c9f11b3
--- a/application/main.c	Thu Jan 22 23:18:00 2026 +0100
+++ b/application/main.c	Fri Jan 23 16:13:42 2026 +0100
@@ -1276,9 +1276,8 @@
     ui_list_append(list, &person2);
 
     ui_grid(obj, .margin = 10, .columnspacing = 10, .rowspacing = 10, .fill = TRUE) {
-        //UiModel *model = ui_model(obj->ctx, UI_STRING, "Name", UI_STRING, "Email", -1);
-        //ui_table(obj, .fill = TRUE, .varname = "persons", .model = model, .getvalue = person_getvalue, .onselection = list_onselection);
-        //ui_model_free(obj->ctx, model);
+        UiModel *model = ui_model(obj->ctx, UI_STRING, "Name", UI_STRING, "Email", -1);
+        ui_table(obj, .fill = TRUE, .varname = "persons", .model = model, .getvalue = person_getvalue, .onselection = list_onselection);
         //ui_dropdown(obj, .varname = "persons", .getvalue = person_getvalue, .onactivate = list_onselection, .hexpand = TRUE, .hfill = TRUE);
         char *list[] = {
             "test 1",

mercurial