Hi,
I'm using file storage to manage dashboards.
When saving I have to ask the user if he wants to overwrite the file.
I guess it will have to be done on the client side, which event should I intercept?
Thanks
Claudio
Hi,
I'm using file storage to manage dashboards.
When saving I have to ask the user if he wants to overwrite the file.
I guess it will have to be done on the client side, which event should I intercept?
Thanks
Claudio
Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Hi Claudio,
There are two ways to initiate dashboard saving. The first one is about clicking the "Save" menu command (no built-in notification) and the second one is about attempting to close the current dashboard (there, we show a built-in notification that warns about possible data lost).
What do you wish to customize? If it's about usage scenario #1, use ToolboxExtension.menuItems to access dashboard menu items. This property returns a list of DashboardMenuItem objects. You can find the "Save" item there and then override its click callback:
function onBeforeRender(sender) { var dashboardControl = sender.GetDashboardControl(); var toolbox = dashboardControl.findExtension('toolbox'); var itemParameters = toolbox.menuItems().filter(item => item.id === "save")[0]; const defaultSave = itemParameters.click; itemParameters.click = function () { if (confirm('Are you sure you want to override?')) { defaultSave(); }; }; }
If it's about #2 (you do not like our built-in dialog), follow the solution shared in the following ticket: Web Dashboard - Dashboard Save event. Note: the
performSaveDashboard
method must always return a promise-like object.