Hi,
May be this is the question for XtraGrid,
Since XAF does not support Banded Grid , I have created our own Banded Grid Editor, things works fine except that DisplayFormat is considered, I spend 2 days on this,
Attached a sample , could you please help me finding what I am doing wrong?
Thanks in advance
/Binish
We have closed this ticket because another page addresses its subject:
Grid List Editors - Support a banded view and make it easier to use other grid view types
Hello Binish,
After debugging your code I have found that you have handled the following event that causes this problem:
void _gridView_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e) { if (e.Value != null) e.DisplayText = e.Value.ToString(); else e.DisplayText = ""; }
Let me know in case of any further difficulty.
See Also:
ListEditors - Support additional view types (BandedGridView, LayoutView, CardView, AdvBandedGridView) of the grid control
Thanks,
Dennis
Thanks Dennis,
Another Developer had changed it for some other reason :)
/Binish