Dear Mr / Ms,
I think my kintone environment is working with old version
Table always has one record and more (it can has blank value).
I cannot create table like below image (0 record):
Can you help me?
Dear Mr / Ms,
I think my kintone environment is working with old version
Table always has one record and more (it can has blank value).
I cannot create table like below image (0 record):
Can you help me?
> 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
|
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;
});
|
Thanks for your guidance,
I solved my issue
Many thank.