Im a new user to DX, and im still trying to get a grip with the controls.
Is the CallbackPanel dx's equivalent of the ASP Ajax updatepanel? whats the basic difference between CallbackPanel and Callback?
Also, what is the difference between: dxrp:PanelContent vs dxp:PanelContent
In the following code, I cant seem to see a difference of using one vs. the other
<dxrp:ASPxRoundPanel ID="ASPxRoundPanel1" runat="server" Width="200px" ShowHeader
="False">
<PanelCollection
>
<dxp:PanelContent runat
="server">
<dxcp:ASPxCallbackPanel ID="ASPxCallbackPanel1" runat="server" Width
="200px">
<PanelCollection
>
<dxp:PanelContent runat
="server">
<dxe:ASPxLabel ID="ASPxLabel1" runat="server" Text
="ASPxLabel">
</dxe:ASPxLabel
>
</dxp:PanelContent
>
</PanelCollection
>
</dxcp:ASPxCallbackPanel
>
</dxp:PanelContent>
</PanelCollection
>
</dxrp:ASPxRoundPanel
>
Also,
is the logic above correct, cause I was thinking in terms of ASP.NET Ajax, where the UpdatePanel would go outside of a Panel...but when I tried that for the case above, it was giving me all sorts of errors.