cancel
Showing results for 
Search instead for 
Did you mean: 

Pre populated rows in the tasks subtable in the goal plan

margarita
Explorer
0 Kudos
395

Hello all,

we have a client requirement regarding "tasks" table in the goal plan and the pre populated rows in the tasks subtable. More specifically when we add a goal, the client needs the task table to come with three rows pre populated with specific values. Is that possible?

Thank you in advance!

Kind regards,

Margarita

Accepted Solutions (1)

Accepted Solutions (1)

MridulSharmaSF
Contributor
0 Kudos

Hi @margarita_1 This can be achieved using below code ;use default value code as below

<table-column id="target" type="textarea" required="false" cascade-update="push-down">

<column-label>Task</column-label>

<default-value>This is prepopulated</default-value>

</table-column>

Please mark this as answer as this motivates me to work on query and provide the solution

Thanks

Mridul

margarita
Explorer
0 Kudos

Thank you Mridul for your response.

Could you please kindly help us a little bit more on this as the client's requirement is to have three pre populated rows.

Kind regards,

Margarita

Answers (2)

Answers (2)

MridulSharmaSF
Contributor

margarita_1 hope this information was helpful if yes pls mark it as answer

MridulSharmaSF
Contributor
0 Kudos

margarita_1 you can three different fields of the different type as column in same way like below code

<table-column id="target" type="textarea" required="false" cascade-update="push-down">

<column-label>Task</column-label>

<default-value>This is prepopulated</default-value>

And the value you want to prepopulate you can give under the code "<default-value>This is prepopulated</default-value>"

Hope this helps and please mark it as answer if this helped you.

Thanks

Mridul