or
2011-05-07 10:21:45.6580|Error ## In Application_Error This is an invalid webresource request. ##
Xxx.WebApp.Global.Application_Error()
PipelineStepManager.ResumeSteps() > HttpApplication.RaiseOnError() > Global.Application_Error()
This is an invalid webresource request. System.Web.HttpException HttpException System.Web.HttpException (0x80004005): This is an invalid webresource request.
at System.Web.Handlers.AssemblyResourceLoader.System.Web.IHttpHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) Void System.Web.IHttpHandler.ProcessRequest(System.Web.HttpContext) at System.Web.Handlers.AssemblyResourceLoader.System.Web.IHttpHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Hi,
It seems no matter what element width I set on my RadGrid parent element, the RadGrid forces the parent elements width to be 100%
I have overridden the rgGridData class and it has no effect, the top-level parent element always expands.
Sample code below:
<
table
border
=
"1"
width
=
"500px;"
>
<
tr
>
<
td
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadGrid
ID
=
"rGridSearchResults"
Width
=
"500px"
runat
=
"server"
Height
=
"500px"
>
<
ClientSettings
Scrolling-AllowScroll
=
"true"
Scrolling-ScrollHeight
=
"500px"
>
</
ClientSettings
>
<
MasterTableView
Width
=
"500px"
Height
=
"500px"
>
<
NoRecordsTemplate
>
No Results</
NoRecordsTemplate
>
</
MasterTableView
>
</
telerik:RadGrid
>
</
td
>
</
tr
>
</
table
>