Hi all,
How do I paste text from the SystemClipBoard into a textarea in the
browser? There is a copy functionality in the WebClient, however I don't
see Paste functionality.
I would expect that we should have a Paste functionality in it too.
I don't see it in the currentPage class, so can I use DOM for this
instead? Not sure. The code something like this...
else if (command.equals("Copy")) {
currentPage.copyCurrentSelectionToSystemClipboard();
}else if (command.equals("Paste")) {
//What goes here?
}
Thanks in advance.
R/
Jeet