Is there a way to connect filter box under 2 tabs in superset? - jinja2

I used Apache superset to design the dashboard. I divide the dashboard into 2 tabs called, "sales" and “details” as you can see in the screenshot. I have included 5 filters in both tabs called "date”, “brand”, “kitchen”, “channel” and “country".
I used the same view for both of the tabs under “sales” and “details”. when I change values on any filter box, the charts have to be updated on both tabs. Not just one tab.
Is there a way to connect that 5-filter box under every 2 tabs?

By default, the filter for one tab should work and pre-applied for another tab within the same dashboard, you can check whether the filter columns are in the tab where the filters are not working. Also, filter box is replaced by proper filters in superset 1.4 which u can see and create in right nav bar

Related

Prevent header being split into multiple page

In SSRS, there is a KeepTogether attribute for groups to prevent them split across 2 pages. But is it possible to apply the KeepTogether attribute to headers?
I have a group that has 3 rows of headers, in some cases, when rendering the data, if it comes to the end of the page, but still able to fit 1-2 rows, it will print the 1-2 rows at the current page, and split the rest of the rows to the next page like. Thus, the header will be splitted when export to PDF like the image below:
Any idea on how to fix this?
You can try this to see if it works. Make sure your Row Groups window is showing at the bottom (go to the view menu and check grouping if it isn't). Then press the little down arrow at the top right of that bottom pane and enable advanced mode.
Click the groups. They will highlight a pane in your table. Find the one for the header you are having problems with. Now look at the properties pane on the right (you can use the view menu to turn it on if it's not there). There are a few properties to try here. Try experimenting with KeepTogether and KeepWithGroup options.
If that doesn't work out with you then it looks like your only option is going to be the Insert Page Break Before option in the table options menu.

Dynamic action on tab click in Oracle Apex 5

On my page I have a tab container with 2 tabs. Both tabs are filtered by selected list. But one tab not correctly works (custom region) when inactive.
I need to run Dynamic action when specific tab is open. Have you any ideas?

Drupal view - new filter criteria resetting from dropdown to autocomplete

I've created a new filter criteria within a view but want it to show as a drop-down not autocomplete.
I click on settings (next to the name of the new criteria) select Drop down then click Apply (all displays) yet on the preview it shows as an autocomplete filter and on re-clicking the settings of the filter it shows as autocomplete!!?
It seems the filters criteria is resetting to autocomplete from dropdown.
Could this be due to the field I created?
Tried again this morning (problem was yesterday) and seemed to fix itself?
I did initially tick "Show hierarchy in dropdwon" on the extra settings for fiter criterion. Then deselected it later. Not sure if that impacted the proceedings or not.

How to add footer to the list box in windows phone 8

I'm doing one windows phone 8 application. In this I've used list box. For the very first page I'm getting the data from server and adding that data to list box. Now I want to add Show More at the bottom of the list box i.e after the last item, to get the next items from the server.
How could I achieve this?
Hear you have to use Horizontal scrolling for load next data
Check below tutorial
Detect when a ListBox scrolls to its end (WP7)
Windows phone tutorial:Listbox
WP7 – How To Extend ListBox When Reaching Last Item
Windows Phone 7 ListBox Pagination with MVVMLight & ApplicationBar
we can Gets or sets the amount of data to fetch for virtualizing/prefetch operations by using
ListViewBase.DataFetchSize property and can Initiates the asynchronous request to load more data items, in accordance with the active incremental loading settings by ListViewBase.LoadMoreItemsAsync method.
If you want to do it by pagination then the following links may be helpfull for you
DataFetchSize method
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.datafetchsize.aspx
LoadMoreItemsAsync method:
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listviewbase.loadmoreitemsasync.aspx
You can see examples of using these here (though note that the sample was based on Windows 8 BUILD release and the apis have had some changes)
http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/e71b7036-4fb7-4963-a65d-5bcb9fd8f664
I'll go ahead posting the logic as My code might not match with yours
So
1 -> Save the server data in an array or a list.
2 -> Design the xaml in a way that the Parent Grid has two or more rows with the last row for the show more. And the one before for the list. (Adjust height accordingly)
3 -> Populate it with a limited amount of data.
4 -> Next use the ListBox.Items.Add(data) method to add the data to the list. Keep sorted property off so that the elements are inserted at the bottom of the list
-> Go through the link Add Method for Observable Collections
Use step four on the show more button click .. and also adjust the height of the list or put it into a scrollviewer so that limited height scrolling can be done . olease update if further queries

BIRT Report Designer - Tab layout

I am trying to find a way to create a report in BIRT that allows Tabs to be used for content that is related to the same data, but we would like it to be separated into logical segments. Each segment would have a tab that you could click on to view the data for that segment.
Is there any way to do this in BIRT? I see there is no obvious solution out of the box, but is there a plugin or hack that can allow this type of report?
One relatively simple approach to implementing tabbed reporting in BIRT that I have seen:
Use a separate report for each tab.
Set up a grid at the top of each report with title cells for each tab, with borders and/or colours set to indicate which is the current tab.
The simplest ways to do this would be to set borders to solid on all sides of the inactive tabs and no border on the bottom of the cell for the active tab, and/or to set the colour combinations of the active tab's title cell to be the reverse of the inactive tabs' cells.
Set up hyperlinks in the title cells of each of the inactive tabs to link to the relevant reports.