20 lines
547 B
JavaScript
20 lines
547 B
JavaScript
(function(){
|
|
X.pageLogic['modeltable'] = {
|
|
init : function(parms){
|
|
var me = this;
|
|
this.parms = parms;
|
|
this.callback = parms.callback;
|
|
var data = parms;
|
|
|
|
for(var i in data){
|
|
X.laytpldata("#kanban-model-table-dot",data[i],null,function(html){
|
|
// console.log($("#model-box").html());
|
|
console.log(html);
|
|
$('#model-box').append(html);
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
};
|
|
})(); |