<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Mashup require.js Error When Embedding QS Extension Object in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787343#M13946</link>
    <description>&lt;P&gt;Which version of Qlik Sense are you running ?&lt;/P&gt;&lt;P&gt;There were a few defects in regard to that extension, the symptoms you report is related to defect QB-831, but there were other issues such as QB-2016.&lt;/P&gt;&lt;P&gt;All of those issues should already be solved in the latest Qlik Sense release (February 2021)&lt;/P&gt;</description>
    <pubDate>Tue, 02 Mar 2021 07:51:00 GMT</pubDate>
    <dc:creator>Damien_V</dc:creator>
    <dc:date>2021-03-02T07:51:00Z</dc:date>
    <item>
      <title>Mashup require.js Error When Embedding QS Extension Object</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787308#M13940</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In my mashup, when embedding a "Variable Input" extension object from a QS app, require.js automatically rename the stylesheet reference from "style.css" to "style.css.js" which causes a "404 Not Found" javascript error. Anyone knows what to do to bypass or rectify this?&lt;/P&gt;&lt;P&gt;My code below.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );

var config = {
	host: "###", // Hidden in code snippet for privacy
	prefix: "/",
	port: 443,
	isSecure: true
};
//to avoid errors in workbench: you can remove this when you have added an app
var app;
require.config({
	baseUrl: (config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "" ) + config.prefix + "resources"
});

function QlikObjectsRender() {
	window.qlik.resize();
}

require(["js/qlik"], function (qlik) {

	window.qlik = qlik;
	
	qlik.setOnError( function (error) {
		console.log(error);
		PageLoader(-1, error);
	});
		
	app = qlik.openApp('652969cf-2092-4884-af59-fe6464b3c92d', config);

	// The code to add the variable input extension object.
	app.getObject('qsInput', 'pxZVCZe');
});


function ReloadApp() {
	app.doReload(0,false,false).then(function(){
		app.doSave()
	});
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:30:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787308#M13940</guid>
      <dc:creator>hermandup_anz</dc:creator>
      <dc:date>2024-11-16T00:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup require.js Error When Embedding QS Extension Object</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787335#M13943</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/43596"&gt;@hermandup_anz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this the variable input extension from the Qlik bundled extension or something 3rd party ?&lt;/P&gt;&lt;P&gt;This should be easily solved by modifying the extension’s code.&lt;/P&gt;&lt;P&gt;There should be a line with text!./style.css&lt;/P&gt;&lt;P&gt;if you change it to css!./style.css&lt;/P&gt;&lt;P&gt;it should solve the issue.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 06:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787335#M13943</guid>
      <dc:creator>Damien_V</dc:creator>
      <dc:date>2021-03-02T06:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup require.js Error When Embedding QS Extension Object</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787339#M13945</link>
      <description>&lt;P&gt;The extension is Qlik bundled extension, so editing it is not preferable.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 06:41:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787339#M13945</guid>
      <dc:creator>hermandup_anz</dc:creator>
      <dc:date>2021-03-02T06:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup require.js Error When Embedding QS Extension Object</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787343#M13946</link>
      <description>&lt;P&gt;Which version of Qlik Sense are you running ?&lt;/P&gt;&lt;P&gt;There were a few defects in regard to that extension, the symptoms you report is related to defect QB-831, but there were other issues such as QB-2016.&lt;/P&gt;&lt;P&gt;All of those issues should already be solved in the latest Qlik Sense release (February 2021)&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 07:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787343#M13946</guid>
      <dc:creator>Damien_V</dc:creator>
      <dc:date>2021-03-02T07:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup require.js Error When Embedding QS Extension Object</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787672#M13950</link>
      <description>&lt;P&gt;Thanks Damien for pointing that out. You're right, that does look like it's resolved in September 2020 version and we're on June 2020.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 22:26:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-require-js-Error-When-Embedding-QS-Extension-Object/m-p/1787672#M13950</guid>
      <dc:creator>hermandup_anz</dc:creator>
      <dc:date>2021-03-02T22:26:07Z</dc:date>
    </item>
  </channel>
</rss>

