Hi Johan,
I am trying to access external package using the following code;
var result = plugins.dialogs.showQuestionDialog( "", "Are you sure to import the wine list?", "Yes", "No");
if (result == "No") {
return;
}
if (source == "") return;
var file = java.io.File(source);
var workbook = Packages.jxl.Workbook.getWorkbook(file); //****GETTING AN ERROR
var sheet = workbook.getSheet(0);
I get an error at:
var workbook = Packages.jxl.Workbook.getWorkbook(file);
The error is :
[JavaPackage jxl.Workbook.getWorkbook] is not a function.
This function worked perfectly in the previous version. RC 2.2.xx
I need this to be urgently fixed.
Thanks