0
votes
2answers
50 views
uncaught exception: Syntax error, unrecognized expression: #
Hi all, I get this error on a .click() event in jQuery. I see it in Firebug. I use the latest version, 1.3.2 (min)
The click fires an $.ajax() request for a Form in my website. I a …
1
vote
2answers
17 views
How to disable the drop down function of combo box on certain conditions?
Hi, I have a combo box in my application. I also have a variable called "Status". I want the combo box to be enabled only when the value of the Status variable is 5 or 6. Otherwis …
0
votes
7answers
98 views
Prevent onclick action with jQuery
there are some links with onclick event actions
<a href="#" onclick="alert('panic!')">Let's panic</a>
<a href="#" onclick="alert('panic!')" disabled="disabled"> …
0
votes
3answers
15 views
Using a DataTemplate to attach OnClick to bool change
Hi,
I want to create a datatemplate (in code, but thats not the point) which allows me to click on an item and set its bool value. What I managed to create was a combination of Ch …
1
vote
1answer
27 views
Can I have a click and keyboard handler for RaphaelJS’ canvas events?
Hi,
I am new to RaphaelJS. I am trying to add click listener and keyboard listener to the canvas with no success. Can someone please explain how to use click listener and keyboard …
0
votes
1answer
1k views
image change on onmouseover, onmouseout, onclick events
Hi All,
I have a two iamges say, img1 and img2.
My Code :
<div id="JourneyReport" style="display:none;" class="divbackground">
<uc1:ReportControl ID=" …
0
votes
2answers
45 views
ClickListener for Composite Widget
Hi,
I have a composite widget made of a textbox and a custom widget, which are then added to a verticalPanel. I created this custom widget using Raphael JS.
Now i want this Comp …
0
votes
1answer
5 views
OnClick event firing speed for components
I was using two TButton components on a form that functioned as Plus and Minus. When clicked they would add or subtract from an integer which would then be displayed on a TLabel.
…
0
votes
1answer
31 views
Android - CheckBox blocks ExpandableListView.OnGroupClickListener
I'm trying to put a checkbox into ExpandableListView. How do I do that? I extend BaseExpandableListAdapter and put the following into getGroupView():
@Override
public View getGrou …
0
votes
3answers
39 views
conditional :confirm in link_to_remote
Hi. I have a Rails app where I was doing a general delete dialog with "are you sure" before it gets deleted. That's all fine, but I also have a small ajax on click to remove the bl …
0
votes
0answers
13 views
At which point and how do rebind datalist inside usercontrol on button click?
I have a usercontrol (Imageselector.ascx) that consists of a datalist.
The datalist's itemtemplate contains another usercontrol (selectoricon.ascx) that contains an imagebutton.
In …
3
votes
9answers
2k views
JavaScript: changing the value of onclick with or without jQuery
I'd like to change the value of the onclick attribute on an anchor. I want to set it to a new string that contains JavaScript. (That string is provided to the client-side JavaScrip …
1
vote
1answer
56 views
How can JQuery validate() be executed before onClick=”functionname()”;
A form, I use AJAX to transfer the data. The AJAX is triggered by onClick="", I also use JQuery validate(). JQuery validate() is executed after the onclick=“function()", I would li …
0
votes
1answer
78 views
Handle the button onclick event in masterpage in ASP.NET MVC
I am working with master page in ASP.NET (3.5) MVC Framework (1.0).
I am having one master page and 4 MVC Views in my application.
I have placed these four views in the contentplac …
0
votes
2answers
73 views
Android Dynamically Created Button: setOnClickListener doesn’t work!
onClick never fires! Why not? Please help.
for(int i = 0; i < 12; i++)
{
String title = "Button" + i;
Button sliderButton = new Button(this);
…
