Combobox

Hi,



if there is no record available for searched criteria, is it possibel to display “No record Found” or something…

The list of combo in filtering mode can show only elements related to enetered text, it not possible to show some different value in list.
You can add any kind of custom logic by using existin events

combo.attachEvent(“onKeyPressed”,funciton(){
    if (!this.filterAny) {
       //nothing found - any kind of custom message can be shown
    }
})