Salil Gaikwad wrote:
Hi Sharanya,
render :update do |page| if error occurs # write a condition which checks error occurs or not here page.show , "errors" page.replace_html, "errors", "Write a String after error occurs here." else page.hide , "errors" # code u want to update if error not occurs. end end
Check development.log if u running application in development mode for AJAX errors.
Thankx a lot. It is working with submit_to_remote itself after taking :update attribute from views page.