How set property value of textfield using sightly? | Community
Skip to main content
Employee
August 9, 2021
Solved

How set property value of textfield using sightly?

  • August 9, 2021
  • 2 replies
  • 2389 views

How set property value of textfield using sightly? or how to add the page title as property value in text field?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Asutosh_Jena_

HI @keerthana_h_n 

 

You want to add/show the default value when the value is not authored in dialog for a field?

You can use below approach:

 

${properties.pageTitle || properties.jcr:title}

So if the pageTitle is not authored it will pick the jcr:title as the default value.

 

Thanks! 

2 replies

Employee
August 10, 2021

Hi @asutosh_jena_ 

 

To populate description in text field we do samething? bcz I tried to populate description similar way showing undefined.

Asutosh_Jena_
New Participant
August 10, 2021

Hi @keerthana_h_n 

 

You can read the description from metatag using the below command:

$('meta[name=description]').attr('content');

Now this value can be assigned the the respective field using the required selector (ensure correct name or id attribute is used to update the respective field).

 

Thanks!

Asutosh_Jena_
Asutosh_Jena_Accepted solution
New Participant
August 9, 2021

HI @keerthana_h_n 

 

You want to add/show the default value when the value is not authored in dialog for a field?

You can use below approach:

 

${properties.pageTitle || properties.jcr:title}

So if the pageTitle is not authored it will pick the jcr:title as the default value.

 

Thanks! 

Employee
August 9, 2021

Hi @asutosh_jena_

 

I need to display the page title in my dialog textfield as default. How can that be achieved?