I am developing Windows 8 Apps in JavaScript/HTML/CSS.
Currently I am using Split Template.
I want to provide users TextSelection, Right click, Copy functionalities as we do normally with word and Notepad.
Thanks in advance.
Regards, Surya
Check these links for more information: http://msdn.microsoft.com/en-us/library/windows/apps/hh465334.aspx and http://msdn.microsoft.com/en-us/library/windows/apps/hh780613.aspx
As an example, in the split template, if you add the following style property to the following <div>, you will be able to select text and copy.
<div class="article-content" data-win-bind="innerHTML: content" style="-ms-user-select:element"></div>