Mostrando entradas con la etiqueta kendo ui. Mostrar todas las entradas
Mostrando entradas con la etiqueta kendo ui. Mostrar todas las entradas

jueves, 16 de octubre de 2014

Prueba de form horizontal

       <div class="well panel">
            <div class="row-fluid">
                <div class="span6">
                    <div class="form-horizontal labels-forms">
                        <div class="control-group">
                            <label class="control-label" for="UsuarioId">Solicitado Por</label>
                            <div class="controls">
                                <input type="text" name="UsuarioId" id="UsuarioId" style="width:100%" readonly="readonly" />
                            </div>
                        </div>
                        <div class="control-group">
                            <label class="control-label" for="codigoId">C&oacute;digo</label>
                            <div class="controls">
                                <input type="text" name="codigoId" id="codigoId" value="" style="width:100%" readonly="readonly" />
                            </div>
                        </div>
                    </div>
                </div>
                <div class="span6">
                    <div class="form-horizontal labels-forms">
                        <div class="control-group">
                            <label class="control-label" for="plantaId">Fecha Solicitud:</label>
                            <div class="controls">
                                <input type="text" name="fechaSolicitud" id="fechaSolicitud" value="" style="width:100%" readonly="readonly" />
                            </div>
                        </div>
                        <div class="control-group">
                            <label class="control-label" for="estadoSolicitud">Estatus de Solicitud:</label>
                            <div class="controls">
                                <input type="text" name="estadoSolicitud" id="estadoSolicitud" value="" style="width:100%" readonly="readonly" />
                            </div>
                        </div>
                    </div>
                </div>
            </div><!-- End Row -->
        </div>

domingo, 31 de agosto de 2014

Kendo primera prueba enrutamiento (ROUTER)


 <script>
     var router = new kendo.Router();

     router.route("/myPage", function(){
         console.log("the /myPage route was triggered!");
     });
     // #/myPage
     //http://localhost:30233/kendoSPA.aspx#/myPage

     //con un parametro
     router.route("/foo/:id", function (id) {
         console.log("the /foo/" + id + " route was triggered!");
     });
     //http://localhost:30233/kendoSPA.aspx#/foo/1
     // #/foo/1

     router.route("/foo/:bar/baz/:quux/:id", function (bar, quux, id) {
         console.log(bar, quux, id);
     });
     //varios parametros
     // ... matches routes like #/foo/this/baz/is/awesome
     //http://localhost:30233/kendoSPA.aspx#/foo/this/baz/is/awesome
     router.start();
     console.log("Hola");
 </script>

miércoles, 27 de agosto de 2014

PENDIENTE KENDO kendo Grid con checkbox

http://jsfiddle.net/jkTU4/
Grid con checkbox
I tried using this thread http://jsfiddle.net/jkTU4/

command: [tr.edit, tr.destroy, {
                    name: "importar",
                    click: function (options) {
                        $.ajax({
                            url: "#",
                            contentType: 'application/json',                           
                            //crossDomain: true,
                            success: function (result) {
                                alert("Hello");
                            },
                            error:function(x,y,z){
                                alert("see you around");

                            }
                        });
                        return false;
                    }
                }   ], title: "" 

lunes, 25 de agosto de 2014

kendo busqueda

http://stackoverflow.com/questions/13757357/text-box-search-and-filter-the-values-in-grid-view-using-kendo-ui-html5

Text box search and filter the values in grid view using 

Kendo UI HTML5


http://jsfiddle.net/OnaBai/9gnsj/

http://volaresystems.com/blog/post/2013/02/19/Using-Kendo-UI-grid-with-Web-API-and-OData

busqueda en kendo ui grid FILTRO COLUMNAS

Search All Columns in KendoUI Grid

http://stackoverflow.com/questions/13938101/search-all-columns-in-kendoui-grid

http://jsfiddle.net/Naka3/38/
http://stackoverflow.com/questions/13757357/text-box-search-and-filter-the-values-in-grid-view-using-kendo-ui-html5
http://demos.telerik.com/kendo-ui/grid/toolbar-template
http://www.codeproject.com/Questions/587369/Kendo-uiplusgridplusserachplustoolplusbarpluslikep
--------------------
crud completo
http://conceptf1.blogspot.com/2013/11/kendo-ui-data-source-crud.html
------------------------------------------------------------------------------------


How do i search all columns of kendo grid at the same time?

http://stackoverflow.com/questions/22305337/how-do-i-search-all-columns-of-kendo-grid-at-the-same-time
---------------
http://blog.longle.net/2012/04/13/teleriks-html5-kendo-ui-grid-with-server-side-paging-sorting-filtering-with-mvc3-ef4-dynamic-linq/

http://www.codeproject.com/Articles/675879/An-Example-to-Use-Kendo-Grid
http://sympletech.com/hacking-on-the-kendo-ui-grid-enabling-server-side-sorting-and-paging-in-asp-net-mvc/
-----------------poco importante
http://stackoverflow.com/questions/17741591/kendo-ui-grid-how-to-keep-custom-filter-row-in-synch-with-column-reordering-and

lunes, 18 de agosto de 2014

KENDO EDITOR POPUP CON TITULO PERSONALIZADO (how to get kendoui grid popup add/edit form created from kendo template, show the correct title for add and edit operations?)

<div id="grid"></div>

$("#grid").kendoGrid({
    columns: [
        { field: "name" },
        { field: "age" },
        { command: "edit" }
    ],
    dataSource: {
        data: [
            { id: 1, name: "Jane Doe", age: 30 },
            { id: 2, name: "John Doe", age: 33 }
        ],
        schema: {
            model: { id: "id" }
        }
    },
    editable: {
        mode: "popup",
        window: {
            title :"This is the title"
        }
    },
    toolbar: [{ name: 'create', text: 'Add' }]

http://jsfiddle.net/OnaBai/XN5rM/2/
http://stackoverflow.com/questions/19374775/how-to-get-kendoui-grid-popup-add-edit-form-created-from-kendo-template-show-th
http://stackoverflow.com/questions/13363458/kendo-ui-grid-with-custom-popup-template-unbind-error