开发者

Inserting text into the filtext box of the devexpress grid

开发者 https://www.devze.com 2023-01-29 09:00 出处:网络
i have a devexpress grid being used in web application with asp.net & c#.net? the grid has filter text box for each column .the problem is that i just want to inject a text in to all filtertext bo

i have a devexpress grid being used in web application with asp.net & c#.net? the grid has filter text box for each column .the problem is that i just want to inject a text in to all filtertext box of the devexpress开发者_JAVA百科 grid columns when the grid is loaded for the first time?

how can i do that


Maybe this is what you are looking for

ASPxGridView1.AutoFilterByColumn(ASPxGridView1.Columns["yourColumnName"], "%searchValue");
ASPxGridView1.SettingsText.Title = ASPxGridView1.FilterExpression;
0

精彩评论

暂无评论...
验证码 换一张
取 消