Is is possible to have more than one editor on a page?
When I add 3 like in the example below I can only interact with the first one.
By the way, this is a great new control, thank you for adding it.
01.
<
ScrollViewer
>
02.
<
StackPanel
>
03.
<
Grid
Margin
=
"0,4"
>
04.
<
Grid.RowDefinitions
>
05.
<
RowDefinition
Height
=
"Auto"
/>
06.
<
RowDefinition
Height
=
"*"
/>
07.
</
Grid.RowDefinitions
>
08.
<
TextBlock
Grid.Row
=
"0"
Text
=
"Custom PowerShell"
/>
09.
<
telerik:RadSyntaxEditor
x:Name
=
"PsEditor"
Grid.Row
=
"1"
MinHeight
=
"400"
/>
10.
</
Grid
>
11.
12.
<
Grid
Margin
=
"0,4"
>
13.
<
Grid.RowDefinitions
>
14.
<
RowDefinition
Height
=
"Auto"
/>
15.
<
RowDefinition
Height
=
"*"
/>
16.
</
Grid.RowDefinitions
>
17.
<
TextBlock
Grid.Row
=
"0"
Text
=
"Custom JavaScript"
/>
18.
<
telerik:RadSyntaxEditor
x:Name
=
"JsEditor"
Grid.Row
=
"1"
MinHeight
=
"400"
/>
19.
</
Grid
>
20.
21.
<
Grid
Margin
=
"0,4"
>
22.
<
Grid.RowDefinitions
>
23.
<
RowDefinition
Height
=
"Auto"
/>
24.
<
RowDefinition
Height
=
"*"
/>
25.
</
Grid.RowDefinitions
>
26.
<
TextBlock
Grid.Row
=
"0"
Text
=
"Custom CSS"
/>
27.
<
telerik:RadSyntaxEditor
x:Name
=
"CssEditor"
Grid.Row
=
"1"
MinHeight
=
"400"
/>
28.
</
Grid
>
29.
</
StackPanel
>
30.
</
ScrollViewer
>