Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I was wondering whether anyone could give me some advice on this issue. I try to use Handsontable to develop an extension. But the module cannot be loaded, even through requirejs.config(), for example
require.config({
paths: {
Handsontable: '../extensions/test_spreadsheet/handsontable'
}
})
define(["jquery", "qlik", "text!./handsontable.full.css", "Handsontable"],
function ($, qlik, cssContent) {
}
Solved by inserting Handsontable in the function(). It's confusing: I did have tried this, but not working last time.
require.config({
paths: {
Handsontable: '../extensions/test_spreadsheet/handsontable'
}
})
define(["jquery", "qlik", "text!./handsontable.full.css", "Handsontable"],
function ($, qlik, cssContent, Handsontable) {
}
Solved by inserting Handsontable in the function(). It's confusing: I did have tried this, but not working last time.
require.config({
paths: {
Handsontable: '../extensions/test_spreadsheet/handsontable'
}
})
define(["jquery", "qlik", "text!./handsontable.full.css", "Handsontable"],
function ($, qlik, cssContent, Handsontable) {
}