Skip to main content
1-Visitor
August 6, 2020
Solved

How to set Default Value to the data shape field through pragmatically?

  • August 6, 2020
  • 1 reply
  • 1752 views

I like to set default value for the boolean data shape field.

 

can anybody explain how to do this?

 

Regards

Sugumar R

 

Best answer by vinakumar

Hi,

 

You can use  aspects parameter similar to below to achieve your requirement

 

var params = { infoTableName: undefined /* STRING */};

// result: INFOTABLE
var result = Resources["InfoTableFunctions"].CreateInfoTable(params);

//Add a new field to the InfoTable:
result.AddField({name: "ColNameOne", baseType: "BOOLEAN", aspects : {defaultValue:1}});
result.AddField({name: "ColNameTwo", baseType: "INTEGER", aspects : {defaultValue:10}});
result.AddField({name: "ColNameThree", baseType: "STRING", aspects : {defaultValue:"test"}});

result.AddRow({});

1 reply

vinakumar12-AmethystAnswer
12-Amethyst
August 6, 2020

Hi,

 

You can use  aspects parameter similar to below to achieve your requirement

 

var params = { infoTableName: undefined /* STRING */};

// result: INFOTABLE
var result = Resources["InfoTableFunctions"].CreateInfoTable(params);

//Add a new field to the InfoTable:
result.AddField({name: "ColNameOne", baseType: "BOOLEAN", aspects : {defaultValue:1}});
result.AddField({name: "ColNameTwo", baseType: "INTEGER", aspects : {defaultValue:10}});
result.AddField({name: "ColNameThree", baseType: "STRING", aspects : {defaultValue:"test"}});

result.AddRow({});

Community Manager
August 17, 2020

Hi @Sugumar_5656.

 

If you feel the previous response answered your question, please mark it as the Accepted Solution for the benefit of others with the same question.

 

Thank you for your participation in our community!

 

Regards.

 

--Sharon