Skip to content

Commit 474c754

Browse files
author
pipeline
committed
bug(EJ2-4805): Hide the multiselect and drag and drop sample
1 parent 4ed294e commit 474c754

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/treeview/checkbox.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div id="description">
99
<p>The <code>TreeView</code> component can be render with checkbox on the left side of each tree node. This allows the user to check more than one nodes, and this can be enabled by <code>showCheckBox</code> property.</p>
1010
<p>In this demo, the TreeView was populated with checkbox enabled.</p>
11-
<p>For more information, you can refer the <a href="../documentation/treeview/checkboxes.html" target="_blank">Checkboxes</a> section from the documentation.</p>
11+
<p>For more information, you can refer the <a href="../documentation/treeview/checkbox.html" target="_blank">Checkboxes</a> section from the documentation.</p>
1212
</div>
1313
<style>
1414
.control_wrapper {

src/treeview/dragdrop.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div id="description">
99
<p>The <code>TreeView</code> component allows the user to drag any node and drop the child or sibling of any other nodes. This can be enabled by <code>allowDragAndDrop</code> property.</p>
1010
<p>In this demo, the TreeView was enabled with multiple selection and drag and drop, so you can drag more than one node and drop.</p>
11-
<p>For more information, you can refer the <a href="../documentation/treeview/drag-and-drop.html" target="_blank">Drag and Drop</a> section from the documentation.</p>
11+
<p>For more information, you can refer the <a href="../documentation/treeview/drag-drop.html" target="_blank">Drag and Drop</a> section from the documentation.</p>
1212
</div>
1313
<style>
1414
.control_wrapper {

src/treeview/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
<div id="description">
1717
<p>The <code>TreeView</code> component has the option to customize the node structure through the <code>nodeTemplate</code> property, so the tree node can be formed with any custom structure.</p>
1818
<p>In this demo, the node was formed with employee's image, name and designation.</p>
19-
<p>For more information, you can refer the <a href="../documentation/treeview/templates.html" target="_blank">Templates</a> section from the documentation.</p>
19+
<p>For more information, you can refer the <a href="../documentation/treeview/template.html" target="_blank">Templates</a> section from the documentation.</p>
2020
</div>

src/treeview/treeview.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const treeAppRoutes: Object[] = [
2222
{ path: ':theme/treeview/checkbox', component: CheckboxTreeViewComponent, name: 'Checkbox', order: '01', category: 'TreeView' },
2323
{ path: ':theme/treeview/editing', component: EditTreeViewComponent, name: 'Node Editing', order: '01', category: 'TreeView' },
2424
{ path: ':theme/treeview/multiselect', component: MultiselectTreeViewComponent, name: 'Multiple Selection', order: '01', category: 'TreeView', hideOnDevice: true },
25-
{ path: ':theme/treeview/dragdrop', component: DragdropTreeViewComponent, name: 'Drag and Drop', order: '01', category: 'TreeView' },
25+
{ path: ':theme/treeview/dragdrop', component: DragdropTreeViewComponent, name: 'Drag and Drop', order: '01', category: 'TreeView', hideOnDevice: true },
2626
{ path: ':theme/treeview/template', component: TemplateTreeViewComponent, name: 'Template', order: '01', category: 'TreeView' },
2727
{ path: ':theme/treeview/rtl', component: RTLTreeViewComponent, name: 'RTL', order: '01', category: 'TreeView' },
2828
{ path: ':theme/treeview/plaindata', component: PlainTreeViewComponent, name: 'Local Data', order: '02', category: 'Data Binding' },

0 commit comments

Comments
 (0)