Portal Engine Questions on portal engine and web parts.
Version 7.x > Portal Engine > add a pop up message View modes: 
User avatar
Member
Member
dinethnipuna-gmail - 10/29/2013 12:51:47 AM
   
add a pop up message
Hi All,

Can someone please tell me how can I add a pop up confirmation message once the user click on the Add button on the Message board.

Thanks.

User avatar
Kentico Support
Kentico Support
kentico_romank - 10/31/2013 4:20:37 AM
   
RE:add a pop up message
Hi,

One way how you can add a pop up message after the user click "Add" buton is to modify the following file ~/CMSModules/MessageBoards/Controls/Messages/MessageEdit.ascx.cs. In this file around line 222 there is method called btnOk_Click and you can add at the beginning of this method something likes this:
Response.Write("<script>alert('Successfully added');</script>");
I hope this will help you.

Best Regards,
Roman Konicek

User avatar
Member
Member
dinethnipuna-gmail - 11/1/2013 12:32:27 AM
   
RE:add a pop up message
Thank you very much for your help.