Last active
July 27, 2017 03:45
-
-
Save strepicor/b94a70a7376445f529d29323ed413388 to your computer and use it in GitHub Desktop.
Grid column Dropdown / Disable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Infragistics.Win; | |
using Infragistics.Win.UltraWinGrid; | |
private void grdGridName_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs args) | |
{ | |
grdGridName.DisplayLayout.Bands[0].Columns["ColumnName"].EditorControl = cmbCustomerLanguage; | |
grdGridName.DisplayLayout.Bands[0].Columns["ColumnName"].CellActivation = Activation.NoEdit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment