Skip to content

Instantly share code, notes, and snippets.

View jonedmiston's full-sized avatar
💭
Rock'n

Jon Edmiston jonedmiston

💭
Rock'n
View GitHub Profile
@jonedmiston
jonedmiston / Rock Event Binding
Created February 15, 2017 20:12
Rock Event Binding
<script type="text/javascript">
// change approval status to pending if any values are changed
Sys.Application.add_load( function () {
...
});
</script>
@jonedmiston
jonedmiston / Add Scripts and CSS from Codebehind
Last active February 16, 2017 14:47
Add Scripts and CSS from Codebehind
// Add CSS file to the page on a block
RockPage.AddCSSLink( Page, ResolveUrl( "~/CSS/jquery.tagsinput.css"));
// Add Javascript to the page on a block
RockPage.AddScriptLink(this.Page, "~/Scripts/jquery.tinyscrollbar.js");