07-23-2012 05:52 AM
function GetData(cell,row){
var excel = new ActiveXObject("Excel.Application");
var excel_file = excel.Workbooks.Open("C:\test.xls");
var excel_sheet = excel.Worksheets("Sheet1");
var data = excel_sheet.Cells(cell,row).Value;
return data;
}
document.write(GetData(1,1));
07-23-2012 06:18 AM
07-23-2012 06:20 AM
Hi,
Activiti uses client-side Javascripting, no I'm not sure if you're able to use "new ActiveXObject("Excel.Application");", as the ScriptBindings are not aware of these things. Can't you write a JavaDelegate that reads and extracts what'n needed from the XLS?
07-23-2012 06:23 AM
08-13-2012 06:27 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.