That is interesting Doug. Is that function supposed to also work with a modal component? I'm trying to call such a component this way, essentially with this:
$(".item a").click(function(e) {
var mydata = "Some data to pass";
var ajaxOptions = {success:console.log('SUCCESS!') };
LITHIUM.Components.render("MyModalComponent", {data:mydata}, ajaxOptions);
});When I do I can see the success message in the console when tells me it should work, but the modal window does not open. The modal component does execute properly in studio when I preview it so that is not the problem. Any ideas?