BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
$(function () { $("#Spreadsheet").ejSpreadsheet({ // Rendering Spreadsheet }); }); function Result() { var xlObj = $('#Spreadsheet').ejSpreadsheet('instance'); // B2 cell has formula =CONCATENATE("one","big") and result is "onebig". alert("The Formula " + xlObj.XLEdit.getPropertyValue(1, 1, "value") + " result is: " + xlObj.XLEdit.getPropertyValue(1, 1, "value2")); } <input type="button" value="Formula Result" onclick="Result()" /> <div id="Spreadsheet"></div> |