You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed something with the typeAhead that is an issue.
If I set typeAhead = true; then on the initial lookup it does in fact put the text for the item that most closely matches, but it does not select the text so I cannot keep typing.
If there is already an item selected then this works fine.
In debugging it is because the rawValue is not set the first time the typeAhead text is inserted.
A possible solution is in the onTypeAhead function starting at line 982
if(selStart!==0&&selStart!==len){inputElDom.value=newValue;// need to set the rawValue so the selection works for the first itemme.rawValue=newValue;// end fixme.selectText(selStart,newValue.length);}
The text was updated successfully, but these errors were encountered:
I noticed something with the typeAhead that is an issue.
If I set typeAhead = true; then on the initial lookup it does in fact put the text for the item that most closely matches, but it does not select the text so I cannot keep typing.
If there is already an item selected then this works fine.
In debugging it is because the rawValue is not set the first time the typeAhead text is inserted.
A possible solution is in the onTypeAhead function starting at line 982
The text was updated successfully, but these errors were encountered: