Ajax pop up box using Ruby on Rails

前端 未结 2 415
执笔经年
执笔经年 2021-01-03 06:51

This is a pretty basic question but I can\'t find a good answer for it. I have a page in my Rails app where there are many objects that can be \'flagged\'. Clicking the fl

相关标签:
2条回答
  • 2021-01-03 06:58

    jQuery UI also has a Dialog widget that works really well for this sort of thing. It's a nice widget and you can customize your jQuery UI library to include (or exclude if you want a slimmer javascript passed to the browser) other handy widgets as well (accordion, progressbar, etc)

    Check out the Dialog examples at jQuery Dialog

    0 讨论(0)
  • 2021-01-03 07:18

    You could do this with the jquery facebox. This kind of thing is better not done in rjs, but in unobtrusive javascript, that's where everyone is heading these days, it's much cleaner. You can attach the facebox rel to your links, then when clicked it can open the form in a popup window.

    Then in your popup window you can do your form and redirect or whatever. The user will be only able to click one as when the pop up window opens an overlay is put over the page so clicking outside it either has no effect or closes the form (I think you choose in the config).

    Sounds like the way to go.

    0 讨论(0)
提交回复
热议问题