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
Post a Comment