如何在小部件中显示ng-model数据

时间:2019-04-14 18:06:45

标签: widget feather

我有一个从multiselect下拉列表中填充的ng模型,其中有键值对,我想在小部件中显示选定的键值对

我创建了一个具有键值对的ng模型,当用户选择多个值时会显示multiselect下拉列表,它为我提供了对象引用设置为null错误

DesignerView.Simple.cshtml
  <select multiple="multiple" id="statreport-selector" ng-model="properties.SelectedReports.PropertyValue" class="form-control">
                <option disabled>Select a stat...</option>
                <option ng-repeat="report in reports" value="{{report.Title}},{{report.ReportName}}">{{report.Title}}</option>
            </select>
Index.cshtml
@model SitefinityWebApp.Mvc.ViewModels.StatsReportViewModel
@using Telerik.Sitefinity.Frontend.Mvc.Helpers
@using Telerik.Sitefinity.Services

@{
    var reports = Model.SelectedReports;
}

需要遍历报告并在小部件中显示选定的键值对

0 个答案:

没有答案