Displaying 2 results from an estimated 2 matches for "sapexcel".
Did you mean:
appexcel
2006 Jun 16
2
image_select_tag with name and value
...der => 0, :name => ''render_action'', :value => ''excel'' ) %>
Which genenerates I believe a valid html fragment for a submit button.
<input alt="Download List to Excel" border="0" name="render_action"
src="/images/sapexcel.gif?1149227900" type="image" value="excel" />
BUT my controller doesnt pick up the value of params[:render_action] ?
if params[:render_action].nil?
render
else
mytext = render_to_string(:action => ''list_excel'', :layout =&g...
2006 Jun 19
0
Bug? With image_select_tag processing in controller?
..."Download List to Excel",
:border => 0, :name => ''render_action'', :value => ''excel'' ) %>
B) This rendered the valid html
<input alt="Download List to Excel" border="0" name="render_action"
src="/images/sapexcel.gif?1149227900" type="image" value="excel" />
Thus I would expect the value of params[:render_action] to be set to the
value of "excel" in the controller defined by the form tag. But the
parameter render_action is nil. Thus I think that this is a bug in
ra...