-
Type:
Improvement
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 9.0.4
-
Labels:None
The method de.bps.onyx.plugin.course.nodes.iq.IQEditForm.getCutValue() does not return float values, recognize a comma as decimal point and does not update the form field cutValue. This is a tested replacement for that:
public Float getCutValue() {
String val = cutValue.getValue();
Float f = Float.NaN;
try
catch (Exception e) {
try
catch (ParseException e1) {
}
}
cutValue.setValue(f.toString());
return f;
}