Hi,
The problem is that when I press the button, I dont see either the TEXTBOX or the RADTEXTBOX clientside. I am wondering the best way to do this. I have tried using various combinations of javascript to have TEXTBOX1 appear clientside, but with no success. I didnt want to show every combination I tried , so here is just the basic attempt.
This is the aspx .....
This is the ascx ....
thanks for your time.
The problem is that when I press the button, I dont see either the TEXTBOX or the RADTEXTBOX clientside. I am wondering the best way to do this. I have tried using various combinations of javascript to have TEXTBOX1 appear clientside, but with no success. I didnt want to show every combination I tried , so here is just the basic attempt.
This is the aspx .....
| <%@ Page Language="C#" MaintainScrollPositionOnPostback="true"%> | |
| <%@ Register TagName="IQeqpTag" TagPrefix="IQeqpPrefix" Src="~/mybodyscience/V02/iqControls/a_test_iqLocationsTEST.ascx" %> | |
| <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %> | |
| <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> | |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
| "http://www.w3.org/TR/html4/strict.dtd"> | |
| <%-- QUIRKS MODE MAKES THIS PAGE WORK IN FIREFOX <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> --%> | |
| <script runat="server"> | |
| </script> | |
| <html xmlns="http://www.w3.org/1999/xhtml" > | |
| <head id="Head1" runat="server"> | |
| <title>Untitled Page</title> | |
| </head> | |
| <body > | |
| <form id="form1" runat="server"> | |
| <asp:ScriptManager ID="ScriptManager1" runat="server"> | |
| </asp:ScriptManager> | |
| <table align="center" > | |
| <tr> | |
| <td align="center" width="100%"> | |
| <strong><span style="font-size: 14pt; color: #3300ff; " >Equipment Descriptions | |
| <br /> | |
| </span></strong> | |
| </td> | |
| </tr> | |
| </table> | |
| <table id="tqtable" align="center" border="0"> | |
| <tr> | |
| <td style="width: 400px" > | |
| <IQeqpPrefix:IQeqpTag ID="iqaTLocationUC" runat="server" /> | |
| </td> | |
| </tr> | |
| </table> | |
| </form> | |
| </body> | |
| </html> | |
This is the ascx ....
| <%@ Control Language="C#" AutoEventWireup="true" %> | |
| <%@ Import namespace="System.Data" %> | |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <script runat="server"> | |
| </script> | |
| <script language="javascript" type="text/javascript"> | |
| </script> | |
| <div id="lcsDataEntry" runat="server"> | |
| <asp:UpdatePanel ID="UpdatePanel188" runat="server"> | |
| <ContentTemplate> | |
| <asp:Button ID="lcsAddLocation" runat="server" Text="Add a New Location" | |
| ToolTip="Adds d new Location" | |
| BorderWidth="2" BorderStyle="Solid" CausesValidation="false" | |
| Font-Bold="true" Font-Size="Smaller" > | |
| </asp:Button> | |
| <telerik:RadToolTip ID="iqQAddRadToolTip" runat="server" | |
| Skin="Office2007" ShowEvent="OnClick" | |
| Position="Center" RelativeTo="Element" | |
| Title="Enter New Location" | |
| Modal="True" ShowDelay="0" | |
| ShowCallout="True" Height="100px" Width="250px" TargetControlID="lcsAddLocation" | |
| HideEvent="ManualClose"> | |
| <asp:TextBox ID="TextBox2" runat="server" Height="50px" TextMode="MultiLine" Width="220px"></asp:TextBox> | |
| </telerik:RadToolTip> | |
| </ContentTemplate> | |
| </asp:UpdatePanel> | |
| </div> | |
thanks for your time.