Hi from France,
I've got problem with this case to using RadAjaxManager (see picture)
I've got 3 repeater For : Section, GrpRubrique and Rubrique, all is nested.
my HTML for "section" part is <details><summary>, sample :
All radNumericTextBox not have autoPostback=True (set by codeBehind)
i have dependence by formules must calculate in codeBehind, sample :
Rubrique6 = TVA * (Rubrique1 + Rubrique3 + Rubrique4) and when user change value in Rubrique1,3 or 4 i must postback, calculate and update Rubrique6
Ajaxify All Repeater, with arounded Panel work but, close all my details HTML :
example, if i want to add only updated control rubrique6, in my code behind when radNumericTextBox Binding, his ID is always "rnt" and doesn't work :
I've got problem with this case to using RadAjaxManager (see picture)
I've got 3 repeater For : Section, GrpRubrique and Rubrique, all is nested.
my HTML for "section" part is <details><summary>, sample :
<
asp:Repeater
ID
=
"rptSection"
runat
=
"server"
ClientIDMode
=
"AutoID"
>
<
ItemTemplate
>
<
details
>
<
summary
>
<
h4
>Title section</
h4
>
<
div
>
<asp:repeater id=rptGrpRubrique...
...
<telerik:RadNumericTextBox ID="rnt" ClientIDMode="AutoID" ...
All radNumericTextBox not have autoPostback=True (set by codeBehind)
i have dependence by formules must calculate in codeBehind, sample :
Rubrique6 = TVA * (Rubrique1 + Rubrique3 + Rubrique4) and when user change value in Rubrique1,3 or 4 i must postback, calculate and update Rubrique6
Ajaxify All Repeater, with arounded Panel work but, close all my details HTML :
<
telerik:AjaxSetting
AjaxControlID
=
"GlobalPanel"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"GlobalPanel"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
example, if i want to add only updated control rubrique6, in my code behind when radNumericTextBox Binding, his ID is always "rnt" and doesn't work :
Dim
ctrl
As
New
Telerik.Web.UI.AjaxUpdatedControl
ctrl.ControlID = radTextBox.ID
'ctrl.ControlID = radTextBox.UniqueID
'ctrl.ControlID = radTextBox.ClientID
ram.AjaxSettings.Item(0).UpdatedControls.Add(ctrl)
i've got no solution since many days...
Thanks for your help.