This is a migrated thread and some comments may be shown as answers.

Grid Filters Not Working When Embedded into Tab Strip

0 Answers 64 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Thomas
Top achievements
Rank 1
Thomas asked on 10 Jul 2012, 02:43 PM
I have a KendoUI Grid Embedded in a Tabstrip like so:

...
<
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?

No answers yet. Maybe you can help?

Tags
Grid
Asked by
Thomas
Top achievements
Rank 1
Share this question
or