Tagged Questions
The propagation tag has no wiki summary.
9
votes
2answers
170 views
Spring @Transactional - isolation, propagation
Can someone explain what isolation & propagation parameters are for in the @Transactional annotation via real world example. Basically when and why I should choose to change their default values.
...
6
votes
2answers
401 views
Such a thing as a calculation engine for C#?
Is there any calculation engine for C# that can automatically recalculate dependent fields when a value changes?
Let me freestyle for a second, I'm imagining something like this..
...
4
votes
1answer
85 views
Java ArrayList contents not propagating
My code runs an algorithm on an array, and stores the results in an ArrayList. The problem is that I am not able to access the contents of the ArrayList for subsequent processing. Though my actual ...
4
votes
2answers
2k views
Javascript with jQuery: Click and double click on same element, different effect, one disables the other
I have an interesting situation - I have a table row which, currently, shows it's hidden counterpart when I click the "Expand" button. The original (unhidden) row which contains the expand button also ...
4
votes
0answers
138 views
Weblogic Subject propagation - Where is subject stored?
Need to understand how subject is stored and propagated in weblogic.
Once authenticated, where is subject stored in HTTP layer ?
Internally is it stored in HTTPSession ?
Same way, where is it stored ...
3
votes
3answers
77 views
Prevent click event from affecting parent jquery
I was to stop the event propagation from the child to the parent, i have a bunch of li tags containing a.
$('li a[rel=close]').live('click', function(e){
e.stopPropagation();
...
3
votes
2answers
237 views
jQuery: Trap all click events before they happen?
On my page I have a lot of various elements which respond to click events.
There are times when I need to block all clicks based on some global flag.
Is there a way I can make this check in a ...
2
votes
8answers
105 views
jquery hide dropdown when click anywhere but menu
I'm trying to make it so my dropdown menu shows when you click a button, and hides when you click anywhere but the dropdown menu. I have some code working, as far as not closing when you click the ...
2
votes
3answers
67 views
How to skip bubbling down phase with jquery
Trying to do some administration backend things,
I have a tr line containing action links.
<tr>
<td>
<span>item1</span>
</td>
<td>
<a ...
2
votes
2answers
311 views
Spring Transactions With Supports Propagation
I would like to understand the use of having a spring transaction with Propagation Supports. The java docs mentions that if the method which has @Transactional(propagation = Propagation.SUPPORTS) is ...
2
votes
1answer
65 views
Managing propagation of Event: pointer or instance?
I'm coding an event handling system ( following observer pattern... ) and I'd like to know which is the best way to propagate or spread an Event class, something like this:
class Event{
public:
...
2
votes
1answer
2k views
How are EJB3 transactions propgated over multiple session beans?
I've read the EJB3 spec and the latest O'Reilly and Manning books and yet I can't see defined anywhere how transactions are propagated over multiple session beans.
For example, if I call a method ...
1
vote
2answers
52 views
jQuery Propagation issue
another silly question, i cant quite figure it out via all the other threads so hopefuly someone here can.
a demo is at http://jsfiddle.net/OwenMelbz/PaAt2/
basically ive got it so
when click ...
1
vote
0answers
42 views
Invoke all EJB in clustered environment
Is it possible to invoke a specific EJB in all servers if my application is in a clustered environment? For instance I want to notify all servers for a specific update. Currently I am using a JMS ...
1
vote
0answers
52 views
Jquery droppable propagation
Im trying to make a droppable of elements in a menu. I put 3 divs whit position absolute, in the right-bottom of the page.
See: http://img600.imageshack.us/img600/9927/sinttulo1vv.png
The green div ...
1
vote
1answer
78 views
What are good/standard ways to propagate data integrity validation errors to the user?
I am developing a data-driven web application using ASP.Net MVC 3. I will be using NHibernate for data access, but my question is language agnostic (applies to all languages which have the exception ...
1
vote
2answers
607 views
Rails/Mongoid error messages in nested attributes
I have a contact info class defined like this:
class ContactInfo
include Mongoid::Document
validates_presence_of :name, :message => ' cannot be blank'
field :name, :type => String
...
1
vote
2answers
387 views
Boost Spirit auto-rule problem
I'm using attribute propagation to construct a syntax tree for a toy language. I've hit a problem at the definition of my if statement, it's hard to tell from the error message but I think the rhs ...
1
vote
3answers
1k views
Getting jQuery mouseout event to fire from all child elements
I have a table inside of a Div, containing 8 images, I want to fire a mouseout event for either the table or the div, but it doesn't fire. I'm guessing this is because the mouse is actually leaving ...
0
votes
1answer
33 views
jQuery click event stop propagation can't get to work?
I've got a popup that I don't want to close unless you click off of it, however it closes whenever I click on it as well. It shouldn't close when you click inside the div with the class of ...
0
votes
1answer
40 views
jQuery on() stopPropagation not working?
I can't see to get this to stop propagating..
$(document).ready(function(){
$("body").on("click","img.theater",function(event){
event.stopPropagation();
...
0
votes
2answers
18 views
BIND config error in ip/nameserver
I setup a couple of nameservers and updated my domain to use them, and as far as I can tell everything went fine and the nameservers have been updated, or so says every whois and dnstools type site ...
0
votes
1answer
40 views
Spring + hibernate, nested NOT_SUPPORTED transaction attribute
public class BusinessService { //spring bean
public dumpAllData(List){
/* Complicated DB operation here
* We dont want to be in transaction now (because of performance issues)
*/
...
0
votes
0answers
54 views
jquery adding stop propagation function to on() event
I think I'm missing something fundamental here, but somehow cannot figure this out.
using the jQuery UI Accordion, I am trying to attach an event handler to any checkbox that I have added to the (h3) ...
0
votes
2answers
66 views
Spring Bean Hangs on Method with @Transactional
Just a little background , I'm a new developer who has recently taken over a major project after the senior developer left the company before I could develop a full understanding of how he structured ...
0
votes
0answers
28 views
another jQuery Propagation issue
back again.
hi all! im having issues at the moment with my functions not being able to access properties of document elements.
i've got this setup effectively.
//js file
function create #div1
load ...
0
votes
0answers
142 views
Flex4 - which event controls the flex application layout/creation so I can control/dispatch it from the preloader?
I am new to the Flex framework but not to ActionScript 3. Based on suggestions from this posting How to preload a file in Flex before the application initializes
I have been trying implement my flex ...
0
votes
0answers
226 views
Android propagation + stop touch events on specific views?
I'm attempting to understand MotionEvents in Android. I'm interesting in stopping touch events on specific overlapping views. For instance, in my Main Activity I have two TextViews that overlap. ...
0
votes
1answer
60 views
Click Issue - Confirm Alert not preventing HREF clicks
I'm trying to accomplish the following:
When a user clicks outside of a div("productListMatch") containing checkboxes, if any of the checkboxes are checked, a confirm alert appears, letting the user ...
0
votes
0answers
273 views
How to propagate GIT Hook while clone
Team,
I written pre-commit hook on my central repository. When my client clone the repository it never propagate the hooks. so i need to do something that hooks should also be copied to my client ...
0
votes
0answers
64 views
jQuery’s event.stopImmediatePropagation() only prevents events bound afterwards?
I was under the impression that event.stopImmediatePropagation() stopped all other bound event handlers, but on my current code it only seems to stop events bound after my function that calls ...
0
votes
1answer
177 views
Adding onclick event to td, but should not fire on links within
I have this:
$('table.data td').click(function() {
}
But the problem is this also fires when I click on links within that column. How can I prevent that?
Tried something like table.data td ...
0
votes
2answers
748 views
stopPropagation: element.addEventListener vs onclick attribute
I'm playing with stopPropagation, adapting code from an MDC doc.
Here's the question: Everything works fine if I do what they did and use element.addEVentListener("click", fname).
But, when I try to ...
0
votes
3answers
230 views
jquery: keep <a> link clickable in clickable div
What I want to do is prevent the click on the div if a users clicks a link inside that div.
but without using the .click(function() {}); on the link.
Here's the code:
...
0
votes
3answers
129 views
Javascript Event stopPropagation on different Event Types
I have a tag, and when 'focused' I display a . When I click on the document body I would like this to close. However, this doesn't seem to work when using two different event types:
<input ...
0
votes
2answers
339 views
How to propagate silverlight usercontrol properties to parent?
I would like to have some of the properties in the custom user control to be available to the parent page. I created a small sample to illustrate what I am looking for.
I am trying to use MVVM ...
0
votes
1answer
166 views
Stop Parent .htaccess file from Propagating to Child Directories
I've got a .htaccess file in the web root directory of the server that has a line like:
Redirect 301 /index.php http://my-new-site.com
I've discovered that all index.php files in sub-directories ...
0
votes
3answers
553 views
How to propagate Spring transaction to another thread?
Perhaps, I am doing something wrong, but I can't find a good way out for the following situation.
I would like to unit test a service that uses Spring Batch underneath to execute jobs. The jobs are ...
0
votes
1answer
87 views
jQuery propagation order weirdness
I've simplified the HTML and Javascript.
The HTML structure
ul -> li -> a
The javascript
var $ul = $('#the-list');
$ul.find('a').click(function(e){
e.stopImmediatePropagation();
...
0
votes
1answer
171 views
How to show errors on in the view from a fluentvalidation result in a asp.net mvc 2 app?
I am learning asp.net mvc 2 and fluent validation. My setup is shown after the text here. My problem is i do not know how to set the errors contained in the res object on the view page in a nice way. ...
0
votes
1answer
172 views
WPF : Propagate a validation error down the visual tree
I often use and re-use usercontrols in my apps.
For example, if a user should enter an integer number, I have a usercontrol named "IntegerEditor", which has a label for the title, a textbox for the ...
0
votes
1answer
76 views
YUI2.8: How to target element with handler applied only
I'm having some probs with event propagation, I understand the concept, but I don't understand how to squash the default YUI behaviour.
I have this markup:
[divElement id="container"][imageElement ...
0
votes
2answers
531 views
Matlab - Propagate points orthogonally on to the edge of shape boundaries
I have a set of points which I want to propagate on to the edge of shape boundary defined by a binary image. The shape boundary is defined by a 1px wide white edge.
I have the coordinates of these ...
0
votes
2answers
902 views
Flex : stopPropagation of the event Keyboard.ENTER of a colorpicker
I have a WindowedApplication with a listener on keyboardEvent (on the ENTER key), but when the user choose to use the colorpicker and type an hexadecimal code then hit ENTER the event is propaged to ...
0
votes
4answers
2k views
jQuery - how to use stopPropagation()
I've done this before, but I'm having trouble getting this to work...
I need the following jquery to have a .stopPropagation function, so the animation won't go crazy if the user hovers over three ...
0
votes
1answer
620 views
stopPropagation not working for KeyListener in YUI 2.7
I have created a new YAHOO.util.KeyListener to attach to a specific element and have also created another new YAHOO.util.KeyListener to attach to the entire document. They are both associated with ...
0
votes
2answers
248 views
Propagating touches from UIApplication in a custom manner
Is it possible to propagate touches from shared application object to a custom view which has not actually received touches and somewhere at the back of the top view? Assume that I can't use my top ...
-3
votes
1answer
37 views
How long does a Facebook Application setting change take to propagate? [closed]
From what I understand it should take several minutes and then it's updated and this is usually the case.
I changed my "Page Tab Url" from http://www.site to https://www.site to force HTTPS load ...