BUG-11275 Error en la creacion de Case Scheduler SOLVED

- no validation.
- was add validation for name case scheduler.
This commit is contained in:
Marco Antonio Nina
2013-05-28 16:27:46 -04:00
parent 6939b214ff
commit d750e635b1
4 changed files with 4 additions and 4 deletions

View File

@@ -771,7 +771,7 @@ function validateSchedulerFields(oForm) {
}
var listNames = document.getElementById('form[SCH_LIST]').value;
listNames = listNames.split("|");
listNames = listNames.split("^");
for (var i= 1; i<listNames.length; i++) {
if (schedulerTitle == listNames[i]) {
document.getElementById('form[SCH_NAME]').focus();

View File

@@ -633,7 +633,7 @@ function validateSchedulerFields(oForm) {
}
var listNames = document.getElementById('form[SCH_LIST]').value;
listNames = listNames.split("|");
listNames = listNames.split("^");
for (var i= 1; i<listNames.length; i++) {
if (schedulerTitle == listNames[i]) {
document.getElementById('form[SCH_NAME]').focus();