Howdy,
I have the following code class connected to a field in Connect Designer to conditionally create a border around a field, this seemed to work well in the past:
var field;
field = this.record.fields.Field_InventPickingListTrans_SalesQty;
if (field > 1.00)
{
this.css(“background-color”,“#c0c0c0”);
this.css(“border”,“1px solid black”);
}
For some reason it is creating a vertical line through all fields in the following example:
When I comment out the code in the class the vertical line goes away, along with the field borders.
Has anyone else experienced this?
Thanks!