SpreadJS Documentation
bindingPath Method
The binding path.
Gets or sets the binding path for cell binding.
Syntax
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea);
var returnValue; // Type: string
returnValue = instance.bindingPath(value);
function bindingPath( 
   value : string
) : string;

Parameters

value
The binding path.

Return Value

The binding path.
Example
This example uses the bindingPath method.
var test = {name: "John"};
activeSheet.getCell(0,0).bindingPath( "name");
activeSheet.setDataSource(new GcSpread.Sheets.CellBindingSource(test));
Remarks
The default value is null.
See Also

Reference

Cell type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.