Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您知道如何通过设置“计算值”公式来计算 FormIO DataGrid 中的内联值吗?
eg 如附件所示
我想得到 Number1 和 Number2 的值的总和并设置为 Number 3。
谢谢//凯文
我发现根据官方网站的计算值设置的匿名函数有一个“行”参数。
您可以使用row计算值中的参数来确定这一点。以下可能会添加该行中的总数。
row
value = parseInt(row.number1, 10) + parseInt(row.number2, 10);