Updated UI to handle object structure for list allowed values

This commit is contained in:
rpidikiti
2011-10-19 16:08:27 -07:00
parent 010b3c130a
commit b3b8dffba3
6 changed files with 89 additions and 9 deletions

View File

@@ -237,7 +237,7 @@ jQuery(function($) {
templateName: function(){
var n = "#paramTemplate";
if (this.allowableValues && this.allowableValues.length > 0) {
if (this.allowableValues && this.allowableValues.valueType == "LIST") {
n += "Select";
} else {
if (this.required) n += "Required";