Tagged Questions
The onclientclick tag has no wiki summary.
24
votes
4answers
31k views
OnClick vs OnClientClick for an asp:CheckBox?
Does anyone know why a client-side javascript handler for asp:CheckBox needs to be an OnClick="" attribute rather than an OnClientClick="" attribute, as for asp:Button?
For example, this works:
...
10
votes
5answers
13k views
OnclientClick and OnClick is not working at the same time?
I have a button like the following,
<asp:Button ID="pagerLeftButton" runat="server" OnClientClick="disable(this)" onclick="pager_Left_Click" Text="<" />
When I use my button like that, ...
3
votes
5answers
777 views
Get text of label with jquery
I want to do very simple thing, but I'm not success. I have button and label on my asp.net page and I want to get text of label after clicking on button. Here is my code:
<%@ Page Language="C#" ...
2
votes
2answers
3k views
OnClientClick and Click event together for a button is not firing - issue in FireFox
I have Onclientclick event attached to the button in serverside code like below,
TopPanelButton.OnClientClick = string.Format("if(!ValidData({0},{1},{2},{3})) return false;", txtOD.ClientID, ...
2
votes
2answers
5k views
how to bind javascript function with OnClientClick event with Eval?
my link button -
<asp:LinkButton runat="server" ID="lbtnEdit" Text="edit" OnClientClick="javascript:msgDisp('<%# Eval(LocationId).toString() %>')" />
and the javascript msgDisp is-
...
1
vote
3answers
630 views
firing both onclientclick and Client side validation from validation control on button Client click
I have few ASP Text Box controls on a Page, to which Custom Validators are added. I have Save Button, which validates these Text boxes. I have just added the Validation Group as same as that of the ...
1
vote
1answer
671 views
Why doesn't returning false from OnClientClick cancel the postback
I have a LinkButton where I use the OnClientClick property to ask the user whether he really wants to perform an action, e.g:
<script>
function confirmDelete() {
return confirm('Do you really ...
1
vote
1answer
97 views
how to pass Xpath value in javascript function
here my code that gives error-
OnClientClick='javascript:DragRevId(<%# XPath("ReservationId") %>);return false;'
1
vote
4answers
1k views
Asp.Net button onclientclick problem
I have a strange problem, it seems, that I don't know how to solve.
I have a button like this:
<asp:Button ID="btnSave" runat="server" ClientIDMode="Static" Text="Save" OnClientClick="return ...
1
vote
1answer
2k views
Gridview ItemTemplate OnClientClick javascript function with DataItem value as parameter
I have a button inside my <ItemTemplate> in GridView and I want to call a javascript function on the OnClientClick of that button passing the DataItem value as a parameter of the javascript ...
1
vote
2answers
323 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
3k views
C# OnclientClick doens't render asp tags?
I have an ASP button that lookts like this:
<asp:Button
ID="btnReset"
runat="server"
OnClientClick = "hideOverlay('<%=pnlOverlay.ClientID %>', '<%=pnlAddComment.ClientID ...
0
votes
1answer
62 views
Setting window.location on a LinkButton's onClientClick from code behind
Can't be this hard can it!? I just want to change window.location onclientclick of a linkbutton and set this from code behind.
lb.OnClientClick = "window.location = 'Contact.aspx'";
Not working, ...
0
votes
2answers
87 views
OnClientClick isn't firing for ImageButton
I have an ASP.NET ImageButton that OnClientClick() is supposed to fire a js function that reads the values from a two text fields, send it to a server-side WebMethod. With the WebMethod sending it to ...
0
votes
2answers
79 views
(ASP.NET) In grid view, how can I make the selected row data show up on a confirmation dialog box?
I tried the following code on a linkbutton onClientClick. But it is calling an error.
return confirm('""Are you sure you want to report on the & **row.Cells(3).Text** & vs & ...
0
votes
2answers
187 views
OnClick/OnClientClick event with Asp.Net
I am a little confused to use this script and how it actually works?
Here is my script:
<script type="text/javascript">
$(document).ready(function () {
...
0
votes
2answers
278 views
ASP.NET 3.5 onClientClick return false not working
I have the following code:
<script language="javascript" type="text/javascript">
function readCookie(name)
{
var nameEQ = name + "=";
var ca = ...
0
votes
1answer
52 views
ASP/Javascript onClientClick SecurityCheck()
Hey want the javascript after it has been cofirmed to link to another aspx file, but somehow it won't direct the browser to the url. here is what i got
<asp:ImageButton ID="Donebtn" ...
0
votes
1answer
158 views
asp repeater itemcommand not working on second click
I have a repeater which I bind the data using Bind method from the database. There is a Asp:Button with an onclientclick and onclick event. In OnClientClick I open a new window and onclick I am adding ...
0
votes
2answers
117 views
OnClientClick prevent page submission if validation errors
I've written a JavaScript function which validates form input and highlights the input fields and displays any error messages, which I have tested and all works fine.
I have called this function from ...
0
votes
3answers
715 views
OnClick and OnClientClick
I have an image button on a pop up page which is opened by another page
<asp:ImageButton
ID="Button_kalem_islemikaydet"
runat="server"
CausesValidation="False"
...
0
votes
1answer
135 views
Problems with confirm on ASP.NET
This is very weird, i have an asp:ImageButton inside a list view and i want to confirm and action before i execute the method but i can't
then i created another imagebutton outside the list view and ...
0
votes
2answers
520 views
Styling a button using javascript & OnClientClick
I have an asp.net button on a web page.
The OnClientClick code disables the button so that the user cannot submit more than once.
It also changes the text of the button to "Please wait..."
All good ...
0
votes
1answer
153 views
Fire server event from client
I am having trouble with the Asp.net page life cycle. I am trying to create a custom menu using HtmlTextWriter with an asp.net LinkButton to fire a server event. I can not get the server event to ...
0
votes
3answers
2k views
ASP.NET OnClientClick=“return false;” doesn't work
I just want to add some client side (JQuery Javascript) validation in a web user control. I put an OnClientClick handler and the function gets called. BUT, even if I return "false", the OnClick method ...
0
votes
2answers
530 views
Microsoft JScript runtime error: Object expected OnClientClick
I was just doing a quick test of something, and before I could really get started I got this error. I have no C# code yet and this is my aspx code:
<script language=javascript ...
0
votes
2answers
80 views
Delete Button issue
I am using one link button in an asp.net application for delete purpose. For the confirmation i added the property of OnClientclick="return ValidateOnDelete();". By Default it works as fine. But i ...
0
votes
1answer
299 views
Can I copy the CollapsiblePanelExtender in jQuery as one method?
I am beginning the process of moving away from the AjaxControlToolkit and toward jQuery. What I want to do is have one function that duplicates the functionality of the CollapsiblePanelExtender. For ...
0
votes
3answers
333 views
click() not behaving like user click
I have searched for a solution to this for the last several hours but to no avail. When I click on a button that has a return false in OnClientClick, no postback occurs to the server. When I use ...
0
votes
1answer
136 views
Workaround non-themeable properties (specifically asp:Button OnClientClick)
Retrofitting ASP.NET WebForms themes to an old application I have a need to theme an <input> tag such that the JavaScript click event is different for each theme. I replaced with tag with an ...
0
votes
1answer
1k views
Confirmation popup window for two asp:button controls when usesubmitbehaviour set to false
I have a control embedded in an asp.net (2.0) page. When the control is on a page I want the default behaviour when the return key is press to run an action on the control, not anything on the page. ...
0
votes
2answers
1k views
Getting ASP.NET ImageButton OnClientClick changes to the server
I use an ASP.NET ImageButton on my website. When a user clicks on the ImageButton, a javascript is fired via the OnClientClick event. The script changes the ImageUrl of the ImageButton.
On the same ...
0
votes
2answers
2k views
ASP.NET onclientclick c#
I have an ImageButton with an onclientclick js function attached:
deleteButton = new ImageButton();
deleteButton.ID = "deleteRiskButton" + planRisk.Id;
deleteButton.ImageUrl = ...
0
votes
3answers
1k views
Asp.Net 3.5 Button OnClientClick Argument
I'm trying to call the MyJavascriptFunction(arg1) from an asp button and it's doesn't work...
<asp:Button ID="btnMyButton" runat="server"
OnClientClick='<%# Eval("Id", ...
0
votes
2answers
227 views
Javascript is called in IE and FF but not in Chrome, why?
I have the following code below for a button on an aspx page. When it is clicked it should call a javascript that will print the text in that div. Everything works great in IE & Firefox but when ...