Replies: 1 comment 1 reply
-
for index, (key, data) in enumerate(user_data.items()):
# print(f"Key: {key}, Value: {value}")
with dpg.table_row(filter_key=data["name"]):
dpg.add_text(f"{index + 1:04d}")
dpg.add_text(_truncate_string(data["id"]))
``` |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Kolhun
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, I have recently been using dearpygui and there was a question with filtering the table, using the example from the demo I want to filter by the second column rather than by the third, as in the demo. I did not understand how to implement this, please tell me
Beta Was this translation helpful? Give feedback.
All reactions