Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2. def list
  3. #code.....
  4. reponse_type
  5. end
  6.  
  7.  
  8. private
  9.  
  10. # Pick xhr or rhtml
  11. def reponse_type
  12. respond_to do |format|
  13. format.js {} # show <action>.js
  14. format.xml {} # show <action>.rxml
  15. format.html {render :text => (request.xhr?).to_s} # show <action>.rhtml
  16. # allways renders html
  17. end
  18. end
Add Comment
Please, Sign In to add comment