Lines Matching refs:table
11 chk = obj.has_cell_ctrl(dsc.id, 0, lv.table.CELL_CTRL.CUSTOM_1)
46 table.get_selected_cell(row, col)
49 chk = table.has_cell_ctrl(row.uint_val, 0, lv.table.CELL_CTRL.CUSTOM_1)
51 table.clear_cell_ctrl(row.uint_val, 0, lv.table.CELL_CTRL.CUSTOM_1)
53 table.add_cell_ctrl(row.uint_val, 0, lv.table.CELL_CTRL.CUSTOM_1)
66 table = lv.table(lv.scr_act()) variable
69 table.set_size(150, 200)
71 table.set_col_width(0, 150)
72 table.set_row_cnt(ITEM_CNT) # Not required but avoids a lot of memory reallocation lv_table_set_se…
73 table.set_col_cnt(1)
76 table.remove_style(None, lv.PART.ITEMS | lv.STATE.PRESSED)
79 table.set_cell_value(i, 0, "Item " + str(i+1))
81 table.align(lv.ALIGN.CENTER, 0, -20)
84 table.add_event_cb(draw_event_cb, lv.EVENT.DRAW_PART_END, None)
85 table.add_event_cb(change_event_cb, lv.EVENT.VALUE_CHANGED, None)