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
1120
column header for hierarchical data
posted

Hi
My child records have the same column header of their parent record so Is it possible not to show  the child records' column header?

Thanks!

 

Parents
  • 9836
    posted

    Hi,

    you can try this for your child records Fieldlayout:

    <igDP:FieldLayout >

            <igDP:FieldLayout.Settings>
                  <igDP:FieldLayoutSettings LabelLocation="Hidden"></igDP:FieldLayoutSettings>
            </igDP:FieldLayout.Settings>

                       
     <igDP:FieldLayout.Fields>
                   <igDP:Field Name="FirstName" />   
                   <igDP:Field Name="LastName" />
            </igDP:FieldLayout.Fields>

    </igDP:FieldLayout>

    Regards

    Vlad

Reply Children