I can't seem to figure out how to parse the serialized gridster object so that I can access the HTML text that goes with it. I can get all teh row/col/size_x,size_y values back, though anything within the
Cant' get this HTML
I can't seem to repopulate once I serialize gridster and try and repopulate the grid.
Some of my code is below. Any help on this would be appreciated (or a push in the right direction if serialize doens't also grab the HTML (though believe it does).
Working, though not adding the text within the widgets.
I can't seem to figure out how to parse the serialized gridster object so that I can access the HTML text that goes with it. I can get all teh row/col/size_x,size_y values back, though anything within the
Some of my code is below. Any help on this would be appreciated (or a push in the right direction if serialize doens't also grab the HTML (though believe it does).
Working, though not adding the text within the widgets.
// Instantiate gridster with params $(".gridster ul").gridster({ widget_margins: [10, 10], widget_base_dimensions: [200, 200], serialize_params: function ($w, wgd) { return { id: $($w).attr('id'), col: wgd.col, row: wgd.row, size_x: wgd.size_x, size_y: wgd.size_y }; } });