Versão atual:

Criar botão para deletar registro da tabela pai-filho

Olá, estou tentando fazer um botão personalizado para deletar registros da tabela pai-filho

<div id="divgrid_cliente" class="col-md-12">
                <table class="table table-striped" id="tbCliente"
                    tablename="tbCliente" noaddbutton="true"
                    nodeletebutton="true" customFnDelete="fnCustomDelete(this)">
                    <thead>
                        <tr>
                        </tr>
                    </thead>
                    <tbody>
                        <tr detail="true" detailname="tbCliente">
                            <td>
                                <div class="row">

                                    <div class="col-md-5 col-xs-12">
                                        <label>Nome:</label> <input
                                            id="cliente_nome" name="cliente_nome" class="form-control"
                                            type="text" />
                                    </div>

                                    <div class="col-md-3 col-xs-12">
                                        <label>Target:</label> <input
                                            id="faturamento" name="faturamento" id="faturamento"
                                            onKeyPress="validafunctions.setMoeda(this.id, 2, false , '')"
                                            class="form-control" type="text" />
                                    </div>

                                    <div class="col-md-2 col-xs-12">
                                        <label>Taxa de instalação:</label> <input
                                            id="taxa_instalacao" name="taxa_instalacao"
                                            onKeyPress="validafunctions.setMoeda(this.id, 2, false , '')"
                                            class="form-control" type="text" />
                                    </div>




                                </div>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <button type="button" class="btn btn-primary"
                    name="addActivityButtons" id="addActivityButtons"
                    data-toggle="button" onclick="addCliente()">Adicionar
                    Cliente</button>

                <button type="button" class="btn btn-primary"
                    id="removerEnd" data-toggle="button"
                    onclick="fnCustomDelete(this)">Remover</button>
            </div>

<script type="text/javascript">
function fnCustomDelete(oElement){

            fnWdkRemoveChild(oElement);

        }
</script>

Mas não se é possível chamar a função fnWdkRemoveChild(oElement) no botão remover como foi feito acima. Alguém sabe dizer se é possível fazer isso? Do jeito que está não funcionou.

Versões (2):

Ver a versão formatada

Criar botão para deletar registro da tabela pai-filho

Comentário

new question