有没有人知道是否可以让cxGrid有一个搜索栏,就像在 Outlook 联系人中一样,您只需按一个字母并显示姓氏中带有该字母的第一个联系人?
我很想看到一个这样的例子,但到目前为止,我到处搜索都没有结果。
有没有人知道是否可以让cxGrid有一个搜索栏,就像在 Outlook 联系人中一样,您只需按一个字母并显示姓氏中带有该字母的第一个联系人?
我很想看到一个这样的例子,但到目前为止,我到处搜索都没有结果。
You can enable de Filter bar in CxGrid doing the next steps:
At the Object Inspector you must change some properties
Step 1:
At the DBTableView.FilterRow property change:
DBTableView1 - FilterRow - ApplyChanges = fracImmedialety
DBTableView1 - FilterRow - Visible = True
DBTableView1 - FilterRow - InfoText = to add the text "Click here for filter creation (for substring search, begin with * character)"
Step 2:
At the DBTableView.DataController property change:
DBTableView1 -DataController-Filter-PercentWildCards = * ( will put instead of percent a star)
DBTableView1 -DataController-Filter-Options-fcoCaseInsensitive = True (any register)
DBTableView1 -DataController-Filter-Options-fcoShowOperatorDescription = True