-
-
Save overcome/d8c276fe9224438dd2ab31dfa208f52e to your computer and use it in GitHub Desktop.
Using TS rendering
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
{namespace t=Helhum\TyposcriptRendering\ViewHelpers} | |
<button class="ajax-button" data-ajaxUri="{t:uri.ajaxAction(action: 'foo', controller: 'bar') -> f:format.htmlentities()}"> | |
Click Me | |
</button> | |
<script type="text/javascript"> | |
jQuery.ajax( | |
jQuery(".ajax-button").data("ajaxUri") | |
).done( | |
function(result) { | |
console.log(result); | |
} | |
); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment