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:
parent
193dd936e5
commit
4a7c9c601e
|
@ -156,7 +156,7 @@ public class WInfoWindowListItemRenderer extends WListItemRenderer
|
||||||
String zclass = styleStr.substring(MStyle.ZCLASS_PREFIX.length());
|
String zclass = styleStr.substring(MStyle.ZCLASS_PREFIX.length());
|
||||||
listcell.setZclass(zclass);
|
listcell.setZclass(zclass);
|
||||||
} else {
|
} else {
|
||||||
listcell.setStyle(styleStr);
|
ZkCssHelper.appendStyle(listcell, styleStr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue