Re: [Proto-Scripty] Touch screen / mouse gesturing.

2010-08-01 Thread Bjoern Bartels
Hello! sounds good, first thing i would try is testing proto-scripty's drag'n'drop feature, i think that is technically somelike what you want... YT BB Am 29.07.2010 um 13:41 schrieb Richard Quadling: Hi. I'm developing a tiny little web page app which allows vehicle inspectors to see

[Proto-Scripty] Form.serialize and unchecked checkboxes

2010-08-01 Thread strimp099
Greetings all: When sending form variables as a hash using Form.serialize(true), the value attribute of unchecked checkboxes is sent to the POST page. This of course is contrary to how HTML treats checkbox form variables. for example, I have the following checkboxes: input type=checkbox

[Proto-Scripty] AjaxUpdater: Option insertion:'bottom' fails in Chrome in dealing with tables

2010-08-01 Thread patrick
Hi to all, I've got to update a tbody-Container with appending another row via XHR. That works perfect in IE6-8, Safari and FF, but does not work in Google's Chrome 5. I'm using Prototype 1.6.1. Here is some sample code: -- table tbody id=test_container tr tdbla bla/td

[Proto-Scripty] Problem with prototype and arrays.

2010-08-01 Thread Rog
Hi there everyone, I am pretty new to javascript but do a lot of other programming. Something is not working as expected. Here's a bit of code I am testing : == html head script type=text/javascript src=prototype1-1-6.js/script /head script var smileySet = new

Re: [Proto-Scripty] Form.serialize and unchecked checkboxes

2010-08-01 Thread Richard Quadling
On 30 July 2010 18:56, strimp099 strimp...@gmail.com wrote: Greetings all: When sending form variables as a hash using Form.serialize(true), the value attribute of unchecked checkboxes is sent to the POST page. This of course is contrary to how HTML treats checkbox form variables. for

[Proto-Scripty] Re: Problem with prototype and arrays.

2010-08-01 Thread T.J. Crowder
Hi, `for..in` is not for looping through the indexes of an array, it's for looping through the property names of an object. More in the API docs: http://api.prototypejs.org/language/array/ ...and in the unofficial wiki: http://proto-scripty.wikidot.com/prototype:tip-looping-through-arrays

[Proto-Scripty] Re: Form.serialize and unchecked checkboxes

2010-08-01 Thread T.J. Crowder
Hi, Form.serialize(true) sends the true value even when it is not checked. Not in my experience: http://jsbin.com/uxiko4 HTH, -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On Jul 30, 6:56 pm, strimp099 strimp...@gmail.com wrote:

[Proto-Scripty] Re: AjaxUpdater: Option insertion:'bottom' fails in Chrome in dealing with tables

2010-08-01 Thread T.J. Crowder
Hi, That code works for me using Chrome 5: http://jsbin.com/opafu3 Maybe you can see what's different between the above and your test case... -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On Jul 30, 8:22 pm, patrick badmoj...@googlemail.com

[Proto-Scripty] OT: *Wow* Google Groups is slow today

2010-08-01 Thread T.J. Crowder
So if you ask or answer a question here and don't see it via the Groups web interface in the first couple of minutes, don't worry, unless you got an error it _will_ appear eventually... But we're talking half an hour sometimes. -- T.J. -- You received this message because you are subscribed to

[Proto-Scripty] Re: Problem with prototype and arrays.

2010-08-01 Thread Rog
Thanks very much, that makes a lot of sense now. I found that array looping method online, I guess I will remove that page from my bookmarks. Thanks for setting me right :) On 1 Aug, 11:47, T.J. Crowder t...@crowdersoftware.com wrote: Hi, `for..in` is not for looping through the indexes of

[Proto-Scripty] Re: AjaxUpdater: Option insertion:'bottom' fails in Chrome in dealing with tables

2010-08-01 Thread patrick
Thank you! It works, yes! The problem was, that the response from my server contained another element (div): trtd/td/tr div.../div Of course that's not well-formed. All browsers ignore it, except Chrome. So I moved the div and everything is fine now! Thx, Patrick On 1 Aug., 12:59, T.J.

[Proto-Scripty] prototype 1.7RC and scriptaculous draggable

2010-08-01 Thread Marcelo Barbudas
I'm experiencing a weird problem with prototype 1.7RC and scriptaculous. A Draggable with options {ghosting:true, revert:true, scroll:window} doesn't ghost or revert. Anyone else seen this? -- M. -- You received this message because you are subscribed to the Google Groups Prototype

[Proto-Scripty] Effect.Scale - add anchor point to element?

2010-08-01 Thread M. Wieczorek
Idea fof next upgrade: I notice that there is no anchor point in Effect.Scale - it would be nice to have the option to have the element grow out from the bottom right, top right or bottom left, as opposed to just the top left. I'd try and add it myself, but I'm not very familiar with the code.