I have multiple fields on the screen (both WebCombo and WebTextEdit). If a user enters data into a WebTextEdit field and immediately clicks on the "Submit" button, the value that was entered into the WebTextEdit field is not retained and returns a blank value.
Is there a fix for this or a work around or something?
Hi,
I tested following and it did not have issue which you described.
<igtxt:WebTextEdit ID="WebTextEdit1" runat="server"></igtxt:WebTextEdit> <igcmbo:WebCombo ID="WebCombo1" runat="server"></igcmbo:WebCombo> <igtxt:WebTextEdit ID="WebTextEdit2" runat="server"></igtxt:WebTextEdit> <igcmbo:WebCombo ID="WebCombo2" runat="server"></igcmbo:WebCombo> <asp:Button ID="Button1" runat="server" Text="Button" />
Well, I am now having this issue throughout all my forms, wherever I use a text field and hit an image button the text field text property is blankeven though there is data visible in the field
I tested ImageButton with a postback action, but I could not reproduce reported problem neither. If you have problem under different configuration of page, then please provide a simple codes (similar to my), which can be used to reproduce misbehavior.
<igtxt:WebTextEdit ID="WebTextEdit1" runat="server"></igtxt:WebTextEdit><igtxt:WebTextEdit ID="WebTextEdit2" runat="server"></igtxt:WebTextEdit><asp:Button ID="Button1" runat="server" Text="Button" /><asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/close.gif" onclientclick="__doPostBack('ImageButton1', '')" />