Archive | Prototype

02 January 2010 ~ 1 Comment

Set focus on first field with Prototype

If you are using jQuery see this post. To set focus on first text field with Prototype I prefer something like this var firstField = $$(‘input:text:visible’).first(); if (firstField) firstField.focus(); but you can also try with Form.focusFirstElement or Form.findFirstElement

Continue Reading

02 January 2010 ~ 0 Comments

Rails, CSRF and Ajax requests

Rails protects controller actions from CSRF (Cross-Site Request Forgery) attacks with a token based on a random string stored in the session. The token parameter is named authenticity_token by default and will be embedded in all forms and Ajax requests generated by Rails. You should also add this token to all Ajax request that you [...]

Continue Reading

16 September 2009 ~ 0 Comments

Stripe table rows with Prototype

I’ve spend a lot of time with Prototype last few days, and this is going to be my first post related to prototype. So let’s see how to stripe the table using prototype, I think you will be surprised how easy it is. HTML for our table will look like

Continue Reading