Initial Commit Update Telerik
This commit is contained in:
45
LPWeb20/RichtextEditor/plugins/mobilesidebar/maincontrol.xml
Normal file
45
LPWeb20/RichtextEditor/plugins/mobilesidebar/maincontrol.xml
Normal file
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jsml xmlns="http://cutesoft.net/jsml"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://cutesoft.net/jsml ../core/jsml.xsd">
|
||||
|
||||
|
||||
<panel jsml-class="sidebar_maincontrol" jsml-base="sidebarmenu" dock="fill">
|
||||
<panel jsml-base="sidebarmenuitem" text="Back">
|
||||
<attach name="click">
|
||||
sidebar.back();
|
||||
</attach>
|
||||
</panel>
|
||||
|
||||
<panel jsml-base="sidebarmenuitem" text="Cut" imagename="cut">
|
||||
<attach name="click">
|
||||
editor._mobileclipboard=editor.GetPointNode().GetHtmlCode();
|
||||
editor.GetPointNode().RemoveNode(true);
|
||||
sidebar.collapse();
|
||||
</attach>
|
||||
</panel>
|
||||
<panel jsml-base="sidebarmenuitem" text="Copy" imagename="copy">
|
||||
<attach name="click">
|
||||
editor._mobileclipboard=editor.GetPointNode().GetHtmlCode();
|
||||
sidebar.collapse();
|
||||
</attach>
|
||||
</panel>
|
||||
<panel jsml-base="sidebarmenuitem" text="Delete" imagename="delete">
|
||||
<attach name="click">
|
||||
editor.GetPointNode().RemoveNode(true);
|
||||
sidebar.collapse();
|
||||
</attach>
|
||||
</panel>
|
||||
|
||||
<panel jsml-base="sidebarmenuitem" text="Properties" imagename="properties">
|
||||
<attach name="click">
|
||||
editor.ShowPropertiesDialog(editor.GetPointNode())
|
||||
sidebar.collapse();
|
||||
</attach>
|
||||
</panel>
|
||||
|
||||
</panel>
|
||||
|
||||
<panel jsml-base="sidebar_maincontrol" />
|
||||
|
||||
|
||||
</jsml>
|
||||
Reference in New Issue
Block a user