Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
610
Not seeing a string[] type field in the grid
posted

Hi,

I wonder if I missed something very simple but I couldn't find it --

I have a grid with row binding to an object. All fields display correctly except the only one with type string[]. I don't see it in the grid at all, during my debug, I see the field existing and it is visible. So I thought I might need to set default editor, so I tried to add XamTextEditor, still no luck, following is digested from my xaml:

                        <igDP:Field Name="notificationCodes"
                                    Label="Notification Codes"
                                    Width="100">
                            <igDP:Field.Settings>
                                <igDP:FieldSettings EditorType="{x:Type igEditors:XamTextEditor}">
                                </igDP:FieldSettings>
                            </igDP:Field.Settings>
                        </igDP:Field>

notificationCodes is string[] type.

If I change notificationCodes to another field name which is of type string, then it displays.

Any help is appreciated!

Thanks,

Yu