CMS Version
4.2.0
Player Type
Docker install on top of Ununtu Server
Player Version
n/a it’s a CMS issue
Issue
Create a dataset. Create a column. Change the “Column Type” to “Formula”. No “Formula” entry box is displayed. Unable to save as “Please enter a valid formula” is displayed.
The issue is that the “formula” control style is not updated from “display: none”. Manually changing this in the devtools results in the formula box being displayed, so fairly sure this is a bug.
<div class="form-group row formula" **style="display: none;**">
<label class="col-sm-2 control-label" for="formula" accesskey="">Formula</label>
<div class="col-sm-10">
<input class="form-control" name="formula" type="text" id="formula" value="">
<small class="form-text text-muted">Enter a MySQL statement suitable to use in a 'SELECT' statement</small>
</div>
</div>