Re: [Proto-Scripty] Acceptable nicks(s) For Prototype.js

2011-09-12 Thread Richard Quadling
On 11 September 2011 12:06, kstubs kst...@gmail.com wrote:
 OK, what is it?  I hate saying proto-type-dot-j-s  So, not smooth.  Is it,
 proto-scripty?  I do a ton of stuff without the latter, so does anyone
 call it proto (wich sounds an awful lot like Frodo.
 Karl..

My cat's called Frodo.

-- 
Richard Quadling
Twitter : EE : Zend : PHPDoc
@RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea

-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



[Proto-Scripty] $('person-example').serialize(true)

2011-09-12 Thread tani
$('person-example').serialize(true) this code doesn't work, how I
would implement this

-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



[Proto-Scripty] Re: $('person-example').serialize(true)

2011-09-12 Thread T.J. Crowder
Hi,

On Sep 12, 6:53 am, tani naveedja...@gmail.com wrote:
 $('person-example').serialize(true) this code doesn't work, how I
 would implement this

The more effort you put into your question, the more likely people are
to be able -- and willing -- to help you.

The examples in the documentation are (and I think this is
unfortunate) written in a form you might use when working with an
interactive console like the ones in Chrome, Firebug, Safari, Opera...

In actual code, you want to use the result, e.g.:

var data = $('person-example').serialize(true);

`data` will receive an object with the serialized form data. Note that
person-example must be the **id** (not name) of a form.

HTH,
--
T.J. Crowder
Independent Software Engineer
tj / crowder software / com
www / crowder software / com

-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



Re: [Proto-Scripty] Re: $('person-example').serialize(true)

2011-09-12 Thread naveed jasim
Then I will get the values from this object. I want to pass these values to
another file

On Mon, Sep 12, 2011 at 4:56 PM, T.J. Crowder t...@crowdersoftware.comwrote:

 Hi,

 On Sep 12, 6:53 am, tani naveedja...@gmail.com wrote:
  $('person-example').serialize(true) this code doesn't work, how I
  would implement this

 The more effort you put into your question, the more likely people are
 to be able -- and willing -- to help you.

 The examples in the documentation are (and I think this is
 unfortunate) written in a form you might use when working with an
 interactive console like the ones in Chrome, Firebug, Safari, Opera...

 In actual code, you want to use the result, e.g.:

var data = $('person-example').serialize(true);

 `data` will receive an object with the serialized form data. Note that
 person-example must be the **id** (not name) of a form.

 HTH,
 --
 T.J. Crowder
 Independent Software Engineer
 tj / crowder software / com
 www / crowder software / com

 --
 You received this message because you are subscribed to the Google Groups
 Prototype  script.aculo.us group.
 To post to this group, send email to
 prototype-scriptaculous@googlegroups.com.
 To unsubscribe from this group, send email to
 prototype-scriptaculous+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/prototype-scriptaculous?hl=en.




-- 
Naveed Jasim
Php Programmer
Ph:+92-322-9939311
www.saazantech.com

-- 
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.



[Proto-Scripty] IE9 - c00c023f Error

2011-09-12 Thread Peter Farrell
On IE9 and Prototype 1.7, we're occasionally see this exception similar to 
this (the message is always the same):

UserAgent: 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; 
Trident/5.0)'
JSException: 'Could not complete the operation due to error c00c023f.'
JSUrl: 'https://XX/js/prototype.js?1310954924'
Timestamp: '{ts '2011-09-10 17:02:25'}' 

Our Prototype file is compressed using JSMin, but we've seen the same issue 
with uncompressed versions.  It appears that it's not just a Prototype issue 
since WebSync had a similar issue in their product -- here's the redux:

 It turns out this only happens if you've got the standards and IE9 
rendering modes both set (hence my inability to reproduce it at first - 
thank goodness for the dev tools in IE now), and you've got all script 
errors on, so the good news is that this won't be a problem for 99% of your 
users (unless they're running with script debugging on, which is *not* the 
default in IE9).

 For those who are interested in what the problem was: it shows up because 
an aborted request comes through with a readyState of 4, which is the same 
state as successful, and we were processing it as such (intentionally - we 
check later for successful completion). However, in IE9, when you abort 
during an unload, the status, etc, doesn't get set properly, and when you 
try and read it an exception is thrown. We're now flagging requests in the 
unload event before they're aborted and ignoring them.

https://groups.google.com/forum/#!topic/websync/ysBEvtvMyb0

So it appears that Prototype isn't handling readyState 4 properly if the 
request is aborted.

Another reference is here:

http://stackoverflow.com/questions/7287706/ie-9-javascript-error-c00c023f

Are others seeing this issue...?? And what needs to be done to get this 
fixed?

-- 
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/msg/prototype-scriptaculous/-/Eg3LcbS8kpAJ.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.