-
Bug
-
Resolution: Done
-
Major
-
None
-
3.6.4.Final
-
None
-
None
In the ColumnActionFactory, The given methods [addButton() and add()] conntains the direct String constants values ["bottom" and "add-circle-o"] but those could be defined in the UIConstants.
--------------------
public HTMLElement addButton(String title, String iconCss)
{ return span().css(iconCss) .title(title) .data(UIConstants.TOGGLE, UIConstants.TOOLTIP) .data(UIConstants.PLACEMENT, "bottom").element(); }public <T> ColumnAction<T> add(String id, String type, AddressTemplate template, ColumnActionHandler<T> handler)
{ return add(id, type, template, pfIcon("add-circle-o"), handler); }---------------------
Adding String constants to the 'UIConstants' and using in 'ColumnActionFactory'.
[String constants]:
--------
String ADD_CIRCLE_O = "add-circle-o";
String BOTTOM = "bottom";
--------
- is incorporated by
-
WFLY-17375 Upgrade HAL to 3.6.5.Final
- Closed
-
WFLY-17376 Upgrade HAL to 3.6.5.Final (WildFly 27.0.1.Final)
- Closed