Dynamic action on tab click in Oracle Apex 5 - tabs

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?

Related

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

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

"Expand All" button in a drill down report canceling another feature

I have a main report that shows a bar chart for the sales per country. once I click on a country bar, a drill down report shows a (+/-) list of all countries toggled by the country name, with only the clicked country expanded, while the others are collapsed.
I was asked by the client to add an "Expand All" button to allow them to expand all countries detail at once. However, when I added this button, the first functionality was lost.
In the initialToggleState Expression of the toggle textbox country I used:
=iif(Fields!country_ID.Value=Parameters!param_Country_ID.Value OR Parameters!paramExpandOrCollapse.Value = "Expand" ,true, false)
Could I have both functionalities working without one canceling the other?

Extjs 5.1 tab order is not working in the form with dynamically created textfields

I have a form that has some textfields and combos with a vbox layout. These components are created dynamically after pressing one button. The tab order seems that is not working. The cursor doesn't go from one textfield to the next one by pressing the tab. What am i missing and the tab order is not working? In case the form is declared statically as view-controller, the tab order is working automatically.
You can set tab order via tabIndex property.

Viewing SSRS Report in Report Manager With Keyboard Only

We have a requirement where user have no pointing device, user must use SSRS report manager to view report with keyboard only, but I am unable to select values for a multi-valued parameters, I managed to pop up the list, but when I press tab, focus moves to next parameters instead of going into the list of multi-valued parameter.
I tried many different keyboard combinations, but none is working. Also checked for any option on parameter itself, but did not find anything.
Is there anything I can do to resolve this problem.
This is a question you dont hear every day - I presume this is for accessability reasons?
I think you are at the mercy of your browser here. The following seems to work on IE9:
tab to the drop-down arrow and press space to drop down the list
press shift-tab then tab - this should get you to the (Select All) row.
use tab and shift-tab to scroll up and down the list
use space to select / unselect each row in the list
use tab or shift-tab to scroll off the end of the list
note your focus is now on the Show/Hide Parameters button (odd). You can tab or shift-tab from there to the next parameter.

Having a persistent dropdownlist value through site navigation

I have a html drop down list in my web site. When the user selects a particular item in the list I want it to be shown in all the pages when the user navigates through the site.How Can I do that??
I am using visual studio 2010 and mvc3 views. Currently what happen is when the user selects a particular item,the selected value only stays for the current page, when I go to another page, the default value, which is the very first item in the list is shown.
How can I have persistent dropdown list value??
Thanks.
There are different ways to achieve this. You could store it in Session or Cookies. So for example on the first page create a form containing the DropDown with a submit button. When the user clicks on the submit button the form will post the selected value back to the server and the server could either store it in Session or client side cookie. Then the controller action could redirect to some other action which will be able to retrieve the value. And from now on this value will be available on all subsequent requests.