The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
67 views

Retrieve form data from dynamically created input controls in content page

I would have believed that this question has an obvious answer, but I cannot seem to find any. I have an ASP.Net MasterPage which has a content page in which there are several dynamically created ...
1
vote
3answers
53 views

Not getting ClientID in ASP.Net

I have ASP.Net page where i am calling a JavaScript function like this: Enter server name: <asp:TextBox ID="txt_name" runat="server"></asp:TextBox> <asp:Button ID="btn_view" ...
0
votes
0answers
80 views

Using Repeater and jQuery together

I examine lots of blogs answers about my question also I found some solution from this site and I tried all of them. But I don't know why is it? These solutions are not fix my problem I get errors ...
0
votes
0answers
61 views

how to enable client ID for android app using google maps javascript API V3?

I have created hybrid android app using phone gap wrapper. application uses google maps javascript API V3. I have client ID from enterprise account but its not working, and I suspect because ...
2
votes
1answer
153 views

force jsf to render autogenerated clientid

I use component binding and clientId property to find components in my javascript code, something like this: <div data-for="@parent" data-example="#{componentBindings.myInput.clientId}" /> ... ...
2
votes
2answers
166 views

How to address a component inside a looping naming container

I have the following structure (contents and attributes omitted): <ui:repeat id="outerlist"> <my:compositeComponent id="myCC"> <h:panelgroup id="container"> ...
0
votes
0answers
92 views

Is it OK to programatically change the ID of Control in ASP.Net

Is it wrong to programatically edit the id of a control in an ASPX file? For example, if I have an aspx page with a defined as such: <div runat="server" ID="id1" ClientIDMode="Static"> ...
2
votes
1answer
312 views

How to access a composite component's sibling via clientId

I have a composite component that bundles some input fields. The component will be used multiple times on a page and contains a button to copy the values of another of these components. For this I ...
1
vote
0answers
94 views

Trying Soundcloud API for the first time but it won't load my tracks

I'm sure that I've done something very simple that wrong but... I've registered an app. Got my client ID and Secret and my code is below. If anyone can give me some pointers I would be most grateful. ...
2
votes
1answer
238 views

JSF: remove client id (label, component id) from validation message without a custom message

I have the following code: <h:inputText id="it-date" value="#{myBean.myDate}"> <f:convertDateTime pattern="MM/dd/yyyy"/> </h:inputText> <h:message for="it-date" /> When ...
0
votes
3answers
125 views

What's the best way to deal with ASP.NET's ClientID

I'm trying to find the best way to deal with the way that ASP.NET prepends a value to any element that is created with runat="server", without having to resort to using <%= id.ClientID %>. I ...
3
votes
1answer
2k views

Retrieving other component's client ID in JSF 2.0

Does JSF 2.0 have a built-in method for finding the client ID of another component? There are about a thousand client ID-related questions on SO and there are a lot of hackish methods to do this, but ...
4
votes
1answer
761 views

How to access the parent Naming Container of Composite?

I have a JSP 2.0 <ui:component>, within that is a <p:dataTable> with a column that uses a Composite to render a special border about some content. Now I need to identify the ...
0
votes
1answer
983 views

Returning “full” clientID in code behind (asp.net VB)

So I have an issue with accessing the correct clientID attributes of an ASP.NET user control. My main question is that I'm trying to return the full ClientID field of a control using VB code-behind. ...
0
votes
2answers
2k views

Getting id of asp.net control in JavaScript

I am working in an ASP.Net application and need to get the ID of some client controls. I have tried the following but keep getting an error: <script type="text/javascript"> var ...
1
vote
2answers
891 views

How to pass Control.ClientID in function in repeater ItemDataBound in aspx page?

I want to call a JavaScript function to collapse/expand. I am using this code in asp:repeater ItemTemplate on span onclick="javascript:funCollExp(this,'<%= P1.ClientID %>');" How do I pass ...
0
votes
1answer
161 views

Can repeaters automatically use a different clientIDMode then what's set in web.config? (clientIDMode=“Static”)

I want to use clientIDMode="Static" in the web.config as it's awesome for front end development, obivously. But, I'd like my repeaters, datagrids, and datalists to default to ...
1
vote
5answers
1k views

passing clientID to javascript and extracting a value, clarification

Forgive the noob question, but I'm trying to get my head wrapped around this. I have some controls that are inside of an in a listview that are used to submit some information. I'm running a test ...
1
vote
3answers
3k 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(); ...
2
votes
1answer
589 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
3answers
1k 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", ...
1
vote
1answer
325 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 ...
2
votes
1answer
446 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... ...
0
votes
1answer
395 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> ...
1
vote
4answers
1k 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 ...
2
votes
1answer
584 views

Salesforce SOAP api clientId

How do you set the clientId when using Salesforce com.sforce.soap.enterprise.Connector in Java?
0
votes
2answers
603 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"> ...
1
vote
2answers
1k 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
4answers
8k 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 ...
9
votes
7answers
14k 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
3k 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
3k 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 ...
0
votes
1answer
367 views

ASP: button to input submit

I am trying to use literalcontrol to add a button as input type="submit" litLevelList.Text += string.Format(" &lt input type='submit' id='{0}' value='{1}' name='{2}' >", btnSave.ClientID, ...
1
vote
2answers
291 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" ...
0
votes
3answers
2k 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 ...
1
vote
1answer
227 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 ...
2
votes
3answers
5k 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
723 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 ...
1
vote
1answer
930 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 ...
5
votes
4answers
4k 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
2answers
2k 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 ...
0
votes
1answer
2k 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 ...
2
votes
2answers
761 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() ...
16
votes
6answers
5k 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 ...
0
votes
2answers
375 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
2answers
4k 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" ...
1
vote
4answers
3k 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 ...
3
votes
2answers
2k 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%>')" /> ...
2
votes
1answer
293 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?
1
vote
1answer
1k 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 2