Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
We've created a completely new section to edit some custom data. Now I'd like to have a custom message upon clicking a save button. I can't seem to find how to do this. Can anyone point me in the right direction?
If you have the pages in the custom section inherit from UmbracoEnsuredPage you can use
base.speechBubble(speechBubbleIcon.success, "Message title", "Message description, mpla mpla mpla");
Thanks for the quick reply. Works perfectly!
Small addition to this post:
In visual studio it's indicated that base.speechBubble is now obsolete. So the correct way of using speechbubble now is:
ClientTools.ShowSpeechBubble(speechBubbleIcon.success, "Success", "Data successfully saved.");
Is there a way to initiate this balloon from javascript on the client side?
@greengiant83: I've replied on your other post.
I'm handling the ContentService.Saved event. How can I access ClientTools.ShowSpeechBubble(...) from my .Net code?
Thanks!
Looking for the same as John.
Thanks,
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Custom save message in balloon?
We've created a completely new section to edit some custom data. Now I'd like to have a custom message upon clicking a save button. I can't seem to find how to do this.
Can anyone point me in the right direction?
If you have the pages in the custom section inherit from UmbracoEnsuredPage you can use
Thanks for the quick reply. Works perfectly!
Small addition to this post:
In visual studio it's indicated that base.speechBubble is now obsolete. So the correct way of using speechbubble now is:
Is there a way to initiate this balloon from javascript on the client side?
@greengiant83: I've replied on your other post.
I'm handling the ContentService.Saved event. How can I access ClientTools.ShowSpeechBubble(...) from my .Net code?
Thanks!
Looking for the same as John.
Thanks,
is working on a reply...