Browse By Tags

  • Freeze columns for child rows in a hierarchical grid

    We are using Infragistics Net Advantage for .Net 2007 Vol. 3 in our project. We use UltraWebGrid control to implement all kinds of grids. Our requirement is to implement column freezing in hierarchical grid.  Requirement:In the hierarchical grid, we need…
  • UltrawebGrid Hierarchical view problem: Showing only the first relation for multiple tables

    Suppose in a dataset, I have 3 tables, all has identical structure (column name and types), but different values. Lets call them A,B,C. Columnnames are (DepartmentID, DepartmentName, Parent):

    These 3 table will create 3 bands, right? This is Table A…

  • UltraWebGrid Row Width With Multiple Bands

    I have an UltraWebGrid (version 8.3) which has 2 bands of data. The first band holds a small amount of summary data, while the second band holds a lot to detailed information. The problem I have is that once I have set the widths of the columns in the…

  • Binding the WebHierarchicalGrid to a ViewModel

    Hi.

     

    I have rebuild the example that Craig made in his screencast . However the grid is not showing the child band. Instead it is only loading the top band of data. Since almost everything is the same i cant figure out what is wrong. I have added an attachment…

  • Problems with showing hierarchical data with different depth

     Hi,

    I have a hierarchical data source, with different hierarchical depth for each parent (or top node).

    My problem is that the UltraWebGrid do not show all child levels.

    If the first element in the data source has the highest depth, then UltraWebGrid…

  • HOWTO: Hierarchical checkbox selection with an Infragistics UltraWebGrid

    I couldn't find any guide on how to enable hierarchical checkbox selection in the UltraWebGrid (checking a checkbox in a parent row checks the boxes in its children rows), so I made a blog post about it when I was done.  Check it out if you need the…

  • Hierarchical View When Binding to Object Collection

    THE SCENARIO

    I have an object collection I am binding to my UltraGrid.  The Grid has 2 bands.

    The first will display the parent objects from the binding collection.
    The second will be a Hierarchical drill down displaying a child collection related to…

  • Getting row of second band in Hierarchical Grid

    I have a hierachical grid to which I have added a column of check boxes in both bands.  I need to be able to get/change the value of a check box in the second band but have no way to get which row in which the check box resides.

    How do I get the row/cell…

  • Hiding/resizing the Hierarchical RowSelector Column

    I am using Infragistics 2008.2. I am using a Hierarchical grid without using DataBinding. I accomplish this by adding a row to the first band's row.rows and setting the row.rows.band = the second band. Something like this:

    UltraGridRow row = new UltraGridRow…

  • hierarchal grid - Row Selected value

    can any one help me out in getting the row selected value in hierarchial grid(parent and child grid).

     

     

  • Binding an Hierarchical UltraWebGrid to a Strongly-Typed DataSet (.xsd)

    I have a strongly-typed dataset (data.xsd) with 2 datatables and a relation defined between the 2 tables. The UltraWebGrid viewtype is set to Hierarchial.  

    How do I set the UltraWebGrid.DataSource to display the hierarchial data represented in data.xsd…

  • Two silbling sub-levels?

    Hello everybody.

    I need to build a UltraWebGrid with at least two sibling sublevels, bound to a complex business object array. A hierarchy example could be:

    - Customers (Id, name, adress, etc.)

           - Invoices (Invoice#, date, amount, etc.)

                - InvoiceDetail…

  • UltraWebGrid with HeirarchicalData problems

    ok, I have 4 ultrawebgrids (one per tab).  only the first one is bound with the HeirarchicalData.  I am getting several issues with this that are not showing up in the other grids/tabs.

    1. on the first page load, NO data is showing in the grid, if I go…
  • Achieving 3 level hierarchy

    My problem is this.

    Say, I got a list of customer, who inturn will have list of orders. Each order will have orderdetails list inside it.

    I want to display the above information in a hierarchial fashion.

    The solution has to look like this.

    Custom…

  • HeaderStyles in a Hierarchical WebGrid

    Hi,

    I got a webgrid set up as a hierarchical view, with 4differents bands in. I would like to apply different HeaderStyle to each band header. But it doesn't work.

    I tried differents combination: Delete the HeaderStyleDefault setting, and apply styles…

  • Can't bind UltraWebGrid to Hierarchical Business Object (from SubSonic)

    We're having an issue with the UltraWebGrid. I have  datasource objects created using SubSonic. Let's say the parent and child are related on the property pA (I exclude all the "get/set" code for purposes of brevity);

    Public Class P…

  • LoadOnDemand Hierarchical Grid

    Hello all, I have a hierarchical grid that I have just rewritten to use the infragistics loadondemand technology. Its loads the first level rows fine but the second level is not loaded. During the initialize datasource event on the server I build a relational…

  • Load on Demand Ajax Row Update Multi Band

     Strange thing append,

    whene the event  UpdateRow is fired from a cell of a child band

    the object  RowEventArgs e is missing some information.  in fact the e.Row.ParentRow is always Null.

    So i can't refere to information in the parent row. and i need those informations…

  • Templated Column in Child Rows of WebGrid - Hierarchical

    Hi,

    Iam using the Ultrawebgrid to show data in hierarchical format. In the grid, i have added a templated column to show a select link button. Clicking on the select link would redirect the user to another page to edit the data. Iam able to add the select…

  • Find html controls in row. findcontrol()

     I have a templated column with a checkbox in it:

         <igtbl:TemplatedColumn Key="CamBan" AllowUpdate="Yes" Width="5.55%">
                  <CellTemplate>
                             <asp:CheckBox ID="cbCamBan" runat="server" Text="Ban" />…

  • Calling RowEditTemplate from Server Side...

    Hi All

    I am currently looking into using the hierachical grid as a treeview.

    My efforts so far have been successful, with two minor exceptions. When adding a new child item to the grid I have to add a new band and set-up the columns etc before I can…

  • Horizontal scroll disappears when column is 'fixed'

    Fellow coders... 

    I'm having a problem with the horizontal scroll bar disappearing when a column is 'fixed'. 

    I have a grid with two bands.  When the grid is first displayed (band 2 not showing) the horizontal scroll bar is not shown as band…

  • How to change the target attribute of a hyperlink column?

    I have a hyperlink column in a webgrid, and I'm changing the targeturl property of the cell in the InitializeRow event, but I'l like the hyperlink to open a new window (e.g. hl.target="_blank") but I can't find a way to do this as…

  • Can not add a child row to a row that hasn't got a child before

    Hi everyone, hope you can help me with this issue.

    I am using Infragistics 7.1 (CLR 2.0) in an ASP.NET 2.0 application. In a form I have a UltraWebGrid, bind to a dataset (with more than 1 table) to display hierarchical data. All data is display ok, and…