gridex

GridEx Item population on the fly

旧巷老猫 提交于 2020-07-23 06:22:19
问题 We are using the GridEx to populate the table/dropdown contents in our C# application. We have the following scenario: COL1 COL2 Dropdown Value Whenever we are selecting an Item from the "Dropdown" the corresponding "Value" should get displayed on the fly. Currently when we select the "Dropdown" item and navigate to "Value" then only the Value is getting displayed that is because the EndCustmEdit event gets triggered only when we are navigating to next field. I need to have the "Value"

GridEx Item population on the fly

这一生的挚爱 提交于 2020-07-23 06:20:37
问题 We are using the GridEx to populate the table/dropdown contents in our C# application. We have the following scenario: COL1 COL2 Dropdown Value Whenever we are selecting an Item from the "Dropdown" the corresponding "Value" should get displayed on the fly. Currently when we select the "Dropdown" item and navigate to "Value" then only the Value is getting displayed that is because the EndCustmEdit event gets triggered only when we are navigating to next field. I need to have the "Value"

How to make a Janus GridEx column readonly?

风流意气都作罢 提交于 2019-12-12 14:36:59
问题 I'm working on a windows forms app and there is a Janus GridEx component with 3 columns. I don't want users to change the values in the first two columns but I can't find the way to make readonly or allowedit false for the first two columns and third column editable. I've tried changing the editmode but no luck either... anyone out there knows how? 回答1: Have you tried: column.EditType = Janus.Windows.GridEX.EditType.NoEdit; ? 回答2: If you change the column's Selectable property to false, the