Hi,
Attempting to embed a KendoUI Chart in a Template component. I’ve added the KendoUI Static Resource. Not sure how to properly code a Inline JavaScript snippet.
Here’s the VF Page code that I am trying to replicate in Skuid:
<apex:page >
<head>
<apex:stylesheet value="{!URLFOR($Resource.KendoUI, '/styles/kendo.common.min.css')}"/>
<apex:stylesheet value="{!URLFOR($Resource.KendoUI, '/styles/kendo.default.min.css')}" />
<apex:stylesheet value="{!URLFOR($Resource.KendoUI, '/styles/kendo.dataviz.min.css')}" />
<apex:stylesheet value="{!URLFOR($Resource.KendoUI, '/styles/kendo.dataviz.default.min.css')}" />
<apex:includeScript value="{!URLFOR($Resource.KendoUI, '/js/jquery.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.KendoUI, '/js/kendo.all.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.KendoUI, '/js/angular.min.js')}"/>
</head>
<body>
<div id="chart"></div>
<script&