This is a migrated thread and some comments may be shown as answers.

RadPanelBar and UserControls

2 Answers 115 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
fatma
Top achievements
Rank 1
fatma asked on 25 Nov 2008, 07:04 PM
I am using panel bar with 2 items. Each item has user controls.
First panel bar item has a user control with a radgridview.
Second panel bar item has a user control with a formveiw.
some of the control in Formview reads values from the radgridview.

when insert/update occur with the radgiridview in usercontrol that is in  Panelbaritem1,
I need to formveiw to be updated in usercontorl that is in Panelbaritem2.

Thanks for all your help.

2 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 26 Nov 2008, 09:23 AM
Hi fatma,

I am afraid that the provided information is not enough for us to determine the reason for the problem. Please open a support ticket and send us your application so we can check it - we will do our best to help.

Kind regards,
Paul
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
fatma
Top achievements
Rank 1
answered on 26 Nov 2008, 11:07 PM
Hello,

http://www.telerik.com/support/home.aspx
 takes me the support page, but there wasn't any link to submit or open a ticket.

I may try to explain my problem incase.

my aspx code for RadPanelbar is below

 

<telerik:RadPanelBar ID="RadPanelBar2" runat="server" Skin="Web20"

 

 

 

Width="700px" OnItemClick="RadPanelBar2_ItemClick" PersistStateInCookie="True">

 

 

 

<CollapseAnimation Duration="100" Type="None" />

 

 

 

<Items>

 

 

 

<telerik:RadPanelItem runat="server" Text="Evaluation - System Outcomes">

 

 

 

<Items>

 

 

 

<telerik:RadPanelItem runat="server">

 

 

 

<ItemTemplate>

 

 

 

<div style="text-align: center">

 

 

 

<div style="text-align: center">

 

 

 

<table>

 

 

 

<tr>

 

 

 

<td style="width: 100px; text-align: left">

 

 

 

<uc13:ucEvalSystemOutcomes ID="UcEvalSystemOutcomes1" runat="server" />

 

 

 

</td>

 

 

 

</tr>

 

 

 

</table>

 

 

 

</div>

 

 

 

</div>

 

 

 

</ItemTemplate>

 

 

 

</telerik:RadPanelItem>

 

 

 

</Items>

 

 

 

</telerik:RadPanelItem>

 

 

 

<telerik:RadPanelItem runat="server" Text="Evaluation - Community Outcomes">

 

 

 

<Items>

 

 

 

<telerik:RadPanelItem runat="server" Value="1">

 

 

 

<ItemTemplate>

 

 

 

<div style="text-align: center">

 

 

 

<table>

 

 

 

<tr>

 

 

 

<td style="width: 100px; text-align: left">

 

 

 

<uc14:ucEvalCommnOutcomes ID="UcEvalCommnOutcomes1" runat="server" />

 

 

 

</td>

 

 

 

</tr>

 

 

 

</table>

 

 

 

</div>

 

 

 

</ItemTemplate>

 

 

 

</telerik:RadPanelItem>

 

 

 

</Items>

 

 

 

</telerik:RadPanelItem>

 

 

 

</Items>

 

 

 

<ExpandAnimation Duration="100" Type="None" />

 

 

 

</telerik:RadPanelBar>

UserControl UcEvalSystemOutcomes has a radgrid that performs inserts and updates.

UserControl UcEvalCommnOutcomes has a formview that displays some data from the RadGrid in usercontorl  UcEvalSystemOutcomes.

When I insert or update a data with RadGrid in UserControl UcEvalSystemOutcomes, I can't see the newly inserted/updated data in the second RadPanelItem that has UserControl UcEvalCommnOutcomes. I have to reload the page. 

I would like user to enter data in the first RadPanelItem and see/use that data in the second RadPanelItem.

Thanks,

 

 

Tags
PanelBar
Asked by
fatma
Top achievements
Rank 1
Answers by
Paul
Telerik team
fatma
Top achievements
Rank 1
Share this question
or