search for: _user_list

Displaying 3 results from an estimated 3 matches for "_user_list".

Did you mean: user_list
2006 Aug 16
0
sort_link_helper , sorting on date
...nt.hide(''spinner'')" } html_options = { :title => "Sort by this field", :href => url_for(:action => ''list'', :params => @params.merge({:sort => key, :page => nil})) } link_to_remote(text, options, html_options) end _user_list.rhtml ----------------------- (partial in my list.rhtml) <tr class="tbl_header"> <td align="center" <%= sort_td_class_helper "startdate"%>><%= sort_link_helper "Start", "startdate"></td> .... table item line ------...
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
.../services/vm_service.rb | 39 +++--- src/app/views/host/show.rhtml | 2 +- src/app/views/network/_select.rhtml | 2 +- src/app/views/network/edit_nic.rhtml | 4 +- src/app/views/nic/show.rhtml | 2 + src/app/views/task/_user_list.rhtml | 2 +- src/app/views/vm/_form.rhtml | 217 ++++++++++++++++++++++++- src/app/views/vm/_grid.rhtml | 1 - src/app/views/vm/_list.rhtml | 2 - src/app/views/vm/show.rhtml | 6 +- src/db/migrate/040_asso...
2008 Jul 12
6
Create db row in my partial template
Hi, When I use script/generate scaffold for my db it automatically creates that page where I can select to add a new item to the database. In the controller, the create method looks like this: def create @user = User.new(params[:user]) respond_to do |format| if @user.save flash[:notice] = ''User was successfully created.'' format.html {