Hi,
I am trying to make hiliting work on my DynamicForm. I define the following hilite:
and set it to my DynamicForm via
form.setHilites(orderStatusHilites);
_mandays_delta field is bound to a FloatItem in my DynamicForm
it does not work like this, am I missing something? There is an example in showcase with ListGrid but no on DynamicForm. Could you please post a small example that works on a dynamicform.
Thanks, Ben.
I am trying to make hiliting work on my DynamicForm. I define the following hilite:
Code:
private static Hilite[] orderStatusHilites = new Hilite[] { new Hilite() {{ setFieldNames("_mandays_delta"); setCriteria(new Criterion("_mandays_delta", OperatorId.NOT_EQUAL , 0)); setCssText("color:#00FF00;background-color:#FF0000,font-weight:bold;"); setId("0"); }}, };
form.setHilites(orderStatusHilites);
_mandays_delta field is bound to a FloatItem in my DynamicForm
it does not work like this, am I missing something? There is an example in showcase with ListGrid but no on DynamicForm. Could you please post a small example that works on a dynamicform.
Thanks, Ben.
Comment