Iβm launching a standard dialog from tableview_did_select
def tableview_did_select(self, tableview, section, row):
self.selected_row = row
self.selected_section = section
print(dialogs.list_dialog('list dialog', items=['happy', 'days', 'are', 'here', 'again']))
This always returns None!
However, if itβs launched from a ui.ButtonItem on the same view it works properly and returns the selected item.
def cancel_action(sender):
print(dialogs.list_dialog('list dialog', items=['happy', 'days', 'are', 'here', 'again']))
ui.end_editing()
ds.container_view.close()
This always returns the selected item
Any suggestions on making tableview_did_select work?