[Proto-Scripty] Layr - Handy class for controlling the status of elements dependant on values of form inputs

2009-07-05 Thread David Behler
Hey folks, I think I got something for ya! My newest projects had some quite huge forms with multiple inputs/ elements that needed to be hidden/disabled depending on values of other inputs. I did not want to add custom js to each onChange element whose value might influence the

[Proto-Scripty] Re: Form.request() file upload problem in ie6

2009-07-05 Thread webbear1000
You could try YUI uploader if you're prepared to use Flash http://developer.yahoo.com/yui/uploader/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email

[Proto-Scripty] Re: Form.request() file upload problem in ie6

2009-07-05 Thread Vladimir Tkach
Browsers force us to use file inputs for uploads, which are impossible to style. Moreover, form-based uploads look obsolete in modern ajax applications. We can use flash to solve this problem, but javascript works nice too. http://teamco-anthill.blogspot.com/2009/01/ajax-file-upload.html

[Proto-Scripty] Re: Form.request() file upload problem in ie6

2009-07-05 Thread joe t.
The file form control itself is a pain to style and is kind of an eyesore. But it can be hidden and other controls used (say, a styled button or link that activates the click action of the file control) to obtain the file path value that the form control will upload. Flash isn't the only way to