admin管理员组文章数量:1339595
I have a mat-table which displays a list of jobs. Now when I create a new job I want to display it in first row rather than last one.If i create and add a new job it goes to bottom of mat-table. How can I achieve this .
I want something similar to this Stackblitz.but rather than adding row at bottom i want it in first row
I have a mat-table which displays a list of jobs. Now when I create a new job I want to display it in first row rather than last one.If i create and add a new job it goes to bottom of mat-table. How can I achieve this .
I want something similar to this Stackblitz.but rather than adding row at bottom i want it in first row
Share Improve this question asked Feb 1, 2019 at 6:19 Cpt KitkatCpt Kitkat 1,4024 gold badges36 silver badges54 bronze badges 3-
1
use
.unshift(element)
on your array – CruelEngine Commented Feb 1, 2019 at 6:20 - can you please explain in detail i am fairly new to angular – Cpt Kitkat Commented Feb 1, 2019 at 6:22
- please check my answer – CruelEngine Commented Feb 1, 2019 at 6:42
3 Answers
Reset to default 5To push an element to the first row , there is a method in array called unshift()
.
To do that , take for an example :
var a = [1,2,3,4];
if i want to push 0
to a
in the first position , i would simply do a.unshift(0)
All you have to do is instead of .push()
, use .unshift()
I have forked the stackbltiz to help you out with the solution https://stackblitz./edit/angular-axjzov-8zmcnp
If you want to add new rows to the top of MaterialTable you can add the fallowing option:
<MaterialTable
...
options={
addRowPosition: 'first'
}
...
>
You can only chose from first or last. The default is set to last.
With your datasource declared in your ponent as follows:
dataSource = new MatTableDataSource<any>();
You can add a rown to the top op the table with:
this.dataSource.data.unshift(newRowObject);
本文标签: javascriptHow to insert new row at top of mattableStack Overflow
版权声明:本文标题:javascript - How to insert new row at top of mat-table - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743592803a2507405.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论