BUG 9877 PM table Dynaform Title size could grows up to infinite

PROBLEM  The title of the Dynaforms grows up at time to create it from a PM table.
SOLUTION the title should no concat the names of the PM tables in the dynaform table, no it is only assigning the PM table tittle in case the title is empty.
This commit is contained in:
Ralph Asendeteufrer
2012-10-16 13:32:16 -04:00
parent 0a1bb905d3
commit 5f0b6afaf1

View File

@@ -17,7 +17,7 @@
<en>Create from a PM Table</en>
</ADD_TABLE>
<DYN_TITLE type="text" maxlength="256" size ="48" required="1">
<DYN_TITLE type="text" maxlength="48" size ="48" required="1">
<en>Title</en>
</DYN_TITLE>
@@ -87,7 +87,7 @@ document.getElementById('form[DYN_TITLE]').value = document.getElementById('form
leimnud.event.add(document.getElementById('form[ADD_TABLE]'), 'change', setPMTableDynaformTitle);
function setPMTableDynaformTitle(){
if(document.getElementById('form[ADD_TABLE]').value!=''){
document.getElementById('form[DYN_TITLE]').value = document.getElementById('form[DYN_TITLE]').value + document.getElementById('form[ADD_TABLE]')[document.getElementById('form[ADD_TABLE]').selectedIndex].innerHTML;
document.getElementById('form[DYN_TITLE]').value = document.getElementById('form[ADD_TABLE]')[document.getElementById('form[ADD_TABLE]').selectedIndex].innerHTML;
}
}
var oPanel;