Hi Telerik Team,
When i add RadHtmlChart, I am faced the error
Unknown server tag 'telerik:RadHtmlChart'
then by following this link
http://www.telerik.com/community/forums/aspnet-ajax/htmlchart/unknown-server-tag-telerik-radhtmlchart.aspx
i updated the controls to newer version. then the RadHtmlChart works fine.
But now the problem is,
after updation, the itemCommand in the RadGrid are showing error.
here is my code.
visible property for id is "false" in .aspx page
Error
Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
this error is solved, if we give visible property = "true" in .aspx page
SortExpression="id" UniqueName="id" Visible="true" HeaderStyle-CssClass="hide" ItemStyle-CssClass="hide">
------------------------
//CSS
.hide { display:none; }
but if i do like this, I have many RADgrids in my project. I need to change in all the grids.
(Again if i repalce the dll in Bin folder with the old dll, then the grid works fine but RadHtmlChart showing the same error)
Please help me....
Please give solution for this
Thanks in advance
--Alex
When i add RadHtmlChart, I am faced the error
Unknown server tag 'telerik:RadHtmlChart'
then by following this link
http://www.telerik.com/community/forums/aspnet-ajax/htmlchart/unknown-server-tag-telerik-radhtmlchart.aspx
i updated the controls to newer version. then the RadHtmlChart works fine.
But now the problem is,
after updation, the itemCommand in the RadGrid are showing error.
here is my code.
protected void rgFiles_ItemCommand(object source, GridCommandEventArgs e) { int index = int.Parse(e.Item.ItemIndex.ToString()); GridDataItem item = (GridDataItem)FileTable.MasterTableView.Items[index]; item.Selected = true; row_id = int.Parse(item["id"].Text); string File_name = item["Name"].Text; Label2.Text = File_name; LiteralControl litCon = new LiteralControl(); litCon.Text = "<iframe name='attachIFrame' id='runtimeIFrame' frameborder='solid' word-wrap='normal' scrolling='auto' height='100%' width='400px' src='RiskManagementStrategyFiles/" + File_name + "' style='left:0; background-color: beige;'></iframe>"; Panel1.Controls.Add(litCon); }Error
Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
|
this error is solved, if we give visible property = "true" in .aspx page
SortExpression="id" UniqueName="id" Visible="true" HeaderStyle-CssClass="hide" ItemStyle-CssClass="hide">
------------------------
//CSS
.hide { display:none; }
but if i do like this, I have many RADgrids in my project. I need to change in all the grids.
(Again if i repalce the dll in Bin folder with the old dll, then the grid works fine but RadHtmlChart showing the same error)
Please help me....
Please give solution for this
Thanks in advance
--Alex