We are trying to upgrading to 2013.1.417.35 for many, many GridTableViews. This is the source HTML for one column in a grid:
Here is what gets rendered:
It's hard to see, but the second single quote does not come down, and therefore, clicking on the button does nothing. Tested on previous version of RadGrid and it works fine. Why does it want to eat my quote.
<telerik:GridTemplateColumn UniqueName="ShowButton" HeaderText="" > <ItemTemplate> <INPUT type="button" value="watch" name="btnWatch" onClick="window.location='Players/player.aspx?sh=<%# Eval( "ShowNum" ) %>&se=<%# Eval( "SeriesNum" ) %>'" class="smallwatchbutton"> </ItemTemplate> <ItemStyle HorizontalAlign="Right" VerticalAlign="Middle" ></ItemStyle> </telerik:GridTemplateColumn>Here is what gets rendered:
<input class="smallwatchbutton" type="button" onclick="window.location='Players/player.aspx?sh=233&se=52" id="btnWatch" value="watch">It's hard to see, but the second single quote does not come down, and therefore, clicking on the button does nothing. Tested on previous version of RadGrid and it works fine. Why does it want to eat my quote.