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
Hi Sune,
To be honest with you, thanks for this great package. it is really powerful.
what I would like to do is with "AfterSave" event to change the Speech Bubble text, is it possible?
If not if how can I show any sort of feedback to user?
Many Thanks
Ali
Answer to my question.
I had to hook into BeforeSave event.
and if I cancel the actual event the message can be passed as well but not via speech bubble.
here is a sample code for future reference.
public static void BeforeSave(object sender, BeforeSaveEventArgs e) { e.Result = new SaveResult { ErrorMessage = "My error message.", Success = false }; e.Cancel = true; }
@Ali Exellent solutions to both questions you had :)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
after save event
Hi Sune,
To be honest with you, thanks for this great package. it is really powerful.
what I would like to do is with "AfterSave" event to change the Speech Bubble text, is it possible?
If not if how can I show any sort of feedback to user?
Many Thanks
Ali
Answer to my question.
I had to hook into BeforeSave event.
and if I cancel the actual event the message can be passed as well but not via speech bubble.
here is a sample code for future reference.
@Ali Exellent solutions to both questions you had :)
is working on a reply...