or
When I have a look at Web Demos -> UI Widgets Grid -> Row template and select source file -> rowtemplate.cshtml the code is not matching the preview....
Are you shure you are ready to go live with telerik&kendo ui?
When do you think you are ready and stable?
Kind regards,
Peter
@Html.Kendo.Grid(Of CProductionReportViewModel).Name("CreateEditProductionReportGrid").Columns(Sub(col) col.Bound(Function(x) x.ShiftDefinitionId) col.Bound(Function(x) x.ReportDateFrom) col.Bound(Function(x) x.ReportDateTo) col.Bound(Function(x) x.ArticleVariantId) col.Bound(Function(x) x.PacInstructionId) col.Bound(Function(x) x.CustomerId) End Sub).HtmlAttributes(new Dictionary(Of String, Object) From {{"data-bind", "source:ProductionReports"},{"data-editable","inline"},{"data-sortable","true"}})data-editable="inline"
@(Html.Kendo().RadialGauge() .Name("the-gauge") .Pointer(pointer => pointer.Value(Model.InitialGaugeValue)) .Scale(scale => scale .MinorUnit(5) .StartAngle(0) .EndAngle(180) .Min(-20) .Max(20) .Labels(labels => labels .Position(GaugeRadialScaleLabelsPosition.Inside) ) .Ranges(ranges => { ranges.Add().From(-20).To(-5).Color("#c20000"); ranges.Add().From(-5).To(-2).Color("#ffff00"); ranges.Add().From(-2).To(2).Color("#00ff00"); ranges.Add().From(2).To(5).Color("#ffff00"); ranges.Add().From(5).To(20).Color("#c20000"); }) ) )$("#the-gauge").data("kendoRadialGauge").value(data.Margin);@(Html.Kendo().Chart() .Name("the-chart") .ChartArea(ca => ca.Background("Transparent")) .Legend(legend => legend.Position(ChartLegendPosition.Top)) .SeriesDefaults(seriesDefaults => seriesDefaults.Column().Stack(true)) .Series(series => { foreach (var item in Model.StackData) { series.Column(item.Data).Name(item.Name); } }) .SeriesColors("#8080ff", "#ff8080") .CategoryAxis(axis => axis.Categories(Model.StackCategories).MajorGridLines(mgl => mgl.Visible(false))) .ValueAxis(axis => axis.Numeric().Labels(labels => labels.Format("{0} Mrd"))) .Tooltip(tooltip => tooltip.Visible(true).Format("{0}%")) )We we try to accomplish is that we have a static list from the left hand side and we have 2 static parent on the right. User must drag fromof the parent from the left. The only condition is each of the level can only have 1 child node.
e.g.
Allow:
A
|---B
|---C
|---D
It cannot be where C&D is a child of B. Can we prevent this? TIA
A
|---B
|---C
|---D
Kendow UI Tree View