iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hello!
I'm trying to figure out if there's a way to disable the filter option displayed in the Series and Categories popups? I don't know if I'm explaining correctly, so please see the image attached.
Thank you,
Dasha.
Please try to use the Javascript workaround below in order to disable the chart filtering. The idea is simple, find and get the element that wish to be removed and set its display property to ‘none’. After do several debug and test on WebGrid, I found that the Javascript function can be attached in OnBeforeRequest of WebGrid client-side event.
function WebGrid1_OnBeforeRequest(controlId, action) { var WebGrid1 = ISGetObject(controlId); if (action == "RetrievePivotData") { for (var i = 0; i <= 1; i++) { if (document.getElementById("ISPopup_" + i) != null) { document.getElementById("ISPopup_" + i).childNodes[0].childNodes[0]. childNodes[0].childNodes[2].style.display = "none"; document.getElementById("ISPopup_" + i).childNodes[0].childNodes[0]. childNodes[0].childNodes[3].style.display = "none"; document.getElementById("ISPopup_" + i).childNodes[0].childNodes[0]. childNodes[0].childNodes[4].style.display = "none"; } } } return true; }
Please let us know whether it helps or not.
Unfortunately, this specific scenario is not supported yet by current build of WebGrid 7.
You can submit this as feature request to WebGrid development team. The team will check the feasibility to implement this feature on the next build of WebGrid7.
Yudi, thank you for your reply.
Maybe there's a js workaround that I can apply?
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname