jqgrid

jqgrid & Lib.Web.Mvc.JQuery.JqGrid.DataAnnotations:how hide column?

我有这个 jqgrid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
var grid = new JqGridHelper<VisualisationModel>(
   "gridVisualizzazioni",
    caption: null,
    dataType: JqGridDataTypes.Json,      
    methodType: JqGridMethodTypes.Post,
    pager:true,
    sortingName:"IndicatoreVisualizzazioniPk",
    sortingOrder: JqGridSortingOrders.Asc,
    url: Url.Action("LoadGrid", new {
                                      indicatorePk = Model.IndicatorePk
                                    }),
    autoWidth: true,
    viewRecords: true,
    loadComplete:"SetCellBackColor");

在我的模型中,我创建了一些列...

特别是

1
2
3
[Required]
[JqGridColumnFormatter(JqGridColumnPredefinedFormatters.Integer)]
public int AggregazioniDatiId { get; set; }

是否可以通过DataAnnotation隐藏jqGrid中的上述列?

我试过

1
[ScaffoldColumn(false)]

但在 colModel 中该列不出现,然后我的 jquery 代码不起作用

1
2
3
var grid = $("#gridVisualizzazioni");
var selRowId = grid.jqGrid('getGridParam', 'selrow');
var celValue = grid.jqGrid ('getCell', selRowId, 'AggregazioniDatiId');

提前致谢。

萨拉


试试这个:

1
[HiddenInput(DisplayValue = false)]