How to hide the settings here?
- 
				kingreatwill
 - Posts: 1
 - Joined: Fri Sep 24, 2021 2:28 am
 
How to hide the settings here?
How to hide "New Data Transformation..." and "Actions"?
			
							- Attachments
 - 
			
		
				
- QQ截图20210924103039.png (32.96 KiB) Viewed 2185 times
 
 
- 
				Lech Kulikowski
 - Posts: 7469
 - Joined: Tue Mar 20, 2018 5:34 am
 
Re: How to hide the settings here?
Hello,
You can use the following code:
Thank you.
			
			
									
									
						You can use the following code:
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>