2013-05-30 21:21:52 -10:00
|
|
|
|
namespace Umbraco.Web.Trees
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Common query string parameters used for tree query strings
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
internal struct TreeQueryStringParameters
|
|
|
|
|
|
{
|
2013-10-30 14:12:06 +11:00
|
|
|
|
public const string IsDialog = "isDialog";
|
2013-07-30 15:30:04 +10:00
|
|
|
|
public const string Application = "application";
|
|
|
|
|
|
//public const string OnNodeClick = "OnNodeClick";
|
|
|
|
|
|
//public const string RenderParent = "RenderParent";
|
2013-05-30 21:21:52 -10:00
|
|
|
|
}
|
|
|
|
|
|
}
|