Versão atual:

Preciso desativar a table paixfilho do fluig em todas as atividades

Pessoal, preciso criar uma tabela onde o solicitante consiga cadastrar as pessoas e os dados (atividade 0 e 4)e nas atividades seguintes esta tabela seja "readOnly" (atividade 6). Só que a table da totvs não estou conseguindo.

<table class="table" tablename="tab" addbuttonclass="btn btn-primary" addbuttonlabel="Adicionar Colaborador" cellspacing="0" width="100%" id="tabcol" customFnDelete="fnCustomDelete(this)">
        <thead>
            <tr class="tableHeadRow"> 
                <td class="tableColumn"><b>Chapa</b></td>
                <td class="tableColumn"><b>Nome</b></td>
                <td class="tableColumn"><b>Data da Ocorrência</b></td>
                <td class="tableColumn"><b>Motivo</b></td>
                <td class="tableColumn"><b>Setor</b></td>
                <td class="tableColumn"><b>Abono Parcial</b></td>
                <td class="tableColumn"><b>Horas Abonar</b></td>
            </tr>
            </thead>
            <tbody id="tblinha">
            <tr class="tableBodyRow" id="linha">
                <td><input class="form-control" type="number" name="chapaa" id="chapa"></td>
                <td><input class="form-control" type="text" name="nomee" value="Nome Completo" id="nome"></td>
                <td><input class="form-control" type="date" name="dataoco" id="data" ></td>
                <td><input class="form-control" type="text" name="motivoo" id="descricao"></td>
                <td><input class="form-control" type="text" name="setorr"  id="setor"></td>
                <td><input class="checkbox-inline" type="checkbox" name="abonoo" id="parcial">Sim</td>
                <td><input class="form-control" type="time" name="horaa" id="horaa"></td>
            </tr>
               </tbody>
        </table>

Segue abaixo o displayfields

function displayFields(form, customHTML) 
{        
    var activity = getValue('WKNumState');

    if (activity == 0 || activity == 4) 
    {     

        form.setEnabled('devolve', false);
    }

    if (activity == 6)
    {
        form.setHideDeleteButton(true);
        form.setEnabled('nomee', false);
        form.setEnabled('dataoco', false);
        form.setEnabled('motivoo', false);
        form.setEnabled('setorr', false);
        form.setEnabled('chapaa', false);
        form.setEnabled('horaa', false);
        form.setEnabled('abonoo', false);
    }

Versões (2):

Ver a versão formatada

Preciso desativar a table paixfilho do fluig em todas as atividades

Comentário

new question