All pastes #2106537 Raw Edit

Mine

public text v1 · immutable
#2106537 ·published 2012-01-26 17:10 UTC
rendered paste body
<script type="text/javascript"> 
	$('#btn-open').click(function () {
		var dialogId = 'dialog-' + new Date().getTime(),
			$dialog = $('<div id="' + dialogId + '">Loading..</div>');

		$dialog.dialog({
			//params here
		});

		Sijax.request('populateDialog', [dialogId]);
	});
</script>

<button id="btn-open">Open</button>

//PHP
Core_Sijax::registerCallback('populateDialog', function (Core_Sijax_Response $objResponse, $dialogId) {
	$objResponse->html('#' . $dialogId, 'This is dialog ' . $dialogId);
});