我的项目中有 FormTemplate 类
public class FormTemplate : BaseEntity
{
public virtual string Name { get; set; }
public virtual DateTime? DateCreation { get; set; }
public virtual FormTemplateGroup Group { get; set; }
public virtual bool Active { get; set; }
public virtual FormTemplateStatus Status { get; set; }
public virtual IList<QuestionBlock> QuestionBlocks { get; set; }
public virtual bool IsFreeze { get; set; }
}
我使用 MVC jqGrid http://mvcjqgrid.skaele.it/Home/Formatters
在页面上显示 FormTemplates 列表
@(Html.Grid("Grid")
.SetCaption("List")
.AddColumn(new Column("Name").SetLabel("Name"))
.AddColumn(new Column("GroupFor").SetLabel("Group"))
.AddColumn(new Column("DateCreation").SetLabel("Date"))
.AddColumn(new Column("Status").SetLabel("Status")).SetSortOnHeaderClick(false)
.AddColumn(new Column("Id").SetLabel(" ").SetCustomFormatter("buttonize").SetWidth(220).SetAlign(Align.Center))
.SetAutoWidth(false)
.SetRowNumbers(true)
.SetUrl(Url.Action("FormTemplateGridData"))
.SetAutoWidth(true)
.SetRowNum(10)
.SetRowList(new[] { 5, 10, 15, 20 })
.SetViewRecords(true)
.SetPager("Pager"))
我没有IsFreeze
在我的页面上显示属性的值,但我需要IsFreeze == true
为每个 FormTemplate 添加激活按钮和取消激活按钮。
我试图添加检查功能buttonize
function buttonize(cellvalue, options, rowobject) {
var result = '<input type="button" value="Edit" onclick="editTemplate(' + options.rowId + ')">' + ' '
+ '<input type="button" value="Delete" onclick="deleteTemplate(' + options.rowId + ')">' + ' ';
if (isFreezeTemplate(rowobject[4])) {
result += '<input type="button" value="Activate" onclick="activateTemplate(' + options.rowId + ')">';
}
else {
result += '<input type="button" value="Deativate" onclick="deactivateTemplate(' + options.rowId + ')">';
}
return result;
}
新增功能
function isFreezeTemplate(id) {
var check = $.post('@Url.Action("IsFreezeFormTemplate")', { id: id });
return check;
}
并添加到控制器中
[HttpPost]
public bool IsFreezeFormTemplate(int id)
{
var formTemplate =
FormTemplateRepository.Query()
.Where(ft => ft.Id == id)
.SingleOrDefault();
if (formTemplate.IsFreeze == true) return true;
return false;
}
但我只获得页面上所有 FormTemplates 的激活按钮。
如何解决?