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
In touch mode, the dgrid-resize-handle is wider than normal. Since it is rendered to the left, it's not really on top of the actual column splitter. Proposed change is to correct the position for the larger resize-handle e.g. html.has-touch .dgrid-resize-handle { border-left: 20px solid transparent; **right:-19px;** }
See the chrome debugger snapshot how the handle covers the dropdown we've created. Note we added padding of 5px in the header content.
The text was updated successfully, but these errors were encountered:
In touch mode, the dgrid-resize-handle is wider than normal. Since it is rendered to the left, it's not really on top of the actual column splitter. Proposed change is to correct the position for the larger resize-handle e.g.
html.has-touch .dgrid-resize-handle { border-left: 20px solid transparent; **right:-19px;** }
See the chrome debugger snapshot how the handle covers the dropdown we've created. Note we added padding of 5px in the header content.
The text was updated successfully, but these errors were encountered: