We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi,
I try to update a value to this field it don't work , the value stay to 1. When i look up the file _form.html.erb , i see it's normal
<%= label(:periodictask, :interval_number, l(:label_interval)) %><%= f.number_field :interval_number, :value => 1, :required => true, :min => 1 %> <%= select 'periodictask', 'interval_units', Periodictask::INTERVAL_UNITS %>
i've changed it to
<%= label(:periodictask, :interval_number, l(:label_interval)) %><%= f.number_field :interval_number, :value => @periodictask.interval_number||=, :required => true, :min => 1 %> <%= select 'periodictask', 'interval_units', Periodictask::INTERVAL_UNITS %>
and the correction is done .
Thanks
The text was updated successfully, but these errors were encountered:
Thanks! could you create a pull request?
Sorry, something went wrong.
Hi ,
I'm not able to create a PR , it create the PR in the myneid repo ...
Michael
Ok, I'll do it no problem, Thanks for the help!
any news on this issue?
No branches or pull requests
hi,
I try to update a value to this field it don't work , the value stay to 1.
When i look up the file _form.html.erb , i see it's normal
<%= label(:periodictask, :interval_number, l(:label_interval)) %><%= f.number_field :interval_number, :value => 1, :required => true, :min => 1 %> <%= select 'periodictask', 'interval_units', Periodictask::INTERVAL_UNITS %>
i've changed it to
<%= label(:periodictask, :interval_number, l(:label_interval)) %><%= f.number_field :interval_number, :value => @periodictask.interval_number||=, :required => true, :min => 1 %> <%= select 'periodictask', 'interval_units', Periodictask::INTERVAL_UNITS %>
Repo is forked her:coreye@d49dd5d
and the correction is done .
Thanks
The text was updated successfully, but these errors were encountered: