Rank: Newbie Groups: Member
Joined: 2/19/2010 Posts: 6
|
Hi,
I did call EO Call back Panel form Client Side. I am filling data in the Text boxes which are Server side text box on CallbackPanel_Execute call . But it is not not filling.
Here is my code :-
Private Sub CallbackPanel_Execute(ByVal sender As Object, ByVal e As EO.Web.CallbackEventArgs) Handles CallbackPanel.Execute Dim eventTarget As String = CallbackPanel.LastTrigger.EventTarget
txt1.Text = "Kapil"
End Sub
Thanks in advance...
-Kapil
|
Rank: Newbie Groups: Member
Joined: 2/19/2010 Posts: 6
|
The aspx code I am using is :
<eo:CallbackPanel ID="CallbackPanelAppraisal" runat="server" AutoDisableContents="True" BorderWidth="0" TabIndex="47" Width="100%" >
<eo:Grid ID="GDAppraisal" runat="server" BorderColor="#828790"> . . . . </eo:Grid>
</eo:CallbackPanel>
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will need to put whatever you need to update inside the CallbackPanel.
Thanks
|