1
我想弄清楚如何限制用戶在InputText字段中的TypeAhead值。我認爲我的想法是運行邏輯onblur,它會檢查字段中的值是否符合可接受的值。我的inputText和typeAhead代碼如下:只允許InputText字段中的TypeAhead值
<xp:inputText id="TypeAhead">
<xp:typeAhead mode="partial" minChars="2" ignoreCase="true">
<xp:this.valueList>
<![CDATA[#{javascript:db = new Array(@DbName()[0], 'names.nsf');
return @DbColumn(db, "($VIMPeople)", 1)}]]>
</xp:this.valueList>
</xp:typeAhead>
</xp:inputText>
在此先感謝您的任何想法。