0

我有这个 jqGrid:

$("#list").jqGrid({
    url: '/modulos/carga/cargaServiciosTarifa.ashx',
    datatype: 'xml',
    mtype: 'GET',
    colNames: ['Tipo_Servicio', 'Cantidad','Unidad'],
    colModel: [
        {name: 'Tipo_Servicio', index: 'TSI_TS_Id', width: 100, align: 'center',
            edittype: 'select', editable: true, sortable: true,
            editrules: { edithidden: false, required: true }, editoptions: {
                size: 1,
                dataUrl: '/modulos/carga/cargaServiciosTarifa.ashx?oper=getServicios'
            }},
        { name: 'Cantidad', index: 'TSI_Cantidad', width: 100, align: 'center',
            editable: true, edittype: 'select', editoptions: {
                value: "1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12" },
            editrules: { edithidden: true }, sortable: true },
        { name: 'Unidad', index: 'TSI_Unidad', width: 100, align: 'center',
            editable: true, edittype: 'select',
            editoptions: { value: "Dia:Dia;Hora:Hora" }, sortable: true }
    ],
    autoencode: true,
    pager: '#pager',
    rowNum: 20,
    sortname: 'TSI_TS_Id',
    sortorder: 'asc',
    sortable: true,
    autowidth: false,
    width: 733,
    height: -1,
    shrinkToFit: true,
    viewrecords: true,
    gridview: true,
    caption: 'Listado Servicios asociados a Tarifa',
    postData: {tarId: tarId.val()},
    editurl: '/modulos/carga/cargaServiciosTarifa.ashx'
});

有三个选择选项,我想知道如果我选择名为“Unidad”的第三个(最后一个)选择的选项“Dia”,我该如何禁用“Cantidad”(第二列)选择,但如果我选择“可以使用”霍拉的选择!当我创建或编辑(没有内联编辑)时,有没有可能的方法来做到这一点?

是否有任何属性(如禁用 html)可以添加到colModel定义中?

谢谢。

4

0 回答 0