Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to change field value in qliksense extension

     Is there any way to change the field value in Qlik Sense Extension

     Example: I have one field as State, This contains list of states name. states: "US","UK","LONDON"

     How to change this field value from Qlik Sense Extension?

1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

Hi ,

am not sure but you can edit the extension and you cahnge if you know the HTML,JS.

devhub.PNG

View solution in original post

8 Replies
Chanty4u
MVP
MVP

Hi ,

am not sure but you can edit the extension and you cahnge if you know the HTML,JS.

devhub.PNG

Chanty4u
MVP
MVP

Hi,

PFA.

Chanty4u
MVP
MVP

No.. if you want change the existing  Extension  it will show there ... if you to do any changes you can double clik on it it will open the script there you can do changes,

HTH

Chanty

Anonymous
Not applicable
Author

Is there any way to change a field value using qliksense extension(.qext)?

Anonymous
Not applicable
Author

In App reloader extension, before reloading the app I want to select/change the any one  field in their qvf file. Is it possible?

Yeah, exactly. In button click event I want to select/change the state field value.

Chanty4u
MVP
MVP

Okay. i u.stood the issue  let me try from my end   and update you .

Chanty4u
MVP
MVP

Hi Shanthi,

I had a word with my Friend he mentioned like below.

After u fetch the data in hypercube format in ur extension, it is available for u to do any tweaks u want with it. But the same cannot be changed for the inmemory data model of Qlik.

Chanty4u
MVP
MVP

try below code and let me know

app.field('LastName').select([0, 1, 2], true, true);

True)

Here last name will be country for ur case. Try it.