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
This has the negative effect of setting the buttons inside the Table display to 40px; (which is too small, they become squished).
I'm not exactly familiar with the way you're creating the buttons, but one fix I found was to set a width to a more specific class: style.css :
.opSize .dijitButtonNode {
width: 40px;
}
And widget.js :
(In the _initButtons function): class: "button opSize",
The text was updated successfully, but these errors were encountered:
Inside the
style.css
file you setThis has the negative effect of setting the buttons inside the Table display to 40px; (which is too small, they become squished).
I'm not exactly familiar with the way you're creating the buttons, but one fix I found was to set a width to a more specific class:
style.css
:And
widget.js
:(In the _initButtons function):
class: "button opSize",
The text was updated successfully, but these errors were encountered: