I try to do a custom auto complete of web combo with client side function selectWhere, i added a handler to event EditKeyUp(or EditKeyDown) but in neither case i can't obtain the latest value which is typed(i obtain previous typed value) with the typed value i do a selectWhere in case of input length and i wand to expand dropdown but i can't find a function or a property to use for this.
{
var cmbEmbarkationPoint = igcmbo_getComboById(webComboId);
var dd = cmbEmbarkationPoint.getDropDown();
cmbEmbarkationPoint.grid.show = true;
cmbEmbarkationPoint.setDropDown(true);
if (value.length == 3) {
}