It would be nice to give a predefined list of values for a filter. For example, if the data that was being queried only had X options for a field, would be nice to show all of them and let the user select the one they wanted. Would use less screen space than a normal list of say 10 options, though would be limited to only one option?
case fTypes.selectList:
var arrayLength = this._field.list.length;
h+='<select id="value">'+EvoUI.optNull;
for (var i = 0; i < arrayLength; i++) {
h+=EvoUI.inputOption(this._field.list[i].id, this._field.list[i].label);
}
h+='</select>';
break;
It would be nice to give a predefined list of values for a filter. For example, if the data that was being queried only had X options for a field, would be nice to show all of them and let the user select the one they wanted. Would use less screen space than a normal list of say 10 options, though would be limited to only one option?
Perhaps:
and then:
just a rough sketch of a possible way?