Angular ui-grid can not copy cell text

折月煮酒 提交于 2019-12-04 06:16:17

I think the easiest way is to just override the css class. If you check the ui-grid code then ui-grid-disable-selection class is added if both the flags are set

You can add a class to the grid element as shown below

    <div style="height:200px"
    class="ui-grid-selectable"
    data-ui-grid="gridOptions"
    data-ui-grid-selection></div>

    .ui-grid-selectable .ui-grid-disable-selection {
         -webkit-touch-callout: default;
         -webkit-user-select: text;
         -khtml-user-select: text;
         -moz-user-select: text;
         -ms-user-select: text;
         user-select: text;
         cursor:auto;
     }

Check the updated plunker.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!