Displaying 1 result from an estimated 1 matches for "view_name_label".
2008 Dec 18
0
A question about text_field_tag value
This is my rails code:
<%= label_tag ''user_name_label'', ''User Name:'' %>
<%= text_field_tag ''user_name'', ''''%>
<%= label_tag ''view_name_label'', ''View Name:''%>
<%= text_field_tag ''view_name'', '''' %>
I defined a user name text field and a view name text field. The view
name text field is based on the user name text field value. So I need to
add a function to listen to...