Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML select Element multiple attribute | multiple property not working in Windows phone 8

I want to use multiselect dropdown for windows phone 8 using HTML 5 and JQuery.

The below code is working perfectly in IOS, Android and also in IE browser. But in the application it is behaving like simple select box, cant do multiple selection.

 <select id="oID_1" size="3" multiple>
        <option>Item 1</option>
        <option>Item 2</option>
        <option>Item 3</option>
 </select>
  1. Right now I am getting popup window like this (Screenshot from Phone):enter image description here

  2. But I want something like this (Screenshot from IE browser): enter image description here

like image 671
Akhil Xavier Avatar asked May 02 '14 09:05

Akhil Xavier


1 Answers

It may due to phonegap webview in windows phone 8. I too faced the same issue. I just created a simple static application, but the Multiple select box doesn't work. in the phone browser it is ok.

Better thing is, create a html interface and replace select "multiple" with your desired design.

And the above answers may help you to do that.

Thanks.

like image 107
Vijay Avatar answered Nov 14 '22 04:11

Vijay