Here, In my code I have to put one of the text_area and i have to put some certain condition over them. Code which was used by me. Ruby Code::
<%= text_area "rate_unit","rate_unit_notes", "rows" => 3, "cols" => 50,
:tabindex=>3, :maxlength=>100 %>
HTML Code after executing the page
<textarea tabindex="3" rows="3" name="rate_unit[rate_unit_notes]" maxlength="100"
id="rate_unit_rate_unit_notes" cols="50"></textarea>
But issue is that maxlength option is not working. Name of condition which i want to applied on this textarea :: maxlength, size, class, autocomplete. Suggest me ..