IDEMPIERE-3831 - css style replaces the entire style, instead of append (#1194)

* IDEMPIERE-3831 - css style replaces the entire style, instead of append

* IDEMPIERE-3831 - added listcell.getStyle() check

* IDEMPIERE-3831 - append style with function ZkCssHelper.appendStyle(component, style)
This commit is contained in:
PeterTakacs300 2022-02-22 23:46:51 +01:00 committed by GitHub
parent 193dd936e5
commit 4a7c9c601e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public class WInfoWindowListItemRenderer extends WListItemRenderer
String zclass = styleStr.substring(MStyle.ZCLASS_PREFIX.length());
listcell.setZclass(zclass);
} else {
listcell.setStyle(styleStr);
ZkCssHelper.appendStyle(listcell, styleStr);
}
}
}