Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good day, Community,
I am writing a few extensions just for my personal use, and they all work fine. However, I want to group them inside a bundle, so when I go to "Custom Objects", instead of finding them inside the Extensions panel, I want my own panel, like: Igor Library.
I try the bundle property in the qext file. It works great in my Qlik Sense on-prem but I cannot upload the extension in the cloud. The extension in the cloud works great without the bundle option, but when I add the Bundle, I get this error message:
Error: PATCH 422 /extensions/<id>
Error code: MANAGEMENT-CONSOLE-2
This is my qext. I tried to remove the hyphen, have the id and name be the same, but it is all the same.
Network{
"name": "Scatterplot Matrix Chart",
"description": "A scatterplot matrix (SPLOM) visualization developed by Igor Alcantara (IPC Global)",
"homepage": "https://www.ipc-global.com",
"icon": "scatter-chart",
"type": "visualization",
"version": "0.2.0",
"author": "Igor Alcantara @ IPC Global",
"homepage": "https://ipc-global.com",
"keywords": "qlik, extension, visualization, scatterplot, matrix, d3",
"dependencies": {
"qlik-sense": ">=3.0.x"
},
"bundle": {
"id": "igor-bundle",
"name": "Igor Bundle",
"description": "Igor Library is a library of custom objects designed by Igor Alcantara."
},
"preview": "preview.png",
}
I also try to add the extension on a subfolder. Nothing seems to be working in the cloud. All seems to work on-prem.
Any idea of what I am missing?
I got it!
The only two things I did to fix it:
1 - I really had to use the word bundle in the id of the bundle. It does not make sense, but it works.
2 - My mistake, I had a comma at the end of the last property. Client-managed does not care. Cloud does.
😄
I got it!
The only two things I did to fix it:
1 - I really had to use the word bundle in the id of the bundle. It does not make sense, but it works.
2 - My mistake, I had a comma at the end of the last property. Client-managed does not care. Cloud does.
😄