-
Data Grids / Data Management
-
Data Grid
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Grouping
-
Selection
- Focused Row
- Paging
-
Scrolling
-
Columns
-
Master-Detail
-
Data Summaries
-
Drag & Drop
-
Export to PDF
-
Export to Excel
- Appearance
-
Customization
- State Persistence
-
Adaptability
-
Keyboard Navigation
- Right-To-Left Support
-
Tree List
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Selection
- Focused Row
- Paging
-
Columns
- Drag & Drop
- State Persistence
- Adaptability
-
Keyboard Navigation
-
Card View
-
Pivot Grid
- Overview
-
Data Binding
-
Field Management
-
Data Summaries
- Drill Down
- Filtering
-
Scrolling
-
Export to Excel
- Chart Integration
- Customization
- State Persistence
-
Filter Builder
-
-
Data Visualization
-
Charts
- Overview
-
Data Binding
-
Common Concepts
-
Axis
-
Aggregation
-
Tooltips
-
Selection
-
Customization
-
Zooming
-
Export
-
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Funnel and Pyramid Charts
-
Line Charts
- Pareto Chart
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
- Sankey Chart
-
Sparkline Charts
-
Tree Map
-
Gauges
- Overview
-
Runtime update
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
-
Scheduling / Planning
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Appointments
-
Timetable
- Editing
-
Grouping
- Virtual Scrolling
- Drag & Drop
-
Customization
- Adaptability
-
Gantt
- Overview
- Data Binding
-
Filtering
- Sorting
- Strip Lines
- Export to PDF
- Validation
-
Customization
-
-
Messaging
-
WYSIWYG Editor
-
Forms
-
Data Editors
- Overview
-
Common Concepts
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Number Box
- Radio Group
-
Range Selector
- Range Slider
- Slider
- Switch
- Text Area
- Text Box
-
Drop-Downs
- Autocomplete
-
Drop Down Box
-
Select Box
-
Tag Box
-
Lookup
-
Buttons
-
File Upload / File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Popup and Notifications
-
Navigation
- Overview
- Accordion
-
Context Menu
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
-
Stepper
- Pagination
-
List
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
-
-
Interactive Wrappers
-
Sortable
- Resizable
-
-
Progress Indicators
-
Maps
- Overview
-
Map
-
Vector Map
-
Data Binding
- Multiple Layers
-
Markers
- Legend
-
Zooming and Panning
-
Customization
-
-
Localization
Related Demos:
Your search did not match any results.
Diagram - Editing Restrictions
Our Diagram component allows you to restrict edit operations as needed. To prohibit a specific operation, set its corresponding property within the editing property to false.
In this demo, the onRequestEditOperation function implements complex logic to determine whether an operation is allowed. The reason event parameter indicates whether the event is raised by a user action or via a UI update. If a user tries to perform a prohibited action, an error message is displayed.
Was this demo helpful?
Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Backend API
@(Html.DevExtreme().Diagram()
.ID("diagram")
.OnRequestEditOperation("onRequestEditOperation")
.OnRequestLayoutUpdate("onRequestLayoutUpdate")
.CustomShapes(cs => {
cs.Add().Category("items").Type("root").BaseType("octagon").DefaultText("Development");
cs.Add().Category("items").Type("team").BaseType("ellipse").Title("Team").DefaultText("Team Name");
cs.Add().Category("items").Type("employee").BaseType("rectangle").Title("Employee").DefaultText("Employee Name");
})
.Nodes(ns => ns
.DataSource(d => d
.Array()
.Key("ID")
.Data(Model)
)
.KeyExpr("ID")
.TextExpr("Name")
.TypeExpr("Type")
.ParentKeyExpr("ParentID")
.StyleExpr(new JS("itemStyleExpr"))
.AutoLayout(al => al
.Type(DiagramDataLayoutType.Tree)
)
)
.ContextToolbox(t => t
.ShapeIconsPerRow(2)
.Width(100)
.Shapes(new[] { "team", "employee" })
)
.Toolbox(t => t
.ShapeIconsPerRow(2)
.Groups(g => g
.Add().Title("Items").Shapes(new[] { "team", "employee" })
)
)
.PropertiesPanel(pp => pp
.Visibility(DiagramPanelVisibility.Disabled)
)
)
<script type="text/javascript">
function showToast(text) {
DevExpress.ui.notify({
position: { at: "top", my: "top", of: "#diagram", offset: "0 4" },
message: text,
type: "warning",
delayTime: 2000
});
}
function onRequestLayoutUpdate(e) {
for(var i = 0; i < e.changes.length; i++) {
if(e.changes[i].type === 'remove')
e.allowed = true;
else if(e.changes[i].data.ParentID !== undefined && e.changes[i].data.ParentID !== null)
e.allowed = true;
}
}
function onRequestEditOperation(e) {
var diagram = $("#diagram").dxDiagram("instance");
if(e.operation === "addShape") {
if(e.args.shape.type !== "employee" && e.args.shape.type !== "team") {
if(e.reason !== "checkUIElementAvailability")
showToast("You can add only a 'Team' or 'Employee' shape.");
e.allowed = false;
}
}
else if(e.operation === "deleteShape") {
if(e.args.shape.type === "root") {
if(e.reason !== "checkUIElementAvailability")
showToast("You cannot delete the 'Development' shape.");
e.allowed = false;
}
if(e.args.shape.type === "team") {
for(var i = 0; i < e.args.shape.attachedConnectorIds.length; i++) {
if(diagram.getItemById(e.args.shape.attachedConnectorIds[i]).toId != e.args.shape.id) {
if(e.reason !== "checkUIElementAvailability")
showToast("You cannot delete a 'Team' shape that has a child shape.");
e.allowed = false;
break;
}
}
}
}
else if(e.operation === "resizeShape") {
if(e.args.newSize.width < 1 || e.args.newSize.height < 0.75) {
if(e.reason !== "checkUIElementAvailability")
showToast("The shape size is too small.");
e.allowed = false;
}
}
else if(e.operation === "changeConnection") {
var shapeType = e.args.newShape && e.args.newShape.type;
if(shapeType === "root" && e.args.connectorPosition === "end") {
if(e.reason !== "checkUIElementAvailability")
showToast("The 'Development' shape cannot have an incoming connection.");
e.allowed = false;
}
if(shapeType === "employee" && e.args.connectorPosition === "start")
e.allowed = false;
}
else if(e.operation === "changeConnectorPoints") {
if(e.args.newPoints.length > 2) {
if(e.reason !== "checkUIElementAvailability")
showToast("You cannot add points to a connector.");
e.allowed = false;
}
}
else if(e.operation === "beforeChangeShapeText") {
if(e.args.shape.type === "root") {
if(e.reason !== "checkUIElementAvailability")
showToast("You cannot change the 'Development' shape's text.");
e.allowed = false;
}
}
else if(e.operation === "changeShapeText") {
if(e.args.text === "") {
if(e.reason !== "checkUIElementAvailability")
showToast("A shape text cannot be empty.");
e.allowed = false;
}
}
else if(e.operation === "beforeChangeConnectorText") {
e.allowed = false;
}
}
function itemStyleExpr(obj) {
if(obj.Type === "root")
return { "fill": "#ffcfc3" };
else
if(obj.Type === "team")
return { "fill": "#b7e3fe" };
else
return { "fill": "#bbefcb" };
}
</script>
using System.Web.Mvc;
using DevExtreme.MVC.Demos.Models.SampleData;
namespace DevExtreme.MVC.Demos.Controllers {
public class DiagramController : Controller {
public ActionResult OperationRestrictions() {
return View(SampleData.OrgItemsRestrictions);
}
}
}
#diagram {
height: 600px;
}