Selecting item from dropdownlist in c# asp.net [iOS] -


i'm programming website in asp.net c# contain dropdownlist inside gridview, of nature.

please find below code more information.

<asp:templatefield headertext="blahblah">                           <itemtemplate>                             <asp:dropdownlist runat="server" id="placeid" cssclass="ddlplaceid">                                 <asp:listitem text="1" value="1"></asp:listitem>                                 <asp:listitem text="2" value="2"></asp:listitem>                                 <asp:listitem text="3" value="3"></asp:listitem>                                 [...]                             </asp:dropdownlist>                           </itemtemplate>                         </asp:templatefield> 

the problem is, list not drop down when pressed on ipad/iphone device. works mighty fine on desktop however. i'm quite rookie asp.net, sure answer why doesn't work obvious.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -