Código Javascript:
Ver original
$.ajax({ url: _root_ + 'index/portafolio', type: 'POST', }).done(function(data){ console.log(data); var info = JSON.parse(data); for(var i in info){ // $("#elastic_grid_demo").append("<h2> Titulo: " + info[i].titulo, + "</h2>"); $("#elastic_grid_demo").elastic_grid({ 'showAllText' : 'All', 'filterEffect': 'popup', // moveup, scaleup, fallperspective, fly, flip, helix , popup 'hoverDirection': true, 'hoverDelay': 0, 'hoverInverse': false, 'expandingSpeed': 500, 'expandingHeight': 500, 'items' : [ { 'title' : info[i].titulo, 'description' : info[i].descripcion, 'thumbnail' : ['https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg'], 'large' : ['https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg', 'https://s-media-cache-ak0.pinimg.com/236x/80/0d/33/800d33f97cff8e8ba296e6d816e5cf14.jpg'], 'button_list' : [ { 'title':'Visitar página', 'url' : 'http://porfolio.bonchen.net/', 'new_window' : true }, { 'title':'Ver Imagen', 'url':'http://porfolio.bonchen.net/', 'new_window' : true} ], 'tags' : ['Self Portrait'] }, ] }); } });
ese for esta por fuera de la funcion del plugin "elastic_grid()" por lo que me muestra solo uno osea el último, necesito hacer que me muestre todos los datos, alguien tiene alguna idea de como modificar esto?