Skip to content

Instantly share code, notes, and snippets.

@rotty3000
Created September 13, 2011 16:34
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rotty3000/1214263 to your computer and use it in GitHub Desktop.
simple dialog with encoded (safe) content from a bean
<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