Buscar contenidos

miércoles, 1 de julio de 2020

The jQuery replacement for select boxes

https://select2.org/

---

    $("#id_select_producto_interes").select2({
        language: {
            searching: function () {
                return "Espere por favor...";
            }, inputTooShort: function () {
                return 'Digite almenos 5 caracteres...';
            }, noResults : function () {
                return 'No hubo resultados';
            }
        },
        minimumInputLength: 5,
        ajax: {
            url: "/Shared/ListadoProductos",
            type: "post",
            dataType: 'json',
            delay: 250,
            data: function (params) {                
                var query = {
                    descripcionProducto: params.term,
                    type: 'public'
                }
                return query;
            },
            processResults: function (response) {   
                /*return model text & id*/
                return {
                    results: response
                };
            },
            cache: true
        }
    });

No hay comentarios:

Publicar un comentario