
cherokee at cherokee-project
Aug 7, 2011, 9:38 AM
Post #1 of 1
(127 views)
Permalink
|
|
[6795] wizards2/Wizard2_GUI.py: Stage_Install_Directory was not handling ' Enter' correctly.
|
|
Revision: 6795 http://svn.cherokee-project.com/changeset/6795 Author: alo Date: 2011-08-07 18:38:44 +0200 (Sun, 07 Aug 2011) Log Message: ----------- Stage_Install_Directory was not handling 'Enter' correctly. Modified Paths: -------------- wizards2/Wizard2_GUI.py Modified: wizards2/Wizard2_GUI.py =================================================================== --- wizards2/Wizard2_GUI.py 2011-08-07 16:34:04 UTC (rev 6794) +++ wizards2/Wizard2_GUI.py 2011-08-07 16:38:44 UTC (rev 6795) @@ -347,6 +347,7 @@ # GUI Layout self += submit self += refresh + self.bind ('goto_next_stage', CTK.DruidContent__JS_to_goto_next (self.id)) class Apply: def __call__ (self): @@ -381,6 +382,7 @@ table.Add (_('Installation directory'), CTK.TextCfg('%s!app_dir'%(CFG_PREFIX), True, {'optional_string': _('Automatic')}), _(NOTE_APP_DIR)) submit = CTK.Submitter (URL_STAGE_INSTALL_DIR_APPLY) + submit.bind ('submit_success', table.JS_to_trigger ('goto_next_stage')) submit += table self += submit
|