How to save input values in a dialog?
Hi there,
I've got the following dialog with an EditText in it:
var win, form;
form = "dialog { \
orientation: 'column', \
alignChildren: ['fill','top'], \
preferredSize: [305, 300], \
text: 'Form', \
margins: 15, \
input_group: Panel { \
text: 'Number', \
orientation: 'row', \
alignChildren: ['fill','top'], \
margins: 15, \
input_obj: EditText { \
text: '' \
}, \
} \
}"
win = new Window(form);
Once the dialog is closed, I want it to save the EditText values, so when I open it again it already has it filled.
How do I create this behaviour?
Thanks!
