How to hide the settings here?
Posted: Fri Sep 24, 2021 2:32 am
How to hide "New Data Transformation..." and "Actions"?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
<div>
<cc3:StiWebDesigner runat="server" ID="StiWebDesigner1" />
</div>
<script>
//where jsStiWebDesigner1 -> "js" + Designer ID
jsStiWebDesigner1.onready = function () {
var dictionaryPanel = jsStiWebDesigner1.options.dictionaryPanel;
dictionaryPanel.toolBar.updateControls_ = dictionaryPanel.toolBar.updateControls;
dictionaryPanel.toolBar.updateControls = function (currentMenu) {
dictionaryPanel.toolBar.updateControls_(currentMenu);
if (currentMenu) currentMenu.items.dataTransformationNew.style.display = "none";
}
}
</script>