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 becomes a bigger issue on complex controls such as a number editor with a spinner. If I click the spinner controls, the editing stops. I can create a directive with
elm.bind('mousedown', function (evt) {
//prevent mousedown on spinner from stopping editing
evt.stopPropagation();
evt.preventDefault();
});
then the spinners don't work at all.
The text was updated successfully, but these errors were encountered:
Cell navigation broke due to there being an extra element in the cell.
Also changed the color of the focused cell to be different than selected
rows to be easier to identify. Fixed issue #510. Now when mouse clicking
within cell, rows won't keep being selected and deselected.
When editing a cell, I can not right click to get my editor functions such as cut/copy/paste.
Also, I can't left click to move the caret.
Try to edit the name field and use mouse clicks
http://plnkr.co/edit/TC47qt?p=preview
This becomes a bigger issue on complex controls such as a number editor with a spinner. If I click the spinner controls, the editing stops. I can create a directive with
elm.bind('mousedown', function (evt) {
//prevent mousedown on spinner from stopping editing
evt.stopPropagation();
evt.preventDefault();
});
then the spinners don't work at all.
The text was updated successfully, but these errors were encountered: