[Proto-Scripty] Re: Ajax.Autocompleter doesnt work on firefox

2012-02-03 Thread NiGhMa
I've exactly the same problem. Did you find a solution? -- 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/-/0IDjo4lB23MJ. To post to

[Proto-Scripty] Re: Determine relative left position for a table cell

2012-02-03 Thread goldenmean
Do you mean to say that you need to know how many pixels the left edge of the table cell is from the left edge of the table itself? Try this example: table id=container trtdX/tdtd id=cellY/tdtdZ/td/tr /table var someOffset = $('cell').relativeTo($('container')); var someLeft = someOffset.left;

[Proto-Scripty] cant quite figure out how to process multiple forms to one processing script.

2012-02-03 Thread Thats Broken
I have a case where i have a form repeated several times on a page, the goal is to be able to submit each form independently, using unique values for each submit button and unique form id's. However, when I submit the first form, it does what i expect; all remaining forms dont work. Is there a

Re: [Proto-Scripty] cant quite figure out how to process multiple forms to one processing script.

2012-02-03 Thread Phil Petree
Mobile phone answer: You can't have multiple forms with the same name on the same page. On Feb 3, 2012 6:17 AM, Thats Broken thats.bro...@gmail.com wrote: I have a case where i have a form repeated several times on a page, the goal is to be able to submit each form independently, using unique