Here's my question, I have a text box named Qty1 I know I can retrieve its value by:
x = $get('<%= Qty1.ClientID%>').value;
Is there a way that I can replace the Qty1.ClientID with a string that's been dynamically created? I've tried alot of ways and still no luck
Hi Legalke,
Were you able to handle this?
Do not hesitate to contact me for any further assistance.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
Hello Legalke,
Instead of that can you try to set the text box like this:
<asp:TextBox ClientIDMode="Static" ID="TextBox1" runat="server"></asp:TextBox>
And to access it by the ID. It should render with the same id without changes.
If you need further assistance please let me know.