Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
445
igTileManager error
posted

Hello, i have the problem with this control. 

When i run my app, i load all recources with loader.js. and i took your example. But it's still not work. 

IgniteUI/js/modules/infragistics.templating.js    replace error  (null) 

this my page:

<!DOCTYPE html>
<html>
<head>
<title></title>

<script src="js/jquery_min.js"></script>

<script src="js/jquery-ui.min.js"></script>
<script src="IgniteUI/js/infragistics.loader.js"></script>


</head>



<script>
$(function () {
var data = [
{ name: 'Pie' },

{name: 'Funnel'},

{name: 'Editor'}

];
$.ig.loader({
scriptPath: "IgniteUI/js/",
cssPath: "IgniteUI/css/",
resources: "igTileManager,igHtmlEditor",
autoDetectLocale: true,
ready: function () {
$("#htmlEditor").igHtmlEditor();
$("#igTileManager").igTileManager({
columnWidth: '30%',
columnHeight: '30%',
marginLeft: 10,
marginTop: 10,
height: 800,
width: 950,
dataSource: data,
minimizedState: '<h3>${name}</h3>',
maximizedState: '<h3>${name}</h3>'

});
}
});

});
</script>
<body>
<div id="htmlEditor"></div>
<div id="igTileManager"></div>
</body>
</html>