问题标签 [angular-material-5]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angular - 如何将 Angular 材料表导出为 excel 或 pdf 或 csv
我正在使用来自角度材料https://material.angular.io/components/table/overview的这个示例创建一个角度表,无论如何以 excel 或 pdf 格式导出它?
angular - 如何将 Firebase 数据读入具有动态列的简单 HTML 表或 Angular MAT 表
https://stackblitz.com/edit/dynamic-columns-mat-table
这就是我到目前为止所拥有的。
该表完美呈现,但我的要求是我事先不知道列名,所以我需要提及列名,例如
而不是 ${element.description} => ${element.elementname}
或者
${element.description} => ${element.'description'}
任何建议,将不胜感激。谢谢你。
HTML
组件.ts
angular - 更改标签中的阿拉伯字体系列以及 mat-select 和 mat-input Material angular 5 的选项
如何更改标签中的字体系列以及 mat-select 和 mat-input Material angular 5 的选项?
我试图将样式直接应用于元素 mat-select 和 input 但对我没有任何作用。
myform-component.html
html - Save and bind to the Id of a drop-down selection, but display the Value in Angular Material
This might be a stupid question with a very simple answer, but after a week of coding I feel fried and can't figure it out.
How can I bind to the Id of a selection, but display the string representation of the value? I.e., I have a drop-down that display the names of Customers, but I want to save the Id
for DB purposes.
My selection item has two properties: customer.Display
(Name), and customer.Id
.
How can I do the binding to save my Id to [(ngModel)]="loadDataService.selectedLoad.CustomerId
, but display my Display in the drop-down (it already displays the Display, so that is covered):
angular - 使用ajax调用获取数据后在MatTableDataSource中设置MatPaginator和MatSort
使用 Ajax 从后端获取值后,排序和分页不起作用。
我正在使用以下版本:
角度:5.2.7 材质:5.2.4 打字稿:2.5.3
我的代码片段:
在上述情况下,什么都没有发生。如果我遗漏任何东西,请纠正我。
html - 如何在 Angular 中的自定义错误验证上触发即时 mat-error
如何让我的自定义mat-error
立即触发?我知道 Angular 文档中有一个示例,但无法使其正常工作。我的验证不是为了empty
也不是为了某个type
,例如email
。
当我在下拉字段中进行搜索但未找到任何记录时,我希望显示我的错误。<div>
项目下方的正常立即触发*ngIf
,但不是mat-error
。我也尝试使用 更新 mat-error .innerHTML
,但该字段不存在。我确信这是因为 Angular 还没有创建它。
这是我的 HTML:
这是我在 .ts 文件中的方法以及我尝试过的一些东西:
angular - Angular 5表格行一次展开/折叠一个
尝试一次展开/折叠一个角表行,但无法使其工作。
在下面的 url 下试过,但它似乎不起作用。任何帮助表示赞赏。 https://plnkr.co/edit/rLtjjMOpEUe8owK8KI2M?p=preview https://github.com/angular/material2/issues/6095
angular - 禁用输入时,Angular Material matDatepicker 不适用于 ngForm ngSubmit
我对 Angular Material matDatepicker 有疑问。
我发现如果我想在它上面使用 disabled 属性,在使用 ngSubmit 的时候是无法得到结果值的。
表示此代码有效:
但这一个不起作用:
是否有机会将 disabled 属性与 matDatePicker 和 ngForm 一起使用?