Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタマイズ ウィンドウで MVC Devexpress Gridview 固有の列の非表示を無効にする方法、またはカスタマイズ ウィンドウで非表示にできない最小限の列数を設定する方法
MVCxColumn.Settings.AllowDragDropプロパティを " DefaultBoolean.False " に設定して、カスタマイズ ウィンドウとの間で列が移動しないようにします。
@Html.DevExpress().GridView( settings => { ... settings.Columns.Add(...).Settings.AllowDragDrop = DefaultBoolean.False; }).Bind(Model).GetHtml()