Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Default attribut

Avatar

Level 2

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 ?

0 Replies

Avatar

Level 5

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

Avatar

Level 2

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

Avatar

Level 5

Have you tested my syntax, if no then remove default property and only keep sqlDefault with your expected value in ''

Avatar

Level 2

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

Avatar

Level 10

Hi,

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

Florent