Hello,
I am running into the following problem: when I call a console.alert() from within a form_dialogs, the screen freezes completely and becomes unresponsive. Is there a way around it?
To illustrate:
import console, dialogs
fields = [{‘type’:’check’, ‘key’:’testing’, ‘title’:’atest’ }]
dialogs.form_dialog(fields = fields)
And in the dialogs.py module, in the tableview_did_select function, right under if t == ‘check’, add:
console.alert('this','is','a','test')
Any help is much appreciated,
G
```