BUG 7900 DynaForm title not changed in designer, on save SOLVED

- The dynaform title was not refreshed after the save action
- Refresh the dynaform title after the save action
This commit is contained in:
Julio Cesar Laura
2012-12-04 12:09:14 -04:00
parent 0704babff8
commit 5aa3050203
3 changed files with 8 additions and 7 deletions

View File

@@ -163,7 +163,7 @@ class XmlForm_Field_toolButton extends XmlForm_Field
$dataset = DynaformPeer::doSelectRS($criteria);
if ($dataset->getRecordCount() > 0) {
$html .= '<span style="font-size: 8pt;margin-left: 20px;">' . G::LoadTranslation('ID_EDITING_DYNAFORM');
$html .= ': <select onchange="window.location = \'dynaforms_Editor?PRO_UID=' . $this->owner->values['PRO_UID'];
$html .= ': <select id="_dynaformsList_" onchange="window.location = \'dynaforms_Editor?PRO_UID=' . $this->owner->values['PRO_UID'];
$html .= '&DYN_UID=\' + this.value;" class="module_app_input___gray">';
$dataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$dataset->next();