Angular2 + ng2-smart-table:单击“编辑”按钮时获取单个单元格的值

时间:2019-06-12 09:33:22

标签: angular input color-picker ng2-smart-table

在我的ng2-smart-table中,我有两列: DescriptionColor

在列Color上,我有一个renderComponent,它使用type="color"实现了输入,并且在颜色更改时,它向服务发送所选的新颜色的值:

onColorChange(newColor: string) {
   this.data.changeColor(newColor);       
}   

当我尝试在任何记录上单击edit按钮时,ng2-smart-table会在表格上方显示给我,颜色输入带有错误的#000000。

我创建了这个https://stackblitz.com/edit/angular-dnw27j是为了更好地说明我的问题。

我希望当我单击edit按钮时,在选择type="color"的输入时选择正确的颜色。

你能帮我吗?谢谢

0 个答案:

没有答案