I am gettting a 'telerik is undefined' error on a webpage which i have only one radasyncupload control. The error is breaking the page stopping the rest of the javascript on the page loading. Everything works fine if i remove the asyncupload control.
This works fine when developing in Visual Studio, works fine on an internal server but i am getting the above error when deployed to an external server (with the same web.config values for the http handlers) Servers both running IIS 7. Below are the settings from system.web and system.webserver config sections.
<
system.web
>
<
compilation
targetFramework
=
"4.5"
/>
<
globalization
uiCulture
=
"auto"
culture
=
"auto"
/>
<
httpRuntime
targetFramework
=
"4.5"
/>
<
customErrors
mode
=
"Off"
/>
<
httpHandlers
>
<
add
path
=
"ChartImage.axd"
type
=
"Telerik.Web.UI.ChartHttpHandler"
verb
=
"*"
validate
=
"false"
/>
<
add
path
=
"Telerik.Web.UI.SpellCheckHandler.axd"
type
=
"Telerik.Web.UI.SpellCheckHandler"
verb
=
"*"
validate
=
"false"
/>
<
add
path
=
"Telerik.Web.UI.DialogHandler.aspx"
type
=
"Telerik.Web.UI.DialogHandler"
verb
=
"*"
validate
=
"false"
/>
<
add
path
=
"Telerik.RadUploadProgressHandler.ashx"
type
=
"Telerik.Web.UI.RadUploadProgressHandler"
verb
=
"*"
validate
=
"false"
/>
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
verb
=
"*"
validate
=
"false"
/>
</
httpHandlers
>
<
httpModules
>
<
add
name
=
"RadUploadModule"
type
=
"Telerik.Web.UI.RadUploadHttpModule"
/>
<
add
name
=
"RadCompression"
type
=
"Telerik.Web.UI.RadCompression"
/>
</
httpModules
>
<
pages
enableSessionState
=
"true"
>
<
controls
>
<
add
tagPrefix
=
"telerik"
namespace
=
"Telerik.Web.UI"
assembly
=
"Telerik.Web.UI"
/>
</
controls
>
</
pages
>
</
system.web
>
<
system.webServer
>
<
validation
validateIntegratedModeConfiguration
=
"false"
/>
<
modules
runAllManagedModulesForAllRequests
=
"true"
>
<
remove
name
=
"RadUploadModule"
/>
<
add
name
=
"RadUploadModule"
type
=
"Telerik.Web.UI.RadUploadHttpModule"
preCondition
=
"integratedMode"
/>
<
remove
name
=
"RadCompression"
/>
<
add
name
=
"RadCompression"
type
=
"Telerik.Web.UI.RadCompression"
preCondition
=
"integratedMode"
/>
</
modules
>
<
handlers
>
<
remove
name
=
"ChartImage_axd"
/>
<
remove
name
=
"Telerik_Web_UI_SpellCheckHandler_axd"
/>
<
remove
name
=
"Telerik_Web_UI_DialogHandler_aspx"
/>
<
remove
name
=
"Telerik_RadUploadProgressHandler_ashx"
/>
<
remove
name
=
"Telerik_Web_UI_WebResource_axd"
/>
<
add
name
=
"ChartImage_axd"
path
=
"ChartImage.axd"
type
=
"Telerik.Web.UI.ChartHttpHandler"
verb
=
"*"
preCondition
=
"integratedMode"
/>
<
add
name
=
"Telerik_Web_UI_SpellCheckHandler_axd"
path
=
"Telerik.Web.UI.SpellCheckHandler.axd"
type
=
"Telerik.Web.UI.SpellCheckHandler"
verb
=
"*"
preCondition
=
"integratedMode"
/>
<
add
name
=
"Telerik_Web_UI_DialogHandler_aspx"
path
=
"Telerik.Web.UI.DialogHandler.aspx"
type
=
"Telerik.Web.UI.DialogHandler"
verb
=
"*"
preCondition
=
"integratedMode"
/>
<
add
name
=
"Telerik_RadUploadProgressHandler_ashx"
path
=
"Telerik.RadUploadProgressHandler.ashx"
type
=
"Telerik.Web.UI.RadUploadProgressHandler"
verb
=
"*"
preCondition
=
"integratedMode"
/>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
verb
=
"*"
preCondition
=
"integratedMode"
/>
<
add
name
=
"Telerik.Web.UI.WebResource"
path
=
"Telerik.Web.UI.WebResource.axd"
verb
=
"*"
type
=
"Telerik.Web.UI.WebResource, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
/>
</
handlers
>
<
httpRedirect
enabled
=
"false"
destination
=
""
/>
</
system.webServer
>
IIS 7
Telerik version 2015.1.401.45
Dears,
we are using the RadGrid with a lot of TemplateColumns. Now we setup the grouping for several columns
Groupable=
"true"
GroupByExpression=
"FIELDNAME FIELDNAMEALIAS GROUP BY FIELDNAME"
Because of a multi language system we have to switch the FIELDNAMEALIAS based on context setting
I tried to use literal replacer like <%$ECMResource: mgm_matgr %>, but this did not work. Is there a way to change the alias without code behind?
Thanks
Oliver
Hi i have 3 radgrid in my application. It is in Parent page. In child page i have the data's to be inserted into the list(not just a grid insert, but a page with validation controls and all). I'm using jquery popup for that.
After closing the popup window i want to rebind the radgrid in client side using $find("<% =Grid1.ClientID %>").get_masterTableView().rebind();
It is working fine, if we have only one grid. However it is not working if it 3 grids like below:
$find("<% =Grid1.ClientID %>").get_masterTableView().rebind();
$find("<% =Grid2.ClientID %>").get_masterTableView().rebind();
$find("<% =Grid3.ClientID %>").get_masterTableView().rebind();
The above code executes in client side and rebinds only the LAST one.. here that Grid3 rebinds.
FYI : Now i want to achieve it within this jquery popup not with Radwindow manager.
It seems no matter what I do I end up with a space between columns of about 20px or so. I have used the CSS below, which I found in another thread, to remove margins and padding. This help a little but still some space. How can I remove the space between columns? I am very new to html, css, and asp.net so I am struggling a bit.
html .content .t-col,
html .content .t-container {
padding: 0;
margin: 0;
}
html .content {
padding: 0;
margin: 0;
}