Skip to content
Snippets Groups Projects
Commit 218b97f2 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: [ bug #506 ] Can't set percentage of a started event

parent f0d05397
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class FormActions
print '<script type="text/javascript">'."\n";
print 'jQuery(document).ready(function () {'."\n";
print 'jQuery("#select'.$htmlname.'").change(function() { select_status(document.'.$formname.'.status.value); });'."\n";
print 'jQuery("#val'.$htmlname.'").change(function() { select_status(document.'.$formname.'.status.value); });'."\n";
print 'jQuery("#val'.$htmlname.'").change(function() { select_status(jQuery("#val'.$htmlname.'").val()); });'."\n";
print 'select_status(document.'.$formname.'.status.value);'."\n";
print '});'."\n";
print 'function select_status(mypercentage) {'."\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment