For some reason even after clicking on the Cancel button inside my User Edit Control although it appears to close there is still a small thin blue line underneath it. If something refreshes the page it reopens without Edit being clicked on.
The HTML for this thin blue line looks like this:
<tr>
<td style="vertical-align: top;" colspan="11">
<div class="rgEditForm">
<div style="width: 98%; margin: 0pt 1%;" class="RadGrid RadGrid_Office2007" id="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid">
<input type="hidden" name="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid_ClientState" id="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid_ClientState" autocomplete="off">
</div>
</div>
</td>
</tr>
The cancel button inside the form looks like
<asp:ImageButton CommandName="Cancel" runat="server" Visible="true" ID="BtnCancelRemove"
AlternateText="Close" Style="float: right" ImageUrl="~/Images/error.gif" />
The button to open the edit form is
<asp:Button ID="ApprovalView" runat="server" Text="View" CommandName="Edit" CommandArgument="View" />
Anyone who has an ideas it would be appreciated.
The HTML for this thin blue line looks like this:
<tr>
<td style="vertical-align: top;" colspan="11">
<div class="rgEditForm">
<div style="width: 98%; margin: 0pt 1%;" class="RadGrid RadGrid_Office2007" id="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid">
<input type="hidden" name="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid_ClientState" id="ctl00_mainContentPlaceHolder_rgTicketGrid_ctl00_ctl25_EditFormControl_rgApprovalGrid_ClientState" autocomplete="off">
</div>
</div>
</td>
</tr>
The cancel button inside the form looks like
<asp:ImageButton CommandName="Cancel" runat="server" Visible="true" ID="BtnCancelRemove"
AlternateText="Close" Style="float: right" ImageUrl="~/Images/error.gif" />
The button to open the edit form is
<asp:Button ID="ApprovalView" runat="server" Text="View" CommandName="Edit" CommandArgument="View" />
Anyone who has an ideas it would be appreciated.