GcSpread.Sheets Namespace > CellBindingSource class : getSource Method |
var instance = new GcSpread.Sheets.CellBindingSource(source); var value; // Type: Object value = instance.getSource();
function getSource() : Object;
var person = {name: "Wang feng", age: 25, address: {postcode: "710075"}}; var source = new GcSpread.Sheets.CellBindingSource(person); activeSheet.setBindingPath(0, 0, "name"); activeSheet.setBindingPath(1, 1, "age"); activeSheet.setBindingPath(3, 3, "address.postcode"); activeSheet.setDataSource(source); alert(source.getSource().name);