Default attribut | Community
Skip to main content
Level 2
April 20, 2018

Default attribut

  • April 20, 2018
  • 1 reply
  • 8937 views

Hello,

I'm trying to create a String field into my schema with default value set as "true".

I tried this :

<attribute default="true" label="Test Default Value" name="test" type="string" sqlDefault="Test"/>

But, it does not work

can you help me please ?

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

1 reply

richac96395021
Level 4
April 20, 2018

Hi abdelkarimg33790365 ,

I have tested your case, the solution is as follows

    <attribute label="Test Default Value" type="string" name="sample_test1" sqlDefault="'test'" />

add the value test within ' ', so sqlDefault can be written as sqlDefault="' test'"

with regards,

Richa Chaubey

Level 2
April 20, 2018

Hi richac

Thank you for your answer,

In the result I get the value 'true' I do not get the value in the sqlDefault attribute

cordially

Abdel

florentlb
Level 10
May 15, 2018

yes i have tested your syntax, i remove the default property  :

<attribute label="Test Default Value" length="350" name="testDefault" sqlDefault="test"  type="string"/>

but in the form I do not see the default value I associated in the data schema


Hi,

Please check the syntax. In Richa's suggestion, there is an extra ' character around "test". Which makes '"test"'.

Florent