Hi there,
I’m currently trying out the Schedular Timeline within a Django application, at the moment I’m using ; scheduler.parse(JSON.stringify( "data" ),"json");
loading data from an inline dataset.
I’m wondering if there’s another way using a httpresponse with ajax, similar to below:
<script>
$.ajax({
url: $("#container").attr("data-url"),
dataType: 'json',
success: function (data) {
schedular.chart("container", data);
}
});
</script>
With best regards,