I am looking to use the InPlaceEdit control to allow input of an optional field. If there is no data for the field I want it to say "<enter email address>"
Is there a way to capture the click event to "clear" this temporary text. The click event of this control doesn't seem to get triggered until I click away.
<gaia:InPlaceEdit ID="editor" runat="server"></gaia:InPlaceEdit>
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
editor.Text = "<Enter Email Address>"
End If
End Sub
Protected Sub editor_Click(ByVal sender As Object, ByVal e As Gaia.WebWidgets.AspectClickable.ClickEventArgs) Handles editor.Click
editor.Text = ""
End Sub