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?