0

i have an contextmenu which gets filled with an async server request. While its loading i am prefilling this menu like this.

$(document).contextmenu("setEntry", "test", "(loading...)");

But i've seen that setEntry is deprecated. So i would like to ask how do i use the recommended function setTitle?

If i use it like this:

$(document).contextmenu("setTitle", "(loading...)");

Then i get an Error. Does someone had experience with that?

1 Answers1

0

The correct syntax is

$(document).contextmenu("setTitle", <cmd>, <title>);

in your case

$(document).contextmenu("setTitle", "test", "(loading...)");

See the API docs for details.

mar10
  • 14,320
  • 5
  • 39
  • 64