Browse By Tags

  • Re: change colour in cell for whdg

    Hello Radoslav,
    I will try to explain you the running, then I will give you the code:
    I have a dropdown List with some data. The grid data depend on the value choosen in this dropdownlist. Please see in picture I have enclosed:
    (I have also enclosed…
  • how to expand children of a single row in WebHierarchicalDataGrid

    I am looking to expand the children of just a single row of my WHDG in my code behind.

    I am doing this in a different part of my application using a WebDataTree like this:

    WebDataTree1.Nodes[0].ExpandChildren();

    Does a method similiar to this exist…

  • Re: Sys.ArgumentException: Value must not be null for Controls and Behaviors. Parameter name: element

    Is there anything on this? PLEASE? I have tried using this same or even more simplified grid on different pages, using SqlDatasources/WebHierarchicalDatasources, removing columns to just 1 integer in the parent and 1 integer in the child, creating from…

  • difference between Firefox and IE

    When using the webhierarchicaldatagrid (version 2009.2) from Infragistics everything works fine in Firefox. I see 'master' data with 'child' data. When viewing the same page in IE it looks terrible. We can select the text and then we see it highlighted…

  • Re: WebHierarchicalDataGrid LINQ Object Binding

    Hi Alexander

    I am also facing same problem I have a grid and binding data upto 2 levels with dataset now on click on expand row no other data is not coming error: - Runtime Exception: No child grid script descriptors are available.

    <ig:WebHierarchicalDataGrid…

  • Re: Child band datasource grabbing entire database every time I expand the child

    I found that you can do something like this

            ContainerGrid childGrid = new ContainerGrid();
            childGrid.Band = WebHierarchicalDataGrid1.Bands[0];
            e.Row.RowIslands.Add(childGrid);

    if you have an existing band declared in markup, athough it gives me a casting…

  • Re: WebHierarchicalDataGrid LINQ Object Binding

    Hi Lyuba,

    When i tried to create a sample application with sample data. and grid is working fine with the same code only binding table is changed.

    The difference is the my original table is original data contains null, empty, data columns. i think it…

  • Re: WebHierarchicalDataGrid LINQ Object Binding

    Aspx Page :
    <body leftmargin="0" topmargin="0" rightmargin="0">
        <%--<script language="javascript" type="text/javascript">
     
         function rowExpanded(grid, args) {
             var row = args.get_row…