We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4e6ee commit 2ffd041Copy full SHA for 2ffd041
src/Umbraco.Web.UI/umbraco/settings/views/EditView.aspx.cs
@@ -202,7 +202,12 @@ protected override void OnInit(EventArgs e)
202
ClientCallbackOpenMacroModel = "function(alias) {editViewEditor.openMacroModal(alias);}"
203
};
204
editorSource.Menu.InsertNewControl(macroSplitButton, 40);
205
-
+
206
+ MenuIconI umbTemplateQueryBuilder = editorSource.Menu.NewIcon();
207
+ umbTemplateQueryBuilder.ImageURL = UmbracoPath + "/images/editor/inshtml.gif";
208
+ umbTemplateQueryBuilder.OnClickCommand = "editViewEditor.openQueryModal()";
209
+ umbTemplateQueryBuilder.AltText = "Open query builder";
210
211
if (_template == null)
212
{
213
InitializeEditorForPartialView();
0 commit comments