Files
Unify/application/demo/list/news.list.table.js

34 lines
641 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import newsListTableHeader from "./news.list.table.header.js";
import newsListTableBody from "./news.list.table.body.js";
import collection from '/unify/collection.js';
import newsListItem from '../list/item/news.list.item.js';
import news from '../news.js';
import gridView from '/elements/gridView/gridView.js';
export default class newsListTable extends gridView{
header = new newsListTableHeader();
body = new newsListTableBody( newsListItem, new collection( news ) );
#ifdef MACOS
marginLeft = 6;
width = "auto"
margin = "6px -2px 10px 6px"
#endif
}