Hi
we have some issues with the usage of a combbox with allowEmptyValue and validateOnExit within form.
If both enables the user is not able to search for a valid term in the searchbox. If the user clicks in the seletbox (the text should be already selected because of selectOnFocus in the form), and selects the text and starts to type for "Bus to San Fransisco" the letter is disappering and replaced by the normal default text. i'm not quite sure if this is an issue, or if there are some other possibilitys to enable a normal search for the user.
here is the code thats leads to the result shown in the gif.
I have tested it with the latest nightly SmartClient_v100p_2014-11-16_Pro and latest editions of chrome & firefox
we have some issues with the usage of a combbox with allowEmptyValue and validateOnExit within form.
If both enables the user is not able to search for a valid term in the searchbox. If the user clicks in the seletbox (the text should be already selected because of selectOnFocus in the form), and selects the text and starts to type for "Bus to San Fransisco" the letter is disappering and replaced by the normal default text. i'm not quite sure if this is an issue, or if there are some other possibilitys to enable a normal search for the user.
here is the code thats leads to the result shown in the gif.
Code:
function myfunction(p1, p2, p3){ console.log(p3); } isc.DynamicForm.create({ "submit" : function () { myfunction("1", "2", "3") }, "selectOnFocus" : true, "validateOnExit" : true, "canEdit" : true, "fields" : [{ "changed" : function (p1, p2, p3) { myfunction(p1, p2, p3); }, "name" : "comboboxField", "title" : "The Field", "type" : "text", "editorType" : "comboBox", "width" : 360, "readOnlyDisplay" : "static", "textMatchStyle" : "substring", "allowEmptyValue" : true, "addUnknownValues" : false, "valueMap" : { 1 : "- None -", 2 : "Baltasar", 3 : "Bureau", 4 : "Biro", 5 : "Bus to Perdition", 6 : "Bus to San Francisco", 7 : "Equalizer", 8 : "Flower", 9 : "Greetings", 10 : "Groening", 11 : "Hotel" } } ], "values" : { "comboboxField" : 1 } });
Comment