Enabling selection of text in views

This is a very simple question but I wasn’t able to find any way to enable mouse selection of text in “template” views for example. Maybe I missed something - there must be an easy way to copy+paste text?

Add the next style to the page ( or directly in to the webix.css )

body.webix_full_screen {
  -moz-user-select: text;
  -webkit-user-select: text;
  -user-select: text;
}

We will change the default behavior in Webix 1.7, as there is no need in the global text selection block anymore