Re: [Proto-Scripty] The callee (server [not server application]) is not available and disappeared

2012-06-25 Thread Victor
Maybe try Object.toJSON() and then String#evalJSON()? You'll be transferring to main context single string. > > -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To view this discussion on the web visit https://groups.google.com/d

[Proto-Scripty] Re: Drag'n drop and strange z-index issue

2012-06-25 Thread Victor
Hi! > The issue I'm facing with is the fact that the cards can be stacked. > As an example, please go to this snippet: http://jsfiddle.net/QxjNc/9/ > > The card C is the "child" of B, thus when drag'ndropping B, I drag'ndrop > also C. > > Now to reproduce the problem: > 1. Drag C to the rig

Re: [Proto-Scripty] observing click event not invoking on click

2012-06-25 Thread AnichoCode
Yeah Walter your correct I wouldn't dismiss either of the tools use both for best results! Turns out .OnClientClick gets set from code behind which is blocking the click event. Also Page Caching was stopping the click function from loading in the first place. Thanks for all your help Walter mu

Re: [Proto-Scripty] observing click event not invoking on click

2012-06-25 Thread Walter Lee Davis
I find that it helps to try both when you have a tricky problem. Sometimes Error Console will skip right over the actual problem and show something else, while Firebug sees the real blocker problem. And sometimes it's vice-versa. Walter On Jun 25, 2012, at 9:24 AM, AnichoCode wrote: > Error Co

Re: [Proto-Scripty] observing click event not invoking on click

2012-06-25 Thread AnichoCode
@Walter Lee Davis, Got it working http://jsfiddle.net/VUPKx/5/ still fails to work on my aspx page. So will get this over to my aspx page experts. @YourPadre Error Console is much better then firebug for general syntax errors, thanks for pointing me in the rig

Re: [Proto-Scripty] observing click event not invoking on click

2012-06-25 Thread AnichoCode
@Walter Lee Davis, Thanks for your demo I see it works but I can't get it working with the class selector. Class selector is a requirement since we cannot use ID or ClientID(id selector provided for javascript in asp.net) because of our current setup. I have gone back to my original and am tr