Triggering action at sheet opening - qliksense

I create a menu in QlikSense thanks to the "Sheet Navigation & Action" extension.
One of my button triggers a selection before redirects to a sheet. My issue is if a user directly opens this sheet without clicking my button, the selection is not trigger.
So, is there a way to trigger a selection at the opening of a sheet in QlikSense like in QlikView?
If no, is there a good extension in Qlik Branch to do it? Does this one (SheetEvents) is reliable?
Thanks for yours answers

I tried the SheetEvents extension. Here's my feedback.
To use the extension, you must add a blank object to your sheets which is pretty annoying
But the extension proposes a large choice of actions

Related

How should I add checkbox in UI5 sap.m.Dialog

Currently the sap.m.Dialog only have the addButton method which can only add Button control, I just want to add the checkbox in the dialog footer like "Don not show this dialog again"
Update: as of commit cc55b10 (available in UI5 1.110), sap.m.Dialog comes with the new footer aggregation which awaits an instance of sap.m.Toolbar. There, you can add anything you want such as the sap.m.CheckBox.
For UI5 version lower than 1.110 (previous answer):
Adding a checkbox to the dialog footer is currently not supported as the corresponding aggregations <buttons>, <endButton>, and <beginButton> all await only sap.m.Button (or controls derived form it). I filed an enhancement request on GitHub in case you're interested.
The closest solution I could think of right now is to add ...:
sap.m.ToggleButton with the toggle text Don't Show This Again, or
sap.m.Button with the text Close And Don't Show This Again
... next to a normal close button.

Back button on a Tableau Worksheet

I am building a dashboard in tableau that navigates to different worksheets. I am wondering if there is a way to add a back button to a worksheet. I have thought of one way using an action filter menu, but that method is not very user friendly. Is there a way to get a button or something more obvious to the user? Thanks
You can only add navigation button with action filter. There is no other way to add button till now. I hope tableau soon add the official way to add button in the dashboard.

"Create New" text box in GWT radio button group

In my GWT app I have a radio button group of choices. The last choice is to add a new item. What I want is that the words "create new xyz" to disappear, and to be replaced with a text box to take the input. What is the best way to do this? I have thought about using a disclosure panel, but that seems unnatural and I don't have it working properly yet.
Is it possible to write an onClickHandler for that radio button? If so, then inside that onClickHandler, add code to generate the textbox.

How can I change the whole structure of a form by clicking a button ( Visual C# Express 2010 )

I'm new here as I am programming with Visual C# Express 2010.
Thats the case:
I have the first form, it contains labels, buttons, textboxes etc. I want one of these buttons to change all the aspects of this first form in order to create a second one.
An example of what I want is an ordinary installer program. It has one form ( I think ). And we have "next" button. Clicking on it, the whole form structure will change.
PS: Im not making an installer program.
Thank you!
It might be easier simply to develop a new form, and have the button launch an instance of that new form.
That said, you can programatically change aspect of GUI elements by using the appropriate properties.
For example, suppose you have a label lblStatus somewhere on the form. You can change its location and text with the following lines:
lblStatus.Location = new Point(20, 0);
lblStatus.Text = "Updated Status";
Hopefully this is helpful to get you on the right track.
You could do multiple things:
Use tab pages for each page of things that you want. Add a button outside of the tabs that will change to the next one.
Add a button and a panel on the form. Each page of the form is a different UserControl. When you click the button, fill the panel with a new instance of the UserControl that you want.
Do something like this: http://www.codeproject.com/KB/miscctrl/DesignTimeWizard.aspx
Or this: http://visualstudiogallery.msdn.microsoft.com/en-us/c2c412fd-bd28-4e3b-9c20-4dc381ac5199

is it possible to set up drag/drop tabview tabs in qooxdoo?

I would like to allow re-ordering of tabs in a tabview, preferrably using drag and drop of the tab buttons. The example drag/drop code for lists, modified for tabs simply doesn't work (the dragstart event is never fired).
Is this even possible?
At the moment we do not have this functionality out-of-the-box available. However, you can create a bug report at your bugzilla to get this feature in a future release.