framework7

Open full view…

Picker with Link

fanikiran
Fri, 19 May 2017 08:04:21 GMT

is there any way on selecting an item from picker will redirect to a HTML page

fanikiran
Thu, 08 Jun 2017 08:51:31 GMT

-- var myApp= new Framework7(); var pickerDevice = myApp.picker({ input: '#picker-device', rotateEffect: true, cols: [ { textAlign: 'left', values: ['abc','def','ghi'], onChange: function (picker, values) { window.alert("Hello " + values ); window.open(values+".html"); }, } ] });