getConnectionByModelUid

Returns the connection corresponding to the model with the specified uid value.

Parameters

uid String

The model uid value.

Returns

kendo.dataviz.diagram.Connection the connection corresponding to the model.

Example - get connection by data item uid

<button id="getConnBtn">Select third connection</button>
<div id="diagram"></div>
<script>
  $("#getConnBtn").on("click", function(){
    var diagram = $("#diagram").getKendoDiagram();
    var dataItem = diagram.connectionsDataSource.at(2);
    var conn = diagram.getConnectionByModelUid(dataItem.uid);
    diagram.select(conn);
  });
  var serviceRoot = "https://demos.telerik.com/kendo-ui/service";

  var shapesDataSource = {
    batch: false,
    transport: {
      read: {
        url: serviceRoot + "/DiagramShapes",
        dataType: "jsonp"
      }
    },
    schema: {
      model: {
        id: "id",
        fields: {
          id: { from: "Id", type: "number", editable: false }
        }
      }
    }
  };

  var connectionsDataSource = {
    batch: false,
    transport: {
      read: {
        url: serviceRoot + "/DiagramConnections",
        dataType: "jsonp"
      }
    },
    schema: {
      model: {
        id: "id",
        fields: {
          id: { from: "Id", type: "number", editable: false },
          from: { from: "FromShapeId", type: "number" },
          to: { from: "ToShapeId", type: "number" }
        }
      }
    }
  };

  $("#diagram").kendoDiagram({
    layout: {
      type: "layered"
    },
    dataSource: shapesDataSource,
    connectionsDataSource: connectionsDataSource,
    shapeDefaults: {
      content: {
        template: "#= dataItem.JobTitle #"
      }
    }
  });
</script>
In this article