Created
September 13, 2011 16:34
-
-
Save rotty3000/1214263 to your computer and use it in GitHub Desktop.
simple dialog with encoded (safe) content from a bean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button id="createNew">Create a new Dialog</button> | |
<aui:script use="aui-base"> | |
var myFunction = function(options) { | |
var dialog = new A.Dialog( | |
A.merge(options, { | |
bodyContent: options.content, | |
title: 'New Dialog', | |
xy: [150, 150], | |
modal: true | |
}) | |
) | |
.render(); | |
}; | |
A.one('#createNew').on('click', function() { | |
myFunction({content:'<%= HtmlUtil.escape(user.getComments()) %>'}); | |
}); | |
</aui:script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment