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
35
Evaluation of grid product
posted

I've requirement and if Infragistics fullfills the same we would like to buy this product... Here is the requirement....

 

+Nation ----------> +Total

 

If you click on Nation, We will have

-----------------------------------------------------

 

 -Nation                      +Total   { This total is for Nation, this is also expandable }

    +Region1               +Total  (This total is for Region and this is also expandable}

    +Region2               +Total  (This total is for Region and this is also expandable}

--------------------------------------------------------

 

When you click on Nation Total, we will have

--------------------------------------------------------------------------------------

 

-Nation                        -Total                  value     value       value .....

                                   Appliance*          value     value        value .....

                                   Conveniene       value     value        value .....

                                   Electronics         value     value        value .....

 

+Region1                      +Total                  value     value        value .....

+Region2                      +Total                  value     value        value .....

--------------------------------------------------------------------------------------------------

 

Now you click on Region, we will have

---------------------------------------------------------------------------------------------------

--------------------------------------------------------------------------------------

 

-Nation                        -Total                  value     value       value .....

                                   Appliance*          value     value        value .....

                                   Convenience       value     value        value .....

                                   Electronics         value     value        value .....

 

-Region                      +Total                  value     value        value .....

 

    +Dsitrict1                  +Total                  value     value        value .....

    +Dsitrict2                  +Total                  value     value        value .....

 

 

Parents
No Data
Reply
  • 45049
    posted

    This looks like your "Nation" band would have two different child bands - "Total" and "Region".  WebGrid is not capable of handling multiple child bands at the same level.  So, you can have this:

    - Nation
      - Region
        - District

    ... but not this:

    - Nation
      - Nation total
      - Region
        - Region total
        - District
          - District total

    One way you might get around this is to use a row edit template to display your "total" values at a particular level.  Inside this row edit template, you'd include a separate WebGrid, which would display the breakdown you've illustrated.  An example of doing this is provided in the following article from our online Knowledge Base:
    HOWTO: Placing Another WebGrid inside Row Edit Template

Children
No Data