use table + input with/or without role input
docs: https://metroui.org.ua/intro.html
Search found 170 matches
- Fri Feb 15, 2019 5:48 pm
- Forum: Requests
- Topic: Excel Like Input Fields
- Replies: 4
- Views: 104
- Fri Feb 15, 2019 5:41 pm
- Forum: Requests
- Topic: Excel Like Input Fields
- Replies: 4
- Views: 104
Re: Excel Like Input Fields
What do you mean?
- Fri Feb 15, 2019 12:57 pm
- Forum: General issues
- Topic: DataTables Integration
- Replies: 2
- Views: 44
Re: DataTables Integration
DataTables a not a part of Metro 4, contact DataTables support
- Thu Feb 14, 2019 6:16 pm
- Forum: Components
- Topic: Export table data to CSV
- Replies: 1
- Views: 39
Re: Export table data to CSV
if a table has a role table - https://metroui.org.ua/table-component.html#_table_export if a table without role table var file_name = "table.csv"; var table = document.querySelector("table"); var options = { csvDelimiter: "\t", csvNewLine: "\r\n", includeHeader: true }; Metro.export.tableToCSV(table...
- Thu Feb 14, 2019 6:11 pm
- Forum: Components
- Topic: Creating Table - Search, Show Entries & Pagination
- Replies: 1
- Views: 38
- Thu Feb 14, 2019 4:44 pm
- Forum: Requests
- Topic: NavView Menu - Fixed Position
- Replies: 5
- Views: 55
Re: NavView Menu - Fixed Position
Sorry, but I don't understand what you want :( Create screenshot, please.
- Thu Feb 14, 2019 4:32 pm
- Forum: Requests
- Topic: NavView Menu - Fixed Position
- Replies: 5
- Views: 55
Re: NavView Menu - Fixed Position
Code: Select all
<body class="h-vh-100">
<div class="h-100" data-role="navview">
...
</div>
</body>
- Wed Feb 13, 2019 8:20 pm
- Forum: General issues
- Topic: NavView - Sub-menu
- Replies: 2
- Views: 46
Re: NavView - Sub-menu
Code: Select all
$(".navview-menu .navview-menu").on("click", "a", function(e){
....
e.preventDefault();
e.stopPropagation();
});
- Sun Jan 27, 2019 1:55 pm
- Forum: General issues
- Topic: Make Table Links Clickable?
- Replies: 3
- Views: 170
Re: Make Table Links Clickable?
Table component can't contains click event for table row, but you can create your own event with js addEventListener fuction
- Sun Jan 27, 2019 11:00 am
- Forum: General issues
- Topic: Make Table Links Clickable?
- Replies: 3
- Views: 170
Re: Make Table Links Clickable?
You can use data-on-draw-cell event to redraw cell content.