I want to bind dynamic data to a validation list - is there an easy way to do this? The data will be an array of objects, with id/value pairs and in the dropdown list I'd like to show the value, but store the ID.
I'm using (where valueList is an array which I want to be databound) :
validation {
dataType: "list",
showButton: true,
comparerType: "list",
from: valueList,
allowNulls: true,
type: "reject"
}