<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
GridLines
=
"Vertical"
Skin
=
"Hay"
PageSize
=
"250"
AllowSorting
=
"True"
AllowPaging
=
"True"
ShowGroupPanel
=
"False"
AutoGenerateColumns
=
"false"
Width
=
"100%"
>
<
PagerStyle
Mode
=
"Slider"
></
PagerStyle
>
<
MasterTableView
ShowGroupFooter
=
"true"
GroupsDefaultExpanded
=
"False"
HeaderStyle-HorizontalAlign
=
"Center"
GroupHeaderItemStyle-BackColor
=
"white"
GroupHeaderItemStyle-ForeColor
=
"Black"
GroupHeaderItemStyle-Font-Size
=
"Medium"
DataKeyNames
=
"SkillID"
>
<
GroupByExpressions
>
<
telerik:GridGroupByExpression
>
<
SelectFields
>
<
telerik:GridGroupByField
FieldName
=
"SkillAreaId"
HeaderText
=
" "
/>
<
telerik:GridGroupByField
FieldName
=
"SkillArea"
HeaderText
=
" "
/>
</
SelectFields
>
<
GroupByFields
>
<
telerik:GridGroupByField
FieldName
=
"SkillAreaId"
HeaderText
=
""
HeaderValueSeparator
=
" "
/>
</
GroupByFields
>
</
telerik:GridGroupByExpression
>
</
GroupByExpressions
>
<
Columns
>
<
telerik:GridTemplateColumn
UniqueName
=
"SkillID"
>
<
ItemTemplate
>
<
b
>
<%# Eval("SkillID")%>
</
b
>
</
ItemTemplate
>
<
FooterTemplate
>
</
FooterTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
>
<
ItemTemplate
>
<%# Eval("Skill")%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
>
<
HeaderTemplate
>
None<
br
/>
0</
HeaderTemplate
>
<
ItemTemplate
>
<
asp:RadioButton
ID
=
"RadioButton1"
runat
=
"server"
/></
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
>
<
HeaderTemplate
>
Basic<
br
/>
1</
HeaderTemplate
>
<
ItemTemplate
>
<
asp:RadioButton
ID
=
"RadioButton2"
runat
=
"server"
/></
ItemTemplate
>
</
telerik:GridTemplateColumn
>
Protected Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs) Handles RadGrid1.ItemDataBound
If TypeOf e.Item Is GridDataItem Then
Dim itm As GridDataItem = CType(e.Item, GridDataItem)
itm("SkillId").Controls.Add(New LiteralControl("test"))
End If
Failed to load viewstate. The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. For example, when adding controls dynamically, the controls added during a post-back must match the type and position of the controls added during the initial request." Is it normal? Is there a way to refresh/rebind the gris after creating the export? Thank you Regis
<asp:Panel ID="filterRadio_Panel" runat="server" DefaultButton="filterSubmit_Btn">
<asp:RadioButtonList ID="TimeOption_RadioList" runat="server" RepeatDirection="Horizontal"
OnSelectedIndexChanged="TimeOption_RadioList_SelectedIndexChanged"
AutoPostBack="True" DataSource='<%#getTimeOptions() %>' DataTextField="key" DataValueField="value" OnDataBound="TimeOption_RadioList_DataBound" >
</asp:RadioButtonList>
</asp:Panel>
I have my global.asax file setup to report all errors to me via email. I keep getting the following error popup up 10 - 15 times a day on our BETA site (we are still on trial)
This is the exact error: The file '/QSSWeb2_Test/MySkins/Sigma/ImageHandler.ashx' does not exist.
We use custom skins. Any help would be appreciated.
Here's the full stack.
System.Web.HttpException (0x80004005): The file '/QSSWeb2_Test/MySkins/Sigma/ImageHandler.ashx' does not exist.
at System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath)
at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
at System.Web.Compilation.BuildManager.GetVPathBuildResult(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean ensureIsUpToDate)
at System.Web.UI.SimpleHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
at System.Web.UI.SimpleHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)mode = get suite = aspnet-ajax control = ComboBox skin = Sigma file = calendar-top.jpg t = 1807901079 QSSWeb_UserName = UserName=jdoe ASP.NET_SessionId = 0ecjcaarg0odk355fdj1jxqe ASPXAUTH =
GridDataItem item;
String ArticleID;
item = e.Item as GridDataItem;
ArticleID = item["AssetIdx"].Text;