Hi,
I have 2 questions:
- I have a problem to show the hidden ASPxHyperLinks after clciking the other ASPxHyperlink.
ASPx<dx:ASPxHyperLink runat="server" NavigateUrl="javascript:void(0);" ID="contactEdit" ClientInstanceName="cEdit" CssClass="profileEditControls" Text="Edit Contact Information">
<ClientSideEvents Click="function(s, e) {s.SetVisible(false);cCancel.SetVisible(true);cSave.SetVisible(true);}" />
</dx:ASPxHyperLink>
<dx:ASPxHyperLink runat="server" NavigateUrl="#" ID="contactCancel" ClientInstanceName="cCancel" CssClass="profileEditControls" Text="Cancel" Visible="false"
</dx:ASPxHyperLink>
<dx:ASPxHyperLink runat="server" NavigateUrl="#" ID="contactSave" ClientInstanceName="cSave" CssClass="profileEditControls" Text="Save Contact Information" Visible="false" />
It does not work giving an error message that cCancel and cSave are undentified. 2. My second question is how do I call a code-behind method when I clcik the contactSave hyperLink to save the data. Thank you, Vadim