2
Answers

WPF - DXGrid (Remove- Drag a column header here to group by that column)

Hi I am new to DXGrid. I Want to Remove "Drag a column header here to group by that column" from the Grid. Any Idea?
Answers (2)
0
Pradeep Chandraker

Pradeep Chandraker

NA 4k 650.8k 13y
Try this.

string connStr = ConfigurationManager.AppSettings[
Constants.appSettingsDataFolderPath].ToString();

Or, you can try this if you have your database connection information in web.config connectionStrings section.

string 
connStr = ConfigurationManager.ConnectionStrings[Constants.appSettingsDataFolderPath].ConnectionString;

0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
Try:

string connectionString = (string)Application[Constants.appSettingsDataFolderPath];