Uncaught Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: Impossible d'annuler l'inscription de UpdatePanel avec l'ID '', car il n'était pas inscrit auprès de ScriptManager. Cela peut se produire si UpdatePanel a été supprimé de l'arborescence du contrôle et rajouté ensuite, ce qui n'est pas pris en charge.
Nom du paramètre : updatePanel
Sys.WebForms.PageRequestManager._endPostBackTelerik.Web.UI.WebResource.axd:15
Sys.WebForms.PageRequestManager._parseDeltaTelerik.Web.UI.WebResource.axd:15
Sys.WebForms.PageRequestManager._onFormSubmitCompletedTelerik.Web.UI.WebResource.axd:15
(anonymous function)Telerik.Web.UI.WebResource.axd:6
(anonymous function)Telerik.Web.UI.WebResource.axd:6
Sys.Net.WebRequest.completedTelerik.Web.UI.WebResource.axd:6
_onReadyStateChange
ChartSeries objSeriesActual =
new
ChartSeries(
"Actual"
, ChartSeriesType.Bar);
foreach
(FinanceData objFinanceData
in
actualFinanceDataList)
{
objSeriesActual.AddItem(objFinanceData.Revenue, objFinanceData.Revenue.ToString());
}
ChartSeries objSeriesBudget =
new
ChartSeries(
"Budget"
, ChartSeriesType.Bar);
foreach
(FinanceData objFinanceData
in
budgetFinanceDataList)
{
objSeriesBudget.AddItem(objFinanceData.Revenue, objFinanceData.Revenue.ToString());
}
revenueFinanceChart.Series.Add(objSeriesActual);
revenueFinanceChart.Series.Add(objSeriesBudget);
revenueFinanceChart.DataBind();
(
function
($) {
$(document).ready(
function
() {
$(document).bind(
'keydown'
,
'ctrl+s'
,
function
() {
$(
"div#RadToolBar .rtbOut"
).click();
return
false
;
});
});
})(jQuery);
<
div
class
=
"save-button"
>
<
telerik:radtoolbar
id
=
"radToolBar"
runat
=
"server"
cssclass
=
"toolbar"
>
<
items
>
<
telerik:radtoolbarbutton
navigateurl
=
"~/default.aspx"
postback
=
"false"
text
=
"Goto Default Page"
causesvalidation
=
"false"
/>
</
items
>
</
telerik:radtoolbar
>
</
div
>
Why does my horizontal and vertical menus which use a background image and are totally controlled by the CSS settings work fine in IE 8, and Firefox and Safari
While in Chrome there is no images, no text formatting - just blue underlined links? The sub menus do slide in and out but they are also just boring blue links?
Where do I hit Chrome to make it behave like the others?
<
telerik:RadGrid
runat
=
"server"
ID
=
"RadGrid1"
AutoGenerateColumns
=
"true"
DataSourceID
=
"SqlDataSource1"
AllowSorting
=
"true"
OnItemDataBound
=
"RadGrid1_ItemDataBound"
OnItemCreated
=
"RadGrid1_ItemCreated"
>
<
MasterTableView
DataKeyNames
=
"Storename"
CommandItemDisplay
=
"Top"
>
<
NestedViewSettings
DataSourceID
=
"SqlDataSource2"
>
<
ParentTableRelation
>
<
telerik:GridRelationFields
MasterKeyField
=
"CustomerID"
DetailKeyField
=
"CustomerID"
/>
</
ParentTableRelation
>
</
NestedViewSettings
>
<
NestedViewTemplate
>
<
telerik:RadGrid
runat
=
"server"
ID
=
"RadGrid2"
DataSourceID
=
"SqlDataSource2"
OnItemDataBound
=
"RadGrid2_ItemDataBound"
AllowSorting
=
"true"
AutoGenerateColumns
=
"false"
>
<
MasterTableView
DataKeyNames
=
"Orders"
>
</
MasterTableView
>
</
telerik:RadGrid
>
</
NestedViewTemplate
>
</
telerik:RadGrid
>
Hi,
I am debugging a lot the last days and I was wondering if it's normal that VS2010 get flooded by script blocks.
Just run the following markup without any code behind in debug and watch your project-explorer.
After a few seconds the view is flooded with script blocks ... it seems that the same script blocks from the controls get registered again on every ajax request. Is there a way to prevent that ?
My VS 2010 sometimes needs 2 minutes to stop debugging and I can watch it removing the script blocks which is a real pain in the a..
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"Timer1"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"grid1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
<
asp:Timer
ID
=
"Timer1"
runat
=
"server"
Enabled
=
"true"
Interval
=
"1000"
>
</
asp:Timer
>
<
div
>
<
telerik:radgrid
ID
=
"grid1"
runat
=
"server"
></
telerik:radgrid
>
</
div
>
</
form
>
protected
void
listEntity_ItemCreated(
object
sender, RadListBoxItemEventArgs e)
{
RadListBox listBox = (RadListBox)sender;
RadListBoxItem item = e.Item;
LMEntityEntity entity =
new
LMEntityEntity(
int
.Parse(item.Value));
RadBinaryImage entityLogo = (RadBinaryImage)item.FindControl(
"entityLogo"
);
if
(entity.Logo.Length > 0)
entityLogo.DataValue = entity.Logo;
else
entityLogo.ImageUrl =
"~/images/faction-icons/"
+ _factionName.ToLower() +
".jpg"
;
item.DataBind();
UpdatePointTotal(listBox);
}
<
telerik:RadListBox
ID
=
"upgradesListBox"
runat
=
"server"
width
=
"400px"
DataKeyField
=
"LMEntityIdChild"
Height
=
"170px"
CssClass
=
"list-box"
Skin
=
"Black"
AllowDelete
=
"False"
DataValueField
=
"LMEntityIdChild"
AllowTransfer
=
"True"
TransferToID
=
"listEntityListBox"
AutoPostBack
=
"false"
AllowReorder
=
"False"
onitemdatabound
=
"upgrades_ItemDataBound"
AllowTransferDuplicates
=
"True"
AllowTransferOnDoubleClick
=
"True"
AutoPostBackOnTransfer
=
"True"
ontransferring
=
"upgrades_Transferring"
TransferMode
=
"Copy"
>
<
ItemTemplate
>
<
telerik:RadBinaryImage
id
=
"logoImage"
runat
=
"server"
CssClass
=
"list-box-icon"
DataValue='<%# (int)(Eval("LMEntity.Logo.Length"))>0?Eval("LMEntity.Logo"):null %>' height="20px" ResizeMode="Fit" width="20px" />
<
span
class
=
"list-box-text"
><
asp:Label
ID
=
"itemLabel"
runat
=
"server"
></
asp:Label
></
span
>
</
ItemTemplate
>
<
ButtonSettings
ShowTransferAll
=
"False"
TransferButtons
=
"TransferFrom"
/>
</
telerik:RadListBox
>