Versão atual:

Preencher campo conforme zoom

function setSelectedZoomItem(selectedItem) {

    var nomeproduto = "tbProdDescProdItem";
    var codproduto = "seqProduto";

    if(selectedItem.inputId == nomeproduto){
        $("#seqProduto").val('');
        reloadZoomFilterValues(codproduto, "SEQPRODUTO," + selectedItem["codproduto"]);
    }
}

formulário

                             <table class="table table-condensed table-nonfluid table-striped" id="tbProdutos" tablename="tbProdutos" noaddbutton="true" customFnDelete="removeProduto(this)">
                                <thead>
                                    <tr>    
                                        <th >Qtd. Caixa*</th>
                                        <th >Cod. Produto*</th>
                                        <th >Produto*</th>

                                            </tr>
                                </thead>
                                <tbody>
                                    <tr detail="true" detailname="tbProdutos" >
                                        <td class="col-md-2 " >
                                            <input type="text" id="tbProdQtdCaixaItem"  name="tbProdQtdCaixaItem" class="form-control" onchange="somenteNumerosInteiros(this, 10, 1);"  onkeyup="somenteNumerosInteiros(this, 10, 1);" >
                                        </td>
                                        <td class="col-md-3 " >
                                            <input type="text" name="tbProdCodProdItem" id="tbProdCodProdItem" class="form-control" >
                                        </td>
                                        <td class="col-md-6 " >    
                                            <input type="zoom" name="tbProdDescProdItem" id="tbProdDescProdItem" class="form-control" dataset="DS_PRODUTO_CONSINCO" 
                                            datasetvalue="DESCCOMPLETA"
                                             data-zoom="{
                                             'displayKey':'DESCCOMPLETA',
                                             'datasetId':'DS_PRODUTO_CONSINCO',
                                             'fields':[{'field':'DESCCOMPLETA',
                                             'label':'DESCCOMPLETA','standard':true}]}">
                                            <input type="hidden" name="hidden_buscaProduto" id="hidden_buscaProduto">
                                        </td>
                                    </tr>
                                </tbody>
                            </table>

Versão (1):

Ver a versão formatada

Preencher campo conforme zoom

Comentário

new question