Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
161 views

asp.net button doesn't cause post back when clicked repeatedly

If I click a button very fast after page load, the post back won't be fired. The following example illustrates this (you have to click the button twice and very fast): <form id="form1" ...
3
votes
1answer
264 views

NSTimer never starts

Sorry if this has been answered before. I'm just trying to close an NSPanel after a couple second delay, but I can't get my NSTimer to start. It will fire if I explicitly call the fire method on it, ...
3
votes
1answer
667 views

My webpart event handling does not fire in SharePoint

please help me. I started coding something complicated and then realized my event handlers don't work.. so i super simplified a button with an eventhandler... please see the code below and maybe you ...
3
votes
2answers
2k views

Silverlight MouseLeftButtonDown event not firing

For the life of me, I can not get this to work. I can get MouseEnter, MouseLeave, and Click events to fire, but not MouseLeftButtonDown or MouseLeftButtonUp. Here's my XAML <UserControl ...
2
votes
1answer
59 views

OnClickListeners not consistently firing

I am running into a bizarre issue. I have a listview where each list item can contain 1 or more clickable images. Clicking them starts an activity that shows a full screen version of the image. The ...
2
votes
1answer
1k views

cocos2d: ccTouchesBegan not called, but ccTouchBegan does fire

I am trying to have my subclass of CCLayer respond to multitouch. In the init method I call self.isTouchEnabled=YES; In a method called registerWithTouchDispatcher, I call [[CCTouchDispatcher ...
1
vote
2answers
153 views

C# dropdownlist change event

<asp:DropDownList runat="server" ID="myListDropDown" CssClass="text" OnSelectedIndexChanged="myListDropDown_Change" /> There's the aspx above protected void myListDropDown_Change(object ...
1
vote
1answer
1k views

Gridview selectedindex changed not firing on first click

Here is my code: Protected Sub BookingsGV_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles BookingsGV.SelectedIndexChanged BookingID = BookingsGV.SelectedValue ...
1
vote
1answer
307 views

ajaxComplete not working on $(window)

Im using jQuery version 1.5.1 and this isn't working for me: $(window).ajaxComplete(function() { console.log('hello'); }); but this is: $(document).ajaxComplete(function() { ...
1
vote
1answer
199 views

Trigger in WPF is not working

I already tried for whole day, getting mad. I have a ListView, with ListView.View as GridView. Default, the mouseOver is working, ListViewItem get highlighted when I mouseover, and get selected when ...
1
vote
0answers
274 views

Gridview Usercontrol in multiview:RowCommand fire only in first view

I have a Gridview inside a usercontrol with a rowcommand event. this usercontrol is loaded dynamically into every view in multiview. when I click on the imagebutton inside the gridview, the ...
1
vote
3answers
1k views

jQuery + Ajax + Haml. js.erb files not firing

After reading up on a few experiences, I feel this issue might need to be brought up again. Coding in Rails3, I'm trying to implement some smooth Ajax effects when a user tries to create a post on ...
1
vote
1answer
278 views

NSFetchedResultsControllerDelegate methods not being called if its predicate use IN?

Problem: I'm implementing an UITableViewController in conjunction with NSFetchedResultsController. When the UITableViewController is instantiated the NSFetchedResultsController is constructed ...
1
vote
2answers
4k views

DropDownList SelectedIndexChanged event not firing within GridView HeaderTemplate

Good morning, I am having a very annoying problem; my situation is that I am working on a job board website and specifically the job search page at the moment. I am returning the jobs found into a ...
1
vote
3answers
1k views

jquery hover() mouseOut event not firing when mouse is moved quickly over link

need your help on hover mouse out event not firing Problem i basically have simple link list and when you hover over it it appends a div (loading data in this div from xml) and on hover out it ...
1
vote
2answers
1k views

viewDidAppear Not Firing in Tabbarcontroller>NavigationController>UITableView

I currently have a tab bar controller set up with a navigationcontroller on one of the tabs, then I have a UITableView nib set up for that Navigationcontrollers view. All of this has been set up ...
1
vote
3answers
1k views

Explicitly Prevent ContextMenuStrip from Loading in C#

I have a requirement to hide the contextmenustrip when a particular flag is not set. As i don't think we can explicitly control the show/hide of the context menu strip, i decided to trap the right ...
0
votes
1answer
76 views

Rails 3.1 :after_remove association callback not firing

I have the following models using single table inheritance: class Test < ActiveRecord::Base end class ContainerTest < Test has_many :subtests, :class_name => 'Test', :foreign_key => ...
0
votes
0answers
23 views

Draggable firing prematurely and only once + Move function only moving first object in Array

I'm fairly new to javascript, and I'm pushing myself to learn by creating challenging projects for myself that are 'fun'. Here's a JSFiddle of what I have so far: http://jsfiddle.net/wJJt6/ I'm ...
0
votes
1answer
216 views

CheckBoxList is not firing when uncheck last item in Formview Edit Mode

CheckBoxList don't fire under the following condition CheckBoxList has been set to AutoPostBack. It fired When checked or unchecked with at least one item left checked. It didn't fired when ...
0
votes
1answer
322 views

Events not fire after loading usercontrols dynamically in asp.net with c# jquery

I am loading UserControl Dynamically in aspx page by using jquery.But I am facing problem while firing a click event of button (as well as dropdownlist) within the UserControl. It does not get fire. ...
0
votes
1answer
716 views

Titanium Appcelerator orientationchange doesn't occur

I have a problem with orientationchange in titanium appcelerator. When moving between tabs, the 'orientationchange' event is not fired when switching between portrait & landscape. Here's my code ...
0
votes
3answers
299 views

WPF Routed Command only fires sometimes

I have some RoutedCommands for commands like control-A, copy paste and they all work fine. Then I added 4 more routedcommands to move object up down left and right in the canvas using arrowkeys, they ...
0
votes
1answer
155 views

LoadViewState not fired ALTHOUGH not null

my event is not firing although I've tried the trick with setting a dummy value to it to make it firing everytime. Any ideas what I'm doing wrong? The problem occurs after I have used .Redirect. I ...
0
votes
2answers
1k views

window.onunload only fires when a tab is closed in firefox, not the entire browser

UPDATE So after reading both of your answers I realize there is no reliable way to determine when a browser window is closed. Originally I was planning to use this to unlock a record in the database ...
0
votes
1answer
522 views

Quartz .NET doesn't fire trigger, Why?

I'm using Quartz in my .NET application. At first, I was using it in a windows service but it didn't work, so I moved it to a normal project to test it. This is the code in Main: ISchedulerFactory ...
0
votes
1answer
287 views

Asp.net pager click event not firing , what is the logic behind it?

What I don't understand is, I have a pager_Create function, it is like that public void createPager() { Div_Pager.Controls.Clear(); ImageButton left = new ImageButton(); left.ID = ...
0
votes
1answer
441 views

Automatic workflows do not “firing” anymore (SharePoint WSS3.0)

last week I changed the authentication in WSS from Windows to Forms. Now I have big problem with the workflows I created in SP Designer. When I start the workflow manually, it fires, but when it ...