handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
13 lines • 527 B
JavaScript
import { valueSetter as autocompleteValueSetter } from "../../autocompleteType/accessors/index.mjs";
/**
* Defines what value is set to an dropdown-typed cell.
*
* @param {*} newValue The value to be set.
* @param {number} row The row index.
* @param {number} column The column index.
* @param {object} cellMeta The cell meta object.
* @returns {*} The new value to be set.
*/
export function valueSetter(newValue, row, column, cellMeta) {
return autocompleteValueSetter.call(this, newValue, row, column, cellMeta);
}