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…
  • 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…

  • 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…

  • 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…

  • 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…

  • 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…

  • 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" />…

  • 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…