Browse By Tags

  • XamTree HierarchicalItemTemplate with Drag and Drop

    I am trying to make the last item only dragable to a scheduler control. For the most part I have everything working, except the drag and drop. My treeView code is as followed:  

     <ig:XamTree x:Name="dataTree" Grid.Column="0" Bord…

  • XamTree inside busyindicator

    I have a XamTree inside busyindicator. The xamtree with checkbox visibility is true, and it binds to a Hierarchical.

    <ig:XamDataTree x:Name="pgaDataTree" NodeCheckedChanged="pgaDataTree_NodeCheckedChanged" >
           <ig:XamDataTree…

  • XamDataTree - DragAndDrop function

    I use your new XamDataTree control (NetAdvantage 2010.3) in my application.
    The DragAndDrop function works fine if I define it in the XAML file.
    Unfortunately, the function does not work, however, if I define it in the C# file. 
    I have an edit and a view…

  • Serious bug in the XamDataTree when disabling and re-enabling

    Populate the XamDataTree with some nodes.  Now disable the tree and then re-enable it.  It appears that the virtualized nodes are totally messed up or confused.  If anyone knows a work around for this, please let me know.  Disabling controls and later re…
  • xamdatatree drag drop within the parent node

    I looked into the implement Drag Drop for my XamDataTree control.http://help.infragistics.com/Help/Doc/WPF/2011.2/CLR4.0/html/xamDataTree_Drag_and_Drop.html

    But I want to limit the drag drop within the parent node and not allow to move the child node…

  • xamDataTree - issue about TargetTypeName set

    Hi, Please see my attachment solution zip.

    please see JgbAppTreeView.xaml

    <ig:XamDataTree x:Name="MyTree"
    ItemsSource="{Binding Path=TreeNodes}"
    >
    <ig:XamDataTree.GlobalNodeLayouts>
    <ig:NodeLayout Key="AppLayout"…

  • XamDataTree and Coded UI tests

    Hi,

    We are testing our Silverlight application with Coded UI tests. After Infragistics version update from 12.2 to 14.1 we have problems with XamDataTree control. With new version we are not able to handle XamDataTree control child controls using FindMatchingContlos…

  • Get ParentNode of XamDataTreeNode

    Please show me How to get ParentNode of a XamDataTreeNode?

    Thanks

  • XamDataTree - Disable scrolling for drag/drop between trees

    I have a situation in which I am dragging/dropping nodes between two XamDataTrees.

    Because my source tree contains many nodes, the auto-scroll feature is enabled. And when I attempt to drag/drop my selected node to my target tree, my source tree begins…

  • XamDataTree right click selecting node ?

    Hi,

    I'm trying to find a way to select a node with right-click before opening contextual menu.

    Is this possible ?

    Thanks for your help

  • XamDataTree - Drag/Drop Multiple Nodes Between Trees

    Hi,

    I have a situation in which I need to drag multiple XamDataTreeNodes between two XamDataTrees on the same Silverlight user control, but I haven't been able to find examples of how to do this.

    So I need to answer two questions:

    1. Is it possible…

  • XamDataTree and Edit Mode

    Hi,

    Is there a way to keep a XamDataTreeNode to stay in edit mode, even if it looses focus?

    My suspicion is that some other control takes the focus away from the node immediately after it has gone into edit mode.

    private void sequenceView_InitializeNode…

  • How to get VS2010 to reference new compiled Silverlight Assemblies?

    To help troubleshoot an elusive bug in my program, I thought having the NetAdvantage Silverlight source might help.

    So, I downloaded the 11.2 SR source and symbols and unzipped to folders, for brevity, say "source" and "symbols". 

  • ActiveItem property

    Hello,

    why there is no ActiveItem property on XamDataTree, as in XamGrid?

    Do you plan to add it in the 12.2 version?

    Thank you,

    Michael

  • Is there a way to implement filtering in xamDataTree?

    Hello,

    We need to implement filtering in xamDataTree contained hierarchical data (filtered items must be hidden). What is the correct way to do this?

  • Specifying a node to allow dragging/dropping.

    An example on allowing only certain nodes to be moved in the tree.

  • xamDataTree binding not works for parent check box selection

    Hi,

    I have hierarchies like one parent (p1) and three children (p1c1, p1c2, p1c3) with check boxes.

    Here when I check and uncheck children individually binding works fine.

    When I uncheck parent (p1) then check any children is not binding. In this…

  • Dependency between XamDataTree and DragDrop?

    My SL 5 app use XamDataTree. It is okay when I run it on one computer which install Infrisgistics 2012.

    But on another computer which does not install Infrisgistics 2012 but have all those assemblies referenced by app, I got the error when run the app…

  • Collapsing auto-generated node layouts

    Setting the height of the node layout to 0.

  • XamDataTree

    Hello,

    I don't anderstand why i can't show all level of my XML.

    I give you my XML :

     <? xml version="1.0" encoding="utf-8" ?>

     

     

    <

     

     

     

     

      dataroot >

     

     

    <

     

     

     

     

      Continents >

     

     

    <

     

     

     

     

      Name>Africa</Name >

  • XamDataTree SelectedNodesCollectionChanged firing on mouse over

    How to produce issue
    Add XamDataTree and subscribe to event SelectedNodesCollectionChanged and event is firing on mouse over.

    I found this forum entry in WPF which looks to raise the same issue:
    http://community.infragistics.com/forums/t/48667.aspx

     

  • How to streach the XamDataTreeNodeControl to the witdth of the container panel

    Hi,

    Has anyone tried to streach the tree nodes to the width of the container NodesPanel in the XamDataTree?

     

    Thanks,

    Meisam.

  • Paste Excel data to xamDataTree from clipboard

    Hello,

    Is there any way to paste Excel data to xamDataTree from clipboard?

    In my case I must paste some hierarchical data like this:

    Group 1    
      Subgroup 1  
        Item  1
        Item 2
         
         
      Subgroup…

  • The tag 'XamDataTree' does not exist in XML namespace 'http://schemas.infragistics.com/xaml'.

    I have just downloaded your Silverlight controls and i'm trying to test out using the xamDataTree. I have followed the instructions in the help by adding the following references to my project:

    InfragisticsSL5.v11.2.dll
    InfragisticsSL5.Controls…

  • Nested / custom node layout

    Hi,

    Basically, I have an object such as :

    public class MyClass
    {
            public MyClass2 PropertyA {...}
            public MyClass PropertyB {...}
            public ObservableCollection<MyClass3> PropertyC {...}
    }

    I'm trying to use the XamDataTree to render the properties…