i’m trying to populate a row with createRow.
I can add values to other fields, but I can’t add a value to the
is_True__c field, which is a checkbox
skip_day = function (args_obj){ var year = args_obj.year;
var month = args_obj.month;
var day = args_obj.day;
var skip_date = year + ‘-’ + month + ‘-’ + day;
var new_row = skip_day_model.createRow({ additionalConditions: [ {field:‘is_Test__c’,value:true} ], doAppend: true });
console.log(new_row);
skip_day_model.save();
return new_row; }
skip_day({year:2017,month:1,day:1});
Object {Id: “16”, Id15: “16”}
Object {Id: “16”, Id15: “16”}
Question
can't set a check box in createRow
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.