You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: controls/tabstrip/tabs/loading-tabs-from-xml.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,22 +12,19 @@ position: 7
12
12
13
13
You can easily load the tabs of a tab strip from an XML source, as long as the source conforms to the following structure:
14
14
15
-
1. The top level consists of a single node, called <TabStrip>. This node can include attributes for the **RadTabStrip** properties:
15
+
1. The top level consists of a single node, called `TabStrip`. This node can include attributes for the RadTabStrip properties:
16
16
17
-
````XML
18
-
<?xml version="1.0" encoding="utf-16"?>
17
+
````ASP.NET
19
18
<TabStrip
20
19
SelectedIndex="0"
21
20
MultiPageID="RadMultiPage1"
22
21
Skin="Vista" >
23
-
24
-
...
25
22
</TabStrip>
26
23
````
27
24
28
-
1. Immediately below the <TabStrip> node is a set of <Tab> nodes, where each node represents a root-level tab. The attributes of the <Tab> node correspond to the properties and custom attributes of the tab. Any child tabs are nested within the <Tab> node:
25
+
2. Immediately below the `TabStrip` node is a set of `Tab` nodes, where each node represents a root-level tab. The attributes of the `Tab` node correspond to the properties and custom attributes of the tab. Any child tabs are nested within the `Tab` node:
0 commit comments