Tagged Questions
The clientid tag has no wiki summary.
9
votes
3answers
4k views
C# asp.net Why is there a difference between ClientID and UniqueID?
I know ClientID is used for javascript and UniqueId for server side and that ClientID uses an underscore (_) and UniqueId uses a dollar sign ($) in asp.net 2.0. But what I don't get is why use two ...
8
votes
4answers
1k views
Client Id for Property (ASP.Net MVC)
I'm a begginer in asp.net mvc, and I have a doubt:
I'm trying to do a label for a TextBox in my View and I'd like to know, how can I take a Id that will be render in client to generete scripts... for ...
3
votes
6answers
714 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
2answers
685 views
How to insert the ClientID of a div into an OnClientClick event
In the XHTML for a page I have:-
<asp:Button ID="bookNowButton" runat="server" CssClass="bookNowButton"
OnClientClick="showHideLoggedInDiv('<%=bookingFormDiv.ClientID%>')" />
...
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 ...
2
votes
1answer
46 views
How does ClientIDMode work?
I'm preparing to do an .NET exam and I came across this question. I have been breaking my head over this but I can't figure it out :s I tried all of this but didn't come up with a clear answer...
...
2
votes
2answers
390 views
Finding the client ID of dynamically created controls?
How can I find the client ID of a dynamically created control?
In my ascx, I have the following snippet.
function DoSomething() {
var loneStar= $find("<%= loneStar.ClientID %>");
...
2
votes
2answers
381 views
Accessing ClientID of a Control in a different TD
I am trying to access the ClientID of a control in one from a javascript (using jquery) call in a control in another in order to do some client-side show and hide effects. Here's the basic ...
2
votes
3answers
1k views
get control by clientID
i resolve a client id of a Repeater Item control, and i want to use it in other command,
how cant i get the control by his client id?
TextBox TB = FindControl...?
2
votes
2answers
254 views
ClientID getting changed when deploying asp.net 2.0 website to Framework 4.0
I have a website which is hosted on GoDaddy they have version 4.0 runtime.
The issue is the client id of the server controls are generated as "contentPlaceHolder1_drpBanks" where it was earlier (when ...
2
votes
4answers
1k views
ASP.Net: ClientID not correct in code-behind of a user control
The following code does not work. The markup is in a User Control and I suppose that's why ClientID returns the wrong prefix for the TextBox id.
Markup:
<INPUT id="txtName" runat="server" ...
2
votes
1answer
202 views
How should we use ClientIDMode property that comes with asp.net 4.0?
How should we use ClientIDMode property that comes with asp.net 4.0?... When i should i use one over the other clientIdModes?
2
votes
3answers
431 views
ClientID invalid after moving code into DotNetNuke module
I am porting an existing application to a DotNetNuke module and discovered bizarre behavior. I use ClientID when creating javascript so that the code can identify the HTML elements. Normally that ...
1
vote
3answers
20 views
How to get clientID of Datalist control using jquery
How to get clientID of Datalist control using jquery , I tried using the code below with no succes:
$(document).ready(function(){
$('#<%=txtRenewalDate.ClientID %>').datepicker();
...
1
vote
1answer
48 views
How to extract first component ID from #{cc.clientId}?
I neet to get a specific parent component ID in a composite component. I've only found out how to get the entire chain of IDs, namely as I wrote in the title: #{cc.clientId}. It delivers (I don't know ...
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
1answer
125 views
Salesforce SOAP api clientId
How do you set the clientId when using Salesforce com.sforce.soap.enterprise.Connector in Java?
1
vote
2answers
173 views
How to use ClientIDMode in ASP.NET 4
The default value of ClientIDMode for a page is AutoID. The default
value of ClientIDMode for a control is Inherit. If you do not set
ClientIDMode for a page or for any controls on the page, ...
1
vote
2answers
164 views
ASP.net over ride client ID for form elements
Given a textbox:
<asp:Textbox runat="server" id="txtAddress1" />
This renders as something similar to:
<input name="ctl00$mainContent$txtAddress1" type="text" ...
1
vote
2answers
662 views
working around ASP.NET 3.5 control ID generation: Postback events when the controls are created in a different order on subsequent postbacks
I'm working on a commenting system for a website and on each postback a page generates a user control (called ucComment) for every single comment in the database that pertains to this page. Each ...
1
vote
2answers
322 views
Why I cannot add clientId of my textBox in the mark-up here so that I can find it with jQuery?
Simply I am trying to pass the client Id of one textBox 'txtPersonId' for the client-click event so that I can traverse to that textBox control and pass its jQuery wrapper to the loadePerson() ...
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 ...
1
vote
1answer
953 views
External js file jquery function doesn't seem to get clientId
I use an externel javascript file and i have this,
function getdropdownvalue()
{
alert($("#<%=DLState.ClientID%>"));
}
but it doesn't seem to get my dropdown's clientId... Any ...
1
vote
3answers
1k views
Calling ClientID from aspx
<input type="checkbox" id="chbSaveState" runat="server" tabindex="3"
onchange="SaveState(""<%= chbSaveState.ClientID %>"")" />
that doesn't work, the error says:
Parser Error Message: ...
1
vote
1answer
521 views
How to get ClientID for control generated for a BoundField in ASP.NET?
I have a form with BoundFields in it and I need to get ClientID(s) for control(s) associated with each BoundField I have in the form.
How can I do it?
UPD: I do not have control id. All I have is ...
1
vote
2answers
520 views
View Control name concatenated with ClientID and masterpage control name in ASP.NET MVC
I am working with an ASP.NET MVC application.
I have one master page having one contentplaceholder.
I have one view placed in the contentplaceholder of master page.
I have a few textBoxes that say ...
1
vote
1answer
2k views
how to get jsf clientid of a component in datatable?
i am trying to get the client id of a component in a datatable. the problem is that jsf puts row index before the component id automatically, i.e.
<a ...
0
votes
1answer
43 views
GAE channel API reconnect
I'm working on a chat application on top of GAE and its Channel API. I have studied the doc and the provided examples, also looked through some of the answers around here, still I don't feel like I ...
0
votes
2answers
20 views
Getting ClientID of textbox in CreateUser Wizard using jquery
I want to check the username availbilty so I have this code:
<script type = "text/javascript">
function ShowAvailability() {
$.ajax({
type: "POST",
...
0
votes
1answer
51 views
Generating unique ID attributes in datatable with JSF2 and IceFaces2
I'm trying to use a code which looks like :
<ice:dataTable id="revisionDocuments" value="#{agendaBean.agenda.revisionsDocuments}" var="revision">
<ice:column>
...
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
0answers
166 views
Changing “name” attribute of radio button in markup generated from ASP.NET
In ASP.NET, how can I control the name attribute assigned to radio buttons in the generated mark-up? More precisely I have several RadioButtonLists. The radio buttons end up being named ...
0
votes
0answers
81 views
Calling a jquery function from inside a javascript function
I have a little problem I cannot figure out. Hopefully someone here knows how to do it!
I am trying to use a jquery function by callling it from another javascript function.
Is that possible and if ...
0
votes
1answer
146 views
ASP: button to input submit
I am trying to use literalcontrol to add a button as input type="submit"
litLevelList.Text += string.Format(" < input type='submit' id='{0}' value='{1}' name='{2}' >", btnSave.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
114 views
Asp.Net 4 webforms clientid suffixed with `_0`
Last year we moved all our new functionality to Asp.Net MVC.
However we still have a load of legacy WebForms pages with lots of Javascript, and we're not going to get the chance to upgrade them any ...
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
840 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
2answers
129 views
At what asp.net page event are clientIDs assigned?
I want to do something like this:
Panel divPanel = new Panel();
divPanel.ID = "divPanel";
this.Page.Controls.Add(divPanel);
string script = "function alertID(){alert("the id is: ...
0
votes
1answer
913 views
What is the correct setting of ClientIDMode in ASP.Net 4 to get ASP.Net 2.0 rendering
We have just updated our application from ASP.Net 2.0 to ASP.Net 4.0.
We have included in the web.config in the system.web element:
<pages controlRenderingCompatibilityVersion="3.5" ...
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 ...
0
votes
1answer
389 views
search for ClientID client-side or server-side?
I understand that I currently can't use <a onclick="alert('<%=TextBox1.ClientID%>')" directly because I need to access it in a table cell in a table in the EditTemplate of a DataList inside a ...
0
votes
2answers
1k views
how to obtain the client id of a ContentPlaceHolder in an easy manner?
i need to add JavaScript calls in some controls attributes, i am using master pages but in order to obtain the contentplaceholder client id i am iterating over the forms controls.
is there another ...