<
asp:ToolkitScriptManager
ID
=
"ToolkitScriptManager1"
runat
=
"server"
>
</
asp:ToolkitScriptManager
>
<
telerik:RadPanelBar
ID
=
"RadPanelBar1"
runat
=
"server"
ExpandMode
=
"MultipleExpandedItems"
>
<
ExpandAnimation
Type
=
"OutQuint"
Duration
=
"3000"
/>
<
Items
>
<
telerik:RadPanelItem
runat
=
"server"
Expanded
=
"True"
Selected
=
"True"
Text
=
"Step 1"
>
<
Items
>
<
telerik:RadPanelItem
runat
=
"server"
Value
=
"BalanceStep1"
>
<
ItemTemplate
>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
<
asp:Button
ID
=
"Button1"
runat
=
"server"
Text
=
"Button"
OnClick
=
"Button1_Click"
/>
</
ItemTemplate
>
</
telerik:RadPanelItem
>
</
Items
>
</
telerik:RadPanelItem
>
<
telerik:RadPanelItem
runat
=
"server"
Expanded
=
"False"
Selected
=
"False"
Enabled
=
"false"
Text
=
"Step 2"
>
<
Items
>
<
telerik:RadPanelItem
runat
=
"server"
Value
=
"BalanceStep1"
>
<
ItemTemplate
>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
hi<
br
/>
</
ItemTemplate
>
</
telerik:RadPanelItem
>
</
Items
>
</
telerik:RadPanelItem
>
</
Items
>
<
ExpandAnimation
/>
</
telerik:RadPanelBar
>
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
RadPanelBar1.Items(0).Selected = False
RadPanelBar1.Items(0).Expanded = False
RadPanelBar1.Items(1).Enabled = True
RadPanelBar1.Items(1).Selected = True
RadPanelBar1.Items(1).Expanded = True
End Sub
Hi,
I'm currently using asp:treeview and considering changing to RadTreeView. In order to avoid lots of rework I like to know whether there is an equivalent to the PopulateOnDemand property of the asp:treeview node in the RadTreeView.
When this property is set to True (in code behind whilst manually loading the tree-nodes) the treeview will add the expand image ('+' sign), when clicked, the server side OnTreeNodePopulate event will be called. New nodes can then be added. See also:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.treenode.populateondemand.aspx
tx
Hello to all
I have a radtab, tabs are,
1.General
2.Entries
In the general tab, I have radgrid in which u can add,edit,delete all the data.
In radgrid my columns are
Particulars Type Length Show
Document Numeric 10 true
Document1 Alphanumeric 15 true
And in the entries tab
Two labels generate dynamically and there text are
Document and Document1 and two textbox one is numeric textbox and other is Alphanumeric text box validated by filter textbox.
On updating data ,data save successfully.
Now the problem is that, on the retrieval time I m using datalist to retrive data, when I use add new in radgrid, Entries tab is not updating means new lable and textbox is not generated in entries tab and if user update the value of old textbox and then change the tab and again click on entries tab textbox data is removing
So what is the solution for that