我是Angular的新手,我有一个项目,我需要在这个项目中继续进行中的工作。我的任务是扩展following grid/table的过滤条件。在此网格中,您可以通过在文本框中键入内容来过滤查看的内容,因此键入01将显示2019年1月7日的行,但是键入Jan则不会产生任何结果,这就是我需要实现的功能。以下是处理此网格的代码(据我所知):
[ {
"pageName": "Content_2",
"domain": "bingo.com",
"locale": "en-us",
"contents": [
{
"contentName": "Template_2",
"fields": [
{
"title": "Company Name"
},
{
"title": "Designation"
}
]
}
]
},
{
"version": 2,
"pageName": "Content_3",
"domain": "bingo.com",
"locale": "en-in",
"contents": [
{
"contentName": "Template_2",
"fields": [
{
"title": "Company Name"
},
{
"title": "Designation"
}
]
}
]
}]
任何有关如何/在何处修改此表的过滤条件的指针将不胜感激。如果我需要提供更多信息,请告诉我,以便我可以相应地更新该帖子。谢谢您的宝贵时间。