i have a custom section and have implemented a modal that creates a new node. When i do save i would like to use the showSpeechBubble function but i dont know what arguments it takes. iv checkd in the UmbracoApplicationActions.js file but there are three "undefined" args.
showSpeachBubble: function (ico, hdr, msg)
How do i get the correct icon for arg ico?
What is hdr?
I guess msg is the message to display, like, "Node has been saved".
I think you should use the ClientTools class instead of direct Javascript you can pass in the enum of the icon, header and the body. Haven't tested it though but this should work
speechBubbleIcon in UmbClientMgr
Hi,
i have a custom section and have implemented a modal that creates a new node. When i do save i would like to use the showSpeechBubble function but i dont know what arguments it takes. iv checkd in the UmbracoApplicationActions.js file but there are three "undefined" args.
How do i get the correct icon for arg ico?
What is hdr?
I guess msg is the message to display, like, "Node has been saved".
thanx for any help!
I think you should use the ClientTools class instead of direct Javascript you can pass in the enum of the icon, header and the body. Haven't tested it though but this should work
ClientTools.ShowSpeechBubble(
speechBubbleIcon.success, "Your header", "some info");
Hi Marthin,
Check the solution of this post: http://our.umbraco.org/forum/developers/extending-umbraco/13467-umbraco-45-custom-tree-and-create-dialog
This is for Umbraco 4.5.
Jeroen
Thanx for the help guys!
This solved it!
is working on a reply...