I have this code in my index.html.erb file
<a href="#">
<img src="../images/editbutton.png" width="128" height="39" border="none", onClick='alert("Please select a branch to edit")'/>
</a></div>
Now what I need help with is to have this image to be used for allowing me to edit the branch being selected..
I can use this in usual cases but I do not know how to the code that will not create an extra button and will only use the image.
<%= button_to 'Edit Branch', edit_branch_path(@branch), :type => "submit", :class => "style3", :method => "get" %>
Another question is that I have this my index file looks like this:
<div class="header_bg">
<h2> Branch List </h2>
</div>
<div class="branch_button">
<img src="../images/search.png" width="153" height="35" border="none"/>
<a href="branches/new.html">
<img src="../images/addbutton.png" width="128" height="40" border="none"/></a>
<a href="#">
<img src="../images/editbutton.png" width="128" height="39" border="none", onClick='alert("Please select a branch to edit")'/>
</a></div>
<div class="branch_text"> <a href="default.asp">Advanced Search</a></div>
<table class="index_box">
<tr>
<th class="maintitle user_radio bg_listholder"></th>
<th class="maintitle bg_listholder">ID</th>
<th class="maintitle bg_listholder">Name</th>
<th class="maintitle bg_listholder">Address</th>
<th class="maintitle bg_listholder">Phone Number</th>
<th class="maintitle bg_listholder">Status</th>
</tr>
<% @branches.each do |branch| %>
<tr class="<%= cycle('title', 'bg_grey') %> ">
<td class="user_radio"><%= radio_button_tag("branch_ids[]", branch.id, false, :onClick => 'location.href="' + edit_branch_path(branch) + '"'
)%></td>
<td class="branch_id" id="bg_listholder"><%= branch.id %></td>
<td class="branch_name" id="bg_listholder"><%= branch.name %></td>
<td class="branch_address" id="bg_listholder"><%= branch.address %></td>
<td class="branch_number" id="bg_listholder"><%= branch.phone %></td>
<% if branch.active == true %>
<td class="user_status" id="bg_listholder"><img src="../images/tick.png" width="31" height="34"/></li>
<% elsif %>
<td class="user_status" id="bg_listholder"><img src="../images/untick.png" width="31" height="34"/></li>
<% end %>
</tr>
<% end %>
Can someone please tell me how to incorporate the feature that when someone clicks on the radio button and then if they click on edit button then it leads to the edit page for that branch...
thank you for any help..