ruby - How to add a disabled submit button in rails -


i have submit button in form in ruby

f.submit btn_text, class: "btn btn-one mgt12 mgb12", id: "btn_id" 

i want make button disabled ruby without using javascript

add disabled: true option.

f.submit btn_text,   class: "btn btn-one mgt12 mgb12",   id: "btn_id",   disabled: true 

Comments

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

java - Vaadin 7 Pass Data Between Views -