언어 설정

Menu
Sites
Language
Disable native menu when long holding

Hi, is there a way to disable the native menu that pops up when you long hold something in the web app?

For example, when I long hold a button a menu with "Open link", "Download link", "Copy link", etc would pop up.

Thanks

Responses

5 댓글
Marco Buettner

If you read the documentation careful your will find the answer...

But if you to busy to read than here is the answer

create a new file and called for example config.js with follow content

$(document).bind("mobileinit", function() {
	$.mobile.tizen.disableSelection(document);
	$.mobile.tizen.disableContextMenu(document);
});

And bind after tizen web framework and before your own js files begin

konduri sai swathi

Hi,

You can even try this way : Go to config.xml -> Under "Tizen" tab -> "setting" section -> disable "context-menu" option

Maksym

$.mobile.tizen.disableContextMenu(yourElement);

Andrew Richeson

your problem solution in configure.xml file. go setting and disable content menu. your problem solve

Alexander AVSukhov