I have a KendoUI Grid Embedded in a Tabstrip like so:
When I use the following libraries, the grid will populate, but the filters will be blank:
<script src="../../../js/jquery.min.js"></script>
<script src="../../../js/kendo.dataviz.min.js"></script>
<script src="../../../js/kendo.core.min.js"></script>
<script src="../../../js/kendo.all.min.js"></script>
<script src="../../content/shared/js/console.js"></script>
When I use these libraries, the grid will not populate, but the filters will work:
<script src="../../../js/jquery.min.js"></script>
<script src="../../../js/kendo.web.min.js"></script>
<script src="../../../js/kendo.dataviz.min.js"></script>
<script src="../../../js/kendo.core.min.js"></script>
<script src="../../content/shared/js/console.js"></script>
Any ideas?
...
<div id="tabstrip">
<ul>
<li class="k-state-active">Tab 1 Title</li>
<li>Tab 2 Title</li></ul><!--Tab1--><div>
<div id="grid"></div></div><!--Tab2--><div><div id="Tab2">Config 1: <input type="text" name="config1" />Config 2: <input type="text" name="config2" /><input type="checkbox" name="config3" value="Config A" /> Config A<input type="checkbox" name="config3" value="Config B" /> Config B</div> </div>
</div>
...When I use the following libraries, the grid will populate, but the filters will be blank:
<script src="../../../js/jquery.min.js"></script>
<script src="../../../js/kendo.dataviz.min.js"></script>
<script src="../../../js/kendo.core.min.js"></script>
<script src="../../../js/kendo.all.min.js"></script>
<script src="../../content/shared/js/console.js"></script>
When I use these libraries, the grid will not populate, but the filters will work:
<script src="../../../js/jquery.min.js"></script>
<script src="../../../js/kendo.web.min.js"></script>
<script src="../../../js/kendo.dataviz.min.js"></script>
<script src="../../../js/kendo.core.min.js"></script>
<script src="../../content/shared/js/console.js"></script>
Any ideas?