2018-11-22 14:05:51 +00:00
|
|
|
namespace Umbraco.Web.Trees
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Common query string parameters used for tree query strings
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal struct TreeQueryStringParameters
|
|
|
|
|
{
|
|
|
|
|
public const string IsDialog = "isDialog";
|
|
|
|
|
public const string Application = "application";
|
|
|
|
|
public const string StartNodeId = "startNodeId";
|
2019-03-23 04:51:36 -07:00
|
|
|
public const string IgnoreUserStartNodes = "ignoreUserStartNodes";
|
2018-11-22 14:05:51 +00:00
|
|
|
//public const string OnNodeClick = "OnNodeClick";
|
|
|
|
|
//public const string RenderParent = "RenderParent";
|
|
|
|
|
}
|
2019-03-23 04:51:36 -07:00
|
|
|
}
|