how can i use search dropdown list in Titanium -


i want use drop down list text box searching ability. new titanium, if knows how please inform me.

var picker = ti.ui.createpicker({     bottom : 60,     width : 150 }); var data = []; data.push(titanium.ui.createpickerrow({     title : 'bananas' })); data.push(titanium.ui.createpickerrow({     title : 'strawberries' })); data.push(titanium.ui.createpickerrow({     title : 'mangos' })); data.push(titanium.ui.createpickerrow({     title : 'grapes' })); picker.add(data); win1.add(picker); var button = titanium.ui.createbutton({     title : 'login',     right : 50,     bottom : 30,     width : 80,     height : 60 });  win1.add(button);  


Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -