Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I like to set default value for the boolean data shape field.
can anybody explain how to do this?
Regards
Sugumar R
Solved! Go to Solution.
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({});
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({});
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