kintone.events.on('app.record.create.submit', function(event) { var table = event.record.TABLE; // enter your app's field code. // filter empty row table.filter(function(row) { // enter your any conditions that you want like below. return row.value.field1.value != ''; }); return event; });
2件のコメント
> Table always has one record and more
That is the normal operation in Kintone.
if you would like to create 0 record table, you can solve that with JavaScript customize.
In save submit event, we can control field values in form like below.
https://developer.kintone.io/hc/en-us/articles/213149077-Record-Create-Event
> Table always has one record and more
That is the normal operation in Kintone.
if you would like to create 0 record table, you can solve that with JavaScript customize.
In save submit event, we can control field values in form like below.
https://developer.kintone.io/hc/en-us/articles/213149077-Record-Create-Event
Thanks for your guidance,
I solved my issue
Many thank.