Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
g_bolshakov
Contributor III
Contributor III

Calculation of the defaultValues

Hello experts!

Please help me solve the problem:
I am working on developing an extension and I need to calculate the value from the field that is specified by default.
Example:

 

app_name: {
    type: "string",
    label: "Name APP",
    ref: "myproperties.app_name",
    defaultValue: "=DocumentTitle()",
    expression: "always",
},

 

As a result, I want to when accessing the layout.myproperties.app_name get "TestFileName.qvf" and not "=DocumentTitle()"

Is this realistic? 

Labels (1)
1 Solution

Accepted Solutions
ErikWetterberg

If you don't want the user to be able to change the value don't include it in the property panel. Instead add a qStringExpression to initialProperties.

View solution in original post

2 Replies
ErikWetterberg

If you don't want the user to be able to change the value don't include it in the property panel. Instead add a qStringExpression to initialProperties.

g_bolshakov
Contributor III
Contributor III
Author

Erik, thanks!