Help

Changing a Button Field label

Topic Labels: Scripting extentions
Solved
Jump to Solution
1888 2
cancel
Showing results for 
Search instead for 
Did you mean: 

I’m still fairly new to scripting, and going through the learning process. I’m assuming the below error means that scripting can’t access the details that it needs to?

Error

N: Can’t set cell values: Field ‘Button’ is computed and cannot be set

My example code below;

let myTable = base.getTable("ButtonTable");
let myTabeQuery = await myTable.selectRecordsAsync();

for (let myRecord of myTabeQuery.records) 
{    
    let getButton = myRecord.getCellValue('Button')
    console.log(getButton);

    let getSelect = myRecord.getCellValue('SingleSelect')
    console.log(getSelect);

    let newName = "💚";
    await myTable.updateRecordAsync(myRecord,{Name:newName});

    let newSelect = "💚";
    await myTable.updateRecordAsync(myRecord,{"SingleSelect": {name:newSelect}});

    let newButton = "On";
    await myTable.updateRecordAsync(myRecord,{"Button": {Label:newButton}});
}

Is there any method to update Labels?

image

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

You are correct that you cannot change button field labels. They are fixed and must be the same for every button in a column.

See Solution in Thread

2 Replies 2

No. Button labels are static, and are the same for every record. The label is a property of the table’s field object, not a field value associated with a record.

kuovonne
18 - Pluto
18 - Pluto

You are correct that you cannot change button field labels. They are fixed and must be the same for every button in a column.