ChiliProject is not maintained anymore.
Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and
we urge all existing users to migrate their data to a maintained
system, e.g. Redmine. We will
provide a migration script later. In the meantime, you can use the
instructions by
Christian Daehn.
Forums » Develop »
Cancel (Back) Button
Added by Gilbert Flamino at 2011-07-06 03:33 pm
It would be nice to have a 'cancel'/'back' button on at minimum the Administration views. The single Save button present on these views tends to leave the user uncertainty in some circumstances.
Created this snippet, it's not optimal in all instances but it works.
<%= submit_tag l(:button_cancel), { :name => 'reset', :id => 'reset_button', :type => "reset", :onClick => "javascript:history.back()" } %>
Place it next to the Save button on your views and give it a go. Will add it as a Feature request.
Gilbert Flamino wrote:
Will add it as a Feature request.
For anyone wondering, this is #509.