Skip to content

Instantly share code, notes, and snippets.

View TekkGuy's full-sized avatar

Ben TekkGuy

View GitHub Profile
@TekkGuy
TekkGuy / MyToknsFor_FullUrlInActionGrid.xml
Created February 15, 2017 15:42
DNNSharp MyTokens To Get FullUrl Within ActionGrid
<namespaces>
<ns>
<name>General</name>
<desc />
<allPortals>false</allPortals>
<tokens>
<tkn>
<name>ActionGridReturnURL</name>
<desc />
<src>&lt;src&gt;&lt;type&gt;string&lt;/type&gt;&lt;text&gt;[URL:DomainRoot]/Default.aspx?[General:URLQueryString]&lt;/text&gt;&lt;/src&gt;</src>
@TekkGuy
TekkGuy / Telerik_RADEditor_CSSLoad.vb
Created May 2, 2014 13:10
Pre-load Telerik RADEditor CSS Files
'***************************************
' Register Telerik CSS References
' - This fixes a bug where because the RADEditor is hidden initially
' and then displayed using AJAX, the RADEditor CSS files are not
' loaded at the correct time causing rendering issues. The code
' below forces the required CSS files to be pre-loaded so that
' RADEditor rendering is not compromised.
'***************************************
Dim arrTelerikCSSFiles As New List(Of String)
With arrTelerikCSSFiles
@TekkGuy
TekkGuy / SetDNNPanelStatus.vb
Last active August 29, 2015 13:56
These methods allow for the collapse and expanding of DNNPanels through the modification of cookies.
'''-------------------------------------------------------------------------------------------------
''' <summary> Sets expended status of collapsible panels within container. </summary>
'''
''' <param name="p_objContainer"> The object container. </param>
''' <param name="p_boolExpanded"> True to expend. </param>
'''
''' <history>
''' Date Developer Description
''' ============================================================================================
''' 02/07/2014 [Ben Santiago] Created