Tagged Questions

3
votes
6answers
717 views

Is there a way to use “<%= someObject.ClientID %>” in an external javascript file?

Is there a way to use "<%= someObject.ClientID %>" in an external javascript file? If I use the code <%= someObject.ClientID %> in a script tag inside my as(c/p)x page, it works fine. On ...
3
votes
3answers
505 views

AJAX & ASP.net, Referencing server controls in external file

I've got some JavaScript in an ASP.NET page that looks like this: var list = $get('<%=Topics.ClientID %>'); I have many functions written now where this syntax is used, and I would like to ...
1
vote
3answers
151 views

How to access the ClientID from a ServerControl in an external JavaScript

At the moment, if I use JavaScript in my SharePoint projects, I add the code into the *.ascx file, in a <script type="text/javascript"></script> block and create for each element a ...
1
vote
4answers
985 views

Accessing a control in asp.net content page through Javascript

I have a form in my content page for which I am doing some client side validations via Javascript. The Javascript behaves as expected if I place the JS code directly in the content page. But if I ...
0
votes
2answers
117 views

Get ClientID of a Control Placed INSIDE a DataControl

Can anyone help me to get the ClientID of a control which is kept in the ItemTemplate of an DataControl? My control is like this. <asp:ListView ID="ListView1" runat="server"> ...
0
votes
4answers
183 views

Issue getting .ClientID in ASP.NET C#

I have the following in the uploadError javascript function for AsyncFileUpload from AJAX toolkit: function uploadError(sender, args) { document.getElementById("<%# uploadResult.ClientID ...
0
votes
3answers
1k views

Get the clientID of nested panel control in masterpage using javascript

This is the control structure ContentPlaceHolder   --> Wizard       --> Panel I am using setTimeout to display the panel after x minutes. How do I get the ...
0
votes
1answer
248 views

Need the clientId of a textbox inside a content control using javascript

I have a masterpage that contains all the javascript and inside the content control, there is a link that calls a javascript function and I want to pass the id once it's rendered differently by the ...
0
votes
1answer
841 views

asp.net external JavaScript file doesn't find Control.ClientID

On load I'm both calling a JavaScript setTimeout() function that will hide a .NET Panel control, and hiding it in the code behind on first load. Clicking the save button will set the Panel to visible ...
0
votes
1answer
399 views

Expanding ClientID in an event string

I'm having a problem with <%= obj.ClientID %> expansion, in a .ascx user control. I have a .js file, containing a javascript function: function doSomething(objectId) { ... } I have a .ascx ...