Release notes Keep up with latest product news
3693 notes
DeepSeeWeb Version 3.1.27
fixed issue with setting current value of choose data source control if running as shared widget
now datasource
url parameter changed while changing datasource on shared widget
added tooltipProperty
data property for map widget to define custom tooltips
added support for html in map tooltips
added communication with parent window using postMessage
to avoid cross-domain restrictions:
// Extended interface for widget event
export interface IWidgetEvent {
type: WidgetEventType;
index: number;
widget: IWidgetInfo;
drills?: IWidgetDrill[];
filters?: string;
datasource?: string;
}
// Example
window.addEventListener('message', e => {
const event = e.data as IWidgetEvent;
switch (event.type) {
case 'drill':
// code ...
break;
case 'filter':
// code ...
break;
case 'datasource':
// code ...
break;
}
});
promjet-stats Version 1.0.3
added Yandex.Metrika API connection
added Dashboard for data from Yandex.Metrika
DeepSeeWeb Version 3.1.26
added event passing to parent window via dsw
object for shared widgets.
Now shared widgets can pass drill and filter events to parent window
// Define dsw object in window using this interface:
export interface IDSW {
onFilter: (e: IWidgetEvent) => void;
onDrill: (e: IWidgetEvent) => void;
}
// Widget event
export interface IWidgetEvent {
index: number;
windget: IWidgetInfo;
drills?: IWidgetDrill[];
filters?: string;
}
// Example:
window.dsw = {
onDrill: (data) => {
// handle drill event here
},
onFilter: (data) => {
// handle filter event here
}
}
DeepSeeWeb Version 3.1.25
version bump (no changes)
DeepSeeWeb Version 3.1.24
added support for sharing linked widgets (#214)
fixed map popup positioning issue (#213)
fixed map popup drill up issue (#213)
fullscreen button hidden on shared widgets (#211)
added "noheader" URL parameter for shared widgets, eg. "&noheader=1" (#211)
added "datasource" URL parameter for shared widgets, parameter value should be escaped. eg. "&datasource=map%2Frayon_5weights.pivot" (#210)
added "drilldown" URL parameter for shared widgets, containing all paths separated by "~" character, parameter value should be escaped (#208)
added "variables" URL parameter for shared widgets, eg. "&variables=selectedPeriod.105~testVariable.100" (#212)
now "drilldown" url parameter changed while drilling on shared widget (#209)
now "FILTERS" url parameter changed while filtering on shared widget (#209)
fixed coloring of treemap and pie charts (#198)
fixed linked widget in samples-bi. actual issue was: "no overrides for combo chart" (#196)
added support for sharing drill levels sharing widget
added data property "popupProperty" for map, to define which value show in popup
fixed issue with linked inline widgets(widgets on tiles)
DeepSeeWeb Version 3.1.23
added support for MDX order in drilldown (#205)
added support for MDX order in lightpivottable (#205)
added auto-drill for charts & treemap if there is only one item present as mdx result (#203)
fixed issue with colorProperty, now read from dataProperties (#202)
fixed issue with choose data source control default source display (#206)
fixed issue "no back button after drill" on some widgets
BridgeWorks VDM Version 10.1.2
What's New?
General Availability for the next gen WebReports platform written in .NET Core; no longer reliant on .NET framework. The new WebReports is supported in both Linux and Windows environments. Click here to learn more!
Feature Request 584: Added the ability to use the same variable information in alert emails in email body. This would include things such as file name and location for the jobs that ran, link to the report file location without attachments.
Bug Fixes
This list includes all bugs resolved in version 10.1.1.0
VDM
Bug 615 - Scheduler - Edit Wizard Memory Usage