When I upgraded to 2014.2.716, a visual error started occurring in my grid controls with child controls in the grid's toolbar.
I tested that in a brand new project using the CDN to make sure i eliminated all other code. The "TestRowClass" can contain any properties, i only use it to help render the grid itself.
When I use the razor scripting above, all of the <script> tag content shows up in the toolbar along side the control. The control works just fine, but the content of the script tag should not be visible.
I tried adding a simple style like "script { display:none; }" to the page, but that didn't fix the issue.
Any advice or fix would be appreciated. Thanks.
01.
@(Html.Kendo().Grid<
TestRowClass
>()
02.
.Name("TestGrid")
03.
.ToolBar(toolbar => toolbar.Template(@<
text
>
04.
@(Html.Kendo().AutoComplete()
05.
.Name("TestAutoComplete")
06.
)
07.
</
text
>)
08.
)
09.
)
I tested that in a brand new project using the CDN to make sure i eliminated all other code. The "TestRowClass" can contain any properties, i only use it to help render the grid itself.
When I use the razor scripting above, all of the <script> tag content shows up in the toolbar along side the control. The control works just fine, but the content of the script tag should not be visible.
I tried adding a simple style like "script { display:none; }" to the page, but that didn't fix the issue.
Any advice or fix would be appreciated. Thanks.