addRadio

adds a radio button into a cell

void addRadio(object range);
rangeobjectan object that defines the start and end cells of the range to add radio buttons into

Example

$$("ssheet").addRadio({
    start:{row:1, column:1}, 
    end:{row:3, column:1}
});

Details

The range object includes two properties:

  • start - (object) an object with the start cell of the range set as {row:id, column:id}
  • end - (object) an object with the end cell of the range set as {row:id, column:id}
See also
Back to top