Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Where are the actions and buttons?

I need to put a button with action for a URL.

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi Fabiano,

Qlik Sense is not QlikView (as you may already know). There are no actions in Qlik Sense Desktop.

However, the Text & Image object allows you to create a link. Just drag and drop the Text & Image object, tap or click on it and in the menu for the object you will see the link icon.

Miguel

View solution in original post

8 Replies
Miguel_Angel_Baeyens

Hi Fabiano,

Qlik Sense is not QlikView (as you may already know). There are no actions in Qlik Sense Desktop.

However, the Text & Image object allows you to create a link. Just drag and drop the Text & Image object, tap or click on it and in the menu for the object you will see the link icon.

Miguel

Not applicable
Author

I have tried what Miguel suggests and it works fine.

To do this just add a link to the text:

To actually make a button do this, you whould probably need to use an extension.

Not applicable
Author

And when you use a Picture with your example you have a Button with URL

Not applicable
Author

If you want an actual button, the following example is on how to create one with a very basic extension.

To do this

1.-Open Qlik Sense

2.-Go to: http://localhost:4848/workbencheditor

3.-Chose a basic template to start with:

3.-On <Projectname>.js tab type overwrite all the existent code with the following code:

define( [

],

function ( ) {   

    return {

          paint: function ($element) {

            //add your rendering code here

          $element.html( '<form method="get" action="http://www.google.com"><button type="submit">Go to Google</button></form>');

        }

    };

} );

4.-Then just edit your app to add the button:

Stefan_Walther
Employee
Employee

‌Hi,

have a look at https://github.com/stefanwalther/sense-navigation

Maybe this is what you were looking for.

Regards

Stefan

jim_chan
Specialist
Specialist

how about navigating sheet? how to create a image button to navigate sheet?

Rgds,

Jim

Anonymous
Not applicable
Author

hi Miguel,

i just tried your solution but to me the link image itself disabled any idea how to enable it ?

thanks in advance

Shubham_Deshmukh
Specialist
Specialist

Hi @Miguel_Angel_Baeyens ,

But why Qliksense doesn't have action option on text obj?