I’m currently having a strange issu in my application: I have a form composed of various labels and textboxes, like so:
<tr>
<td>
<asp:Label Text="EDIFÍCIO" runat="server" ID="lblEdificio"></asp:Label>
</td>
<td>
</td>
<td>
<asp:TextBox ID="txtFax" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
The textbox default value is given in the server, and that works correctly. However, when i try to edit the value in the screen, the cursor does not appear, and whatever i type is not reflected on the screen. But if i save the value, what i wrote is indeed saved.
Keep in mind this only happens in Firefox and for specific users (i validated and it’s not related to user permissions).
Thanks in advance
i was able to fix the issue.
I closed the textboxes in divs with style “overflow:auto” and apparently fixed the issue.
Thanks