Skip to content

Commit

Permalink
Merge pull request #910 from hanastasov/16.2
Browse files Browse the repository at this point in the history
fix issues in igLoader
  • Loading branch information
mpavlinov authored Mar 29, 2017
2 parents 52f11cd + 438388b commit 1de28ff
Showing 1 changed file with 9 additions and 102 deletions.
111 changes: 9 additions & 102 deletions src/js/infragistics.loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -1595,117 +1595,24 @@ $.ig.dependencies = [
/*/ start igExcel/// */
{
widget: "igExcel",
dependency: [
{ name: "_ig_documents_core_core" },
{ name: "_ig_ext_collections_extended" }
],
scripts: [ "$path$/modules/infragistics.excel_core.js" ],
locale: [ "$localePath$/infragistics.excel_core-$locale$.js" ],
css: [],
dependency: [ { name: "igUtil" } ],
scripts: [
"$path$/modules/infragistics.documents.core.js",
"$path$/modules/infragistics.excel.js"
],
css: [ ],
description: $.ig.loaderClass.locale.descriptions.excelDescription
},
{
widget: "Functions",
parentWidget: "igExcel",
dependency: [ { name: "igExcel" } ],
scripts: [ "$path$/modules/infragistics.excel_functions.js" ],
css: []
},
{
widget: "_ig_documents_core_openxml",
dependency: [
{ name: "_ig_documents_core_core" },
{ name: "_ig_ext_collections_extended" },
{ name: "_ig_xml" }
],
group: $.ig.loaderClass.locale.miscGroup,
internal: true,
scripts: [ "$path$/modules/infragistics.documents.core_openxml.js" ],
css: []
},
{
widget: "_ig_excel_openxml",
dependency: [
{ name: "igExcel" },
{ name: "_ig_documents_core_openxml" }
],
group: $.ig.loaderClass.locale.miscGroup,
scripts: [ "$path$/modules/infragistics.excel_serialization_openxml.js" ],
internal: true,
css: []
},
{
widget: "_ig_excel_biff8",
dependency: [ { name: "igExcel" } ],
group: $.ig.loaderClass.locale.miscGroup,
scripts: [ "$path$/modules/infragistics.excel_serialization_biff8.js" ],
internal: true,
css: []
},
{
widget: "LoadSaveXls",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_biff8" } ],
scripts: [],
css: []
},
{
widget: "LoadSaveXlt",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_biff8" } ],
scripts: [],
css: []
},
{
widget: "LoadSaveXlsx",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_openxml" } ],
scripts: [],
css: []
},
{
widget: "LoadSaveXlsm",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_openxml" } ],
scripts: [],
css: []
},
{
widget: "LoadSaveXltm",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_openxml" } ],
scripts: [],
css: []
},
{
widget: "LoadSaveXltx",
parentWidget: "igExcel",
dependency: [ { name: "_ig_excel_openxml" } ],
scripts: [],
css: []
},
{
widget: "igExcel.*",
dependency: [
{ name: "Functions" },
{ name: "LoadSaveXls" },
{ name: "LoadSaveXlt" },
{ name: "LoadSaveXlsx" },
{ name: "LoadSaveXlsm" },
{ name: "LoadSaveXltm" },
{ name: "LoadSaveXltx" }
]
},
/*/ end igExcel /// */
/*/ start igExcel/// */
/*/ start igGridExcelExporter/// */
{
widget: "igGridExcelExporter",
dependency: [ { name: "igExcel" } ],
dependency: [ { name: "igExcel" }],
scripts: [ "$path$/modules/infragistics.gridexcelexporter.js" ],
css: [ ],
description: $.ig.loaderClass.locale.descriptions.gridExcelExporterDescription
}
/*/ end igExcel /// */
/*/ end igGridExcelExporter /// */

];

Expand Down

0 comments on commit 1de28ff

Please sign in to comment.