
Nicholas Ranum
- Total activity 30
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 16
Activity overview
Latest activity by Nicholas Ranum-
Nicholas Ranum commented,
Unfortunately this method stopped working when SiSense upgraded to version 5, I ran into the same issues y'all describe. The data is being stored in the mongodb instance on the server instead of th...
-
Nicholas Ranum commented,
I've created a fix that circumvents the drill down issue caused by the plugin. The attached javascript should be added to the table with the Switchable Dimensions code. The code recreates the X but...
-
Nicholas Ranum commented,
I've run across the same problem as Michal. This plugin has proved invaluable for my end users and they have been asking me if there is a fix. Any word on this?
-
Nicholas Ranum commented,
My post on May 15 has the most updated version of the plugin I was working with which includes the updated switchDimension.js file
-
Nicholas Ranum commented,
Here's for instances where you have more than 1 or 2 series/measures. widget.on('processresult', function(w,e) { var leng = e.result.series.length; for (var k = 0; k < leng; k++) { var s = e....
-
Nicholas Ranum commented,
I updated the plugin again to give more options for aggregation other than sum. This includes average, max, min, count, etc. Unzip the plugin I attached and add it into your plugin folder. Include ...
-
Nicholas Ranum commented,
I updated the plugin to allow for switching between Date fields also. Use the format of the following code snippet to your widget. You'll be adding two fields, level and datatype, and will format ...
-
Nicholas Ranum commented,
Did 5.7.5 break this plugin? It's not working for me after I performed the update.
-
Nicholas Ranum commented,
If you are looking to remove a filter once you've added it in the example above use the following: widget.metadata.panel('filters').items.splice(-1,1) This will remove the filter you added that wil...
-
Nicholas Ranum commented,
I am attempting to do a widget filter from a click on a pivot table. I have the click event working. I can read the text from the clicked pivot table cell. I then pass it to the code posted above a...