我有一個Infragistics WinGrid(UltraGrid,UltraWinGrid,無論...)與一個未綁定列。它有Style = Checkbox
和DataType = System.Boolean
。我已將DefaultCellValue
設置爲true
,但每個新行在該列中都會顯示cell.Value == False
。我如何獲得默認值的工作?謝謝!Infragistics WinGrid:如何使最初檢查CheckBox列
1
A
回答
2
如果一切都失敗我建議你恢復手動設置InitializeRow
事件的值。
1
嘗試做yourColumn.DataType = typeof(bool)
和yourColumn.DefaultCellValue = true
。
+2
DefaultCellValue適用於通過添加行功能添加的行,並且不會影響數據源中的行。這是在這裏的文檔:http://help.infragistics.com/NetAdvantage/WinForms/Current/CLR2.0/?page=Infragistics2.Win.UltraWinGrid.v11.2~Infragistics.Win.UltraWinGrid.UltraGridColumn~DefaultCellValue。 HTML – alhalama
0
我看到這是一箇舊帖子,但這可能有助於某人搜索答案!
在新行,你可以使用InitializeTemplateAddRow事件,從那裏你可以在此設置所需的列的值
//Add TemplateAddRow handler
_ultraGrid.InitializeTemplateAddRow += _ultraGrid_InitializeTemplateAddRow
//In the InitializeTemplateAddRow set the cells value
e.TemplateAddRow.Cells[CELLNAME].Value = true;
//OR
e.TemplateAddRow.Cells[index].Value = true;
相關問題
- 1. Infragistics wingrid
- 2. 在Infragistics中添加新列Wingrid
- 3. Infragistics的複選框列win wingrid
- 4. 如何在Infragistics中以垂直格式列出數據wingrid
- 5. 可瀏覽的屬性和Infragistics WinGrid
- 6. Infragistics上的Enter鍵可編輯Wingrid
- 7. 行添加/刪除事件? (Infragistics Wingrid)
- 8. Infragistics UltraGrid和Infragistics WinGrid是同一產品嗎?
- 9. 如何檢查和取消選中CheckBox?
- 10. 在Infragistics中顯示覆制的數據wingrid
- 11. 使CheckBox動態檢查使用setChecked(True)
- 12. CheckedTreeSelectionDialog最初檢查元素
- 13. CheckBox UserControl始終檢查
- 14. dataGridView CheckBox檢查不工作
- 15. [type = checkbox]:檢查內容:「x」;
- 16. 根據屬性初始化wix CheckBox的檢查狀態?
- 17. 如何使用Android C#以編程方式檢查CheckBox?
- 18. 如何使用CheckBox在ListView中跟蹤已檢查的行Android
- 19. 如何在類中查找CheckBox並使用JQuery隱藏CheckBox?
- 20. 查找行與CheckBox檢查DataGridView
- 21. Infragistics/XAML - 檢查字段中的值
- 22. 如何保存CheckBox檢查的項目如果我滾動
- 23. 如何檢查所有的CheckBox是否在按鈕上檢查點擊在Android
- 24. 如何獲得最初檢查Bootstrap按鈕式複選框?
- 25. 如何設置最初在AngularJs中檢查的單選按鈕?
- 26. Infragistics Ultragrid - Combobox列
- 27. 如何獲取被檢查的<input type =「checkbox」/>的值?
- 28. Android - 如何檢查一個CheckBox取消選中另一個?
- 29. 如何檢查數組中的CheckBox是否爲空?
- 30. 如何讓CheckBox在檢查時執行某些操作?
花了大量的時間。謝謝,那就做到了! –