node-google-spreadsheet
node-google-spreadsheet copied to clipboard
Is it possible to format cells as verification checkboxes?
Is there any code to format cells as verification checkboxes with this lib? Thanks!!!
AutoResponse: Yes it is, please merge this code as a method of the sheet:
async setVerificationBoxes(rowstart, rowend, columnstart, columnend) {
const requests =
{
'repeatCell':
{
'cell': {'dataValidation': {'condition': {'type': 'BOOLEAN'}}},
'range': {'sheetId': this.sheetId, 'startRowIndex': rowstart, 'endRowIndex': rowend,
'startColumnIndex': columnstart,
'endColumnIndex': columnend},
'fields': 'dataValidation'
}
};
await this._spreadsheet._makeBatchUpdateRequest(requests, null);
}