You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NavbarDropdownButton incorrectly renders button with attribute type="button"
its add border around of component and remove background color
to fix i need
.. new NavbarDropDownButton(...) {
....
}.addToButton(new AttributeModifier("type",AttributeModifier.VALUELESS_ATTRIBUTE_REMOVE))....
The text was updated successfully, but these errors were encountered:
i use maven dependency <wicket-bootstrap.version>3.0.0-M8</wicket-bootstrap.version>
NavbarDropDownButton extends DropDownButton
where in markup file
... <a class="dropdown-toggle" wicket:id="btn" type="button"
data-toggle="dropdown" aria-haspopup="true" href="javascript:;" aria-expanded="false">
... type="button" makes NavbarDropDownButton show border and lost backgraund color
I think it is necessary to make the "type" attribute customizable for baseButton
in DropDownButton class
when NavbarDropDownButton exending, remove it value from markup when initilizing
NavbarDropdownButton incorrectly renders button with attribute type="button"
its add border around of component and remove background color
to fix i need
The text was updated successfully, but these errors were encountered: