DataBinding and Datagrid

Hello..

IM fairly new to Flex so please, be gentle.

I created a database and writes a CF file to create an XML file to populate the DataGrid in my Flex application.
My datagrid fills a lot but when I click on an item in the grid, I can't the details to reinvest in the Details section

Ex Datagrid

FIRST NAME LAST NAME
Craig Wiseman



Output
Craig Wiseman 123 Street hand Brantford, Ontario


So if I click on the name, the output should appear

in my grid, I have
< mx:DataGrid id = dataProvider = "{feedRequest.lastResult.rss.channel.item 'dgPost'} '"
< mx:DataGridColumn headerText = "first name" dataField = "FirstName" / >
< mx:DataGridColumn headerText = "lastName" dataField = "lastName" / >


Then, for the release, I
< mx:Label text = "{dgPost.firstName}" low "50" = left = "300" / > ""
< mx:Label text = "{dgPost.lastName}" low "50" = left = "350" / > ""
< mx:Label text = "{dgPost.address}" low "50" = left = "400" / > ""


Thank you

Try:
Text = "{dgPost.SelectedItem.FirstName}" "
Tracy

Tags: Flex

Similar Questions

  • Print a page with text, image and datagrid

    I have an AIR application.

    I want this app to print a set of text, image and datagrid.

    I thought that of about in 2 ways:

    -create html file, so the application writes just the text in a file. Then the application can open it with the native browser but I don't know that it can print the HTML interpreted.

    -Add text, the image and the datagrid to a Sprite and print with PrintJob. But then I think that I can't use flex layout to create the page.

    How would you?

    Why not use PrintDataGrid and FlexPrintJob?

  • Update charts and datagrids based on selection

    I have trying to find documentation and examples explaining how I can choose something in a combobox control and do fill a series of datagrids and charts.

    GUIDELINES:

    Has. using a table XML of all municipalities in our region populate a combobox.  Then have the user select the municipality they are interested.

    B. take a picture of census which is in XML format and using HTTPServices read it in Flex and then based on what the user selected municipality fill a datagrid and a variety of graphs with data pertaining to the muni.

    I know that it is done because I see it all the time and took a class last week where it has been shown.  Unfortunately, it was the last day of the class and time was running out, so we received a brief overview of this.

    I would be very appriciate anyone who can tell me the samples and documentation either online or in books.  And I should mention that the terminology is always a problem.  I'm trying to do a custom event or what?

    The code below all the works.  What I want to say that I am filling successfully control combobox and datagrid with the appropriate data.  I'm not able to get the two communicate with each other.  In other words the datagrid is showing the whole table and ignoring the combobox.

    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:Application xmlns:mx = "http://www.adobe.com/2006/mxml"
    Layout = "vertical".
    creationComplete = "initApp ()" >

    < mx:Script >
    <! [CDATA]
    Mx.rpc.events import. *;
    Mx.controls import. *;
    Mx.charts import. *;
    Import mx.collections. *;

    [Bindable]
    private var acMuni:ArrayCollection = new ArrayCollection collection;
    [Bindable]
    private var acCity:ArrayCollection = new ArrayCollection collection;

    private function initApp (): void {}
    muniHS.send ();
    cityHS.send ();
    }

    private void eHandler(e:ResultEvent):void {}
    acMuni = e.result.GetAllMUNIS.MUNIS;
    }

    private void fHandler(e:FaultEvent):void {}
    var faultInfo:String = "error code:"+ e.fault.faultCode + "\n\n"; "
    "faultInfo +=" error string: "+ e.fault.faultString+"\n\n;
    mx.controls.Alert.show (faultInfo, "lack of information");

    var eventInfo:String = "event target:"+ e.target+"\n\n"; "
    ' type of event eventInfo += ":"+ e.type+"\n\n;
    mx.controls.Alert.show (eventInfo, "Event information");
    }

    private void eCityHandler(e:ResultEvent):void {}
    this.acCity = e.result.GetCITIES.CITIES;
    }
    []] >
    < / mx:Script >

    < mx:HTTPService id = "muniHS".
    URL = "" Data / GetAllMunis.Xml ""
    result = "eHandler (Event)" "
    Fault = "fHandler (Event)" "
    showBusyCursor = "true" / >

    < mx:HTTPService id = "cityHS".
    URL = "" Data / CityNames.Xml ""
    resultFormat ="object"
    result = "eCityHandler (Event)" "
    Fault = "fHandler (Event)" "
    showBusyCursor = "true" / >

    < mx:Panel width = "100%" height = "50%".
    paddingBottom = "10".
    paddingLeft = "10".
    paddingRight = "10".
    paddingTop = "10" title = "DataGrid" >

    < mx:ComboBox id = "muniCB".
    dataProvider = "{acCity}".
    message = "SΘlectionner town".
    labelField = 'city' / >

    < mx:DataGrid id = "dg".
    Width = '100% '.
    Height = "100%".
    dataProvider = "{acMuni}" >
    < mx:columns >
    < mx:DataGridColumn headerText = "municipality" dataField = "City" / >
    < mx:DataGridColumn dataField = "year" / >
    < mx:DataGridColumn headerText = "month" dataField = "month_no" / >
    < mx:DataGridColumn headerText = "labor force" dataField = "laborforce" / >
    < mx:DataGridColumn dataField = "employee" / >
    < mx:DataGridColumn dataField = "unemployed" / >
    < mx:DataGridColumn headerText = "unemployment rate" dataField = "unemp_rate" / >
    < mx:DataGridColumn headerText = "tract" dataField = "geogkey" / >
    < mx:DataGridColumn headerText = "tract extended" dataField = "geogkeyx" / >
    < / mx:columns >
    < / mx:DataGrid >
    < / mx:Panel >
    < / mx:Application >

    Thanks for any help you can provide

    Richard Krell

    If the position meets your querstion or help, please mark it as such.

    First, use XMLListCollection to the data for the ConboBox and the xlcMuni result with Manager (instead of acMuni).

    Here is a simplified version of your app with the answer. It uses e4x for the filtering syntax.

    http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=13_Working_with_XML_03.html

    -CityNames.xml-



      Chicago
      New York City
      Boston

    -GetAllMunis.xml-



     
        Chicago
        1866
     

     
        New York City
        1872
     

     
        Boston
        1756
     

    -MainApp.mxml-


    http://www.Adobe.com/2006/mxml '.
    creationComplete = "muniHS.send ();cityHS.send();" » >
     
        Import mx.events.ListEvent;
    Mx.rpc.events import. *;
    Mx.controls import. *;
    Mx.charts import. *;
    Import mx.collections. *;
     
    [Bindable] private var xlcMuni:XMLListCollection = new XMLListCollection;
    [Bindable] private var xlcCity:XMLListCollection = new XMLListCollection;
    [Bindable] private var xlcDG:XMLListCollection = new XMLListCollection;
     
    private void eHandler(e:ResultEvent):void {}
    this.xlcMuni = new XMLListCollection (... with e.result);
    }
     
    private void eCityHandler(e:ResultEvent):void {}
    this.xlcCity = new XMLListCollection (e.result.city);
    }
         
    private void populateDG(evt:ListEvent):void {}
    var temp: XMLList = xlcMuni.copy ();
    xlcDG = new XMLListCollection (temp. () city is ComboBox (evt.currentTarget) .selectedItem));
    }
    ]]>
     

     
    useProxy = URL "" Data / GetAllMunis.xml ' = 'false' "
    result = "eHandler (Event)" / > "
     
    resultFormat = "e4x" result = "eCityHandler (event)" / > "
     

       
    prompt = labelField 'Select a common' = 'city '.
    change = "populateDG (Event)" / > "
       
    dataProvider = "{xlcDG}" >
         
           
           
         

       
     

  • Scroller and DataGrid

    Hi all

    The problem, I'm trying to solve is have scroll bars (vertical and horizontal) for a grid of data with a large number of columns. I thought it wise to use scroller since I use flex 4. He horizotal scroll bar seems to work as expected, but the vertical scroll bar appears only at the end of the last column (see code below). If the user has at the end using the horizontal scroll bar, then find the verticall bar, then scroll down, I hope someone can point would it be a solution. My research has allowed to http://blog.flexexamples.com/ , and I tried the code change, y

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:fx s:Application ' http://ns.Adobe.com/MXML/2009 "
    xmlns:s = "library://ns.adobe.com/flex/spark".
    xmlns:MX = "library://ns.adobe.com/flex/mx" minWidth = "955" = "600" minHeight
    Initialize = "initData ()" viewSourceURL = "srcview/index.html" > "
    < fx:Declarations >
    <! - Place non-visual elements (e.g., services, items of value) here - >
    < / fx:Declarations >
    < fx:Script >
    <! [CDATA]
    Import mx.collections.ArrayCollection;
    private var arr:Array = new Array();
    [Bindable]
    private var ac:ArrayCollection = new ArrayCollection (arr);
    private void createObj(i:int):Object {}
    var o: Object = new Object();
    var j: int;
    for (j = 0; j < 375; j ++) {}
    o [j] = "Hello" + i + ""+ j; "

    }
    Return to o;
    }
    private void initData (): void {}
    var i: int;
    var j: int;
    var o: Object;
    for (i = 0; i < 50; i ++) {}
    o = createObj (i);
    ac.addItem (o);
    }
    }

    []] >
    < / fx:Script >

    < s:Group height = "100%" id = "p" verticalScrollPosition = "200" clipAndEnableScrolling = "true" >
    < mx:DataGrid x = "10" y = "5" dataProvider = "{ca}" height = "85%" / >
    < / s:Group >

    < s:Scroller x = "10" y = "10" width = "90%" height = "80%" viewport = "{p}" >

    < / s:Scroller >

    < / s:Application >

    DataGrid has its own scroll bars.  Get rid of the wheel.  If you set

    horizontalScrollPolicy = 'on' for the DataGrid and minWidth = "0" and

    percentWidth = '100% ' what's happening?

  • XML and DataGrid

    I am struggling with XML in a DataGrid. You can someone tell me how to fill the dataField for firstName, lastName, and username, given the XML code below? Thanks for your help.

    <? XML version = "1.0"? >
    " < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML ">

    < mx:XMLList id = "userData" >
    < user >
    < user username = "fxxxxx" firstName = 'Auntie' LastName As String 'Hope' = >
    < publication pubId = '9' pubTitle = 'Daily News' >
    < political policyId = '9' policyDescription = "Questions to deliver" policyname = "DeliverIssues" / >
    < / publication >
    < / user >
    < user userId = "fyyyyy" = "Lele" firstName LastName As String = "Herr" >
    < publication pubId = '9' pubTitle = 'Daily News' >
    < policy policyId = '1' policyDescription = policyname 'Manage groups' = "ManageGroups" / >
    < / publication >
    < / user >
    < / users >
    < / mx:XMLList >

    < mx:Panel title = "DataGrid Control Example" height = "100%" width = "100%".
    paddingTop = "10" paddingLeft = "10" paddingRight = "10" >

    < mx:DataGrid id = "dg" width = "100%" height = "100%" number of rows = "5" dataProvider = "{userData}" >
    < mx:columns >
    < mx:DataGridColumn dataField = "firstName" headerText = "FirstName" / >
    < mx:DataGridColumn dataField = "lastName" headerText = "lastName" / >
    < mx:DataGridColumn dataField = "userId" headerText = "Email" / >
    < / mx:columns >
    < / mx:DataGrid >

    < mx:Form width = '100 percent"height ="100% ">
    < mx:FormItem label = "name" >
    < mx:Label text="{dg.selectedItem.firstName}"/ >
    < / mx:FormItem >
    < mx:FormItem label = "name" >
    < mx:Label text="{dg.selectedItem.lastName}"/ >
    < / mx:FormItem >
    < mx:FormItem label = "userId" >
    < mx:Label text="{dg.selectedItem.userId}"/ >
    < / mx:FormItem >
    < / mx:Form >
    < / mx:Panel >
    < / mx:Application >

    Just in case where you have not yet:


    http://www.Adobe.com/2006/mxml">
     
       
         
           
         

       

       
         
           
         

       

     

     
    paddingTop = "10" paddingLeft = "10" paddingRight = "10" >
       
         
           
           
           
         

       

       
         
            {dg.selectedItem.@firstName}"/ >}
         

         
            {dg.selectedItem.@lastName}"/ >}
         

         

            {dg.selectedItem.@userId}"/ >}
         
           
             
     

  • problem with webservice and datagrid

    I am filling a datagrid with a set of results from a CF webservice and everything works fine except when I add the datagridcolumns. It seems to fill the grid, but all the lines are white.

    This is a basic Web service call that returns a result set of a search for the query and if I do not add the datagridcolumns it works fine, but as soon as add the datafridcolums it seems to fill the grid, but all lines are empty.

    Here is the MXML that works: uncomment the datagridcolumns and it does not display the data.

    <? XML version = "1.0"? >
    <!-simple example to demonstrate the WebService tag. ->
    "< mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml" > "

    "" < mx:WebService id = "ws" wsdl = " http://localhost/mydata.cfc?wsdl"
    useProxy = "false" >
    < mx:operation name = "getMyData" >
    < mx:request >
    < user name > {userId.text} < / userId >
    < / mx:request >
    < / mx:operation >
    < / mx:WebService >


    < mx:Panel title = "Example of WebService" height = "75%" width = "75%".
    paddingTop = "10" paddingBottom = "10" paddingLeft = "10" paddingRight = "10" >

    < mx:Label width = '100% ', color = 'blue '.
    Text = "enter user name" / >

    < mx:TextInput id = "userId" text = "" / >
    < mx:Button label = "Get the items" click = "ws.getMyData.send ()" / >

    < mx:DataGrid id = "dg" width = "100 percent" dataProvider = "{ws.getMyData.lastResult}" >
    <!-< mx:columns >
    < mx:DataGridColumn dataField = "col1" headerText = "Col 1" / >
    < mx:DataGridColumn dataField = "col2" headerText = "Col 2" / >
    < mx:DataGridColumn dataField = "col3' headerText ="Col 3"/ >
    < mx:DataGridColumn dataField = "col4" headerText = "Col 4" / >
    < / mx:columns >->
    < / mx:DataGrid >

    < / mx:Panel >
    < / mx:Application >

    WebService:

    < cfproperty >

    < cffunction access = "remote" name = "getMyData" output = "" returntype = "query" >

    < name cfargument = "userId" type = "string" required = "yes" >

    < cfquery name = "thisQuery" datasource = "somedsn" >
    SELECT
    col1, col2, col3 col4
    Of
    sometable
    WHERE
    userId = "#userId #
    < / cfquery >

    < cfreturn thisQuery >

    < / cffunction >

    < / cfproperty >

    all of the examples I looked at simply use the column name to bind to the column of the grid... What don't get me? Thank you.

    Thank you, that's what I thought and if you look at the commented code that's what I did...

    However, it turns out that... that the Web service returns the column names in all CAPS... I did a dump test and noticed just so the fields were empty until I changed the dataField = "COL4" ex...

    its case...

  • Need help on xml and datagrid

    Hi all

    I'm fighting with xml data as my dataProvider for my datagrid. I hope someone can look at this and see what the devil I'm doing wroing. No matter what I try my datagrid columns are empty.

    I tried several variations, changing the dataprovider to myApprovalsXML... viewentries... myApprovalsXML or entrydata etc. as well as the evolution of the datafields. I get lines but empty column values.

    Thanks in advance for any help!

    Sujit thanks

    Which worked great!

  • ItemRenderer and DataGrid problem

    Hi guys.

    I'm on the creation of a small application which simply pulls information from an XML file, it is displayed in a DataGrid control and allows the user to filter and search. First things first though; I'll explain what I have so far and detail my problem.

    I retrieve the XML file by HTTPService and then put the results in a collection of ArrayCollection Bindable. When the source of the Datagrid control is set to this ArrayCollection collection, it works fine. What I'm trying to do in the first, use an itemRenderer in a column that displays lines of text based on the values of the current line.

    For example, the structure of my XML file is (approximately):

    < content >
    < name > name1 < / name >
    < description > Description goes here < / description >
    Yes < audience1 > < / audience1 >
    < audience2 > not < / audience2 >
    Yes < audience3 > < / audience3 >
    < / content >

    So what I'm trying to do, it's the public each piece of 'content' is set to Yes for the group. Under the 'Public' column in the datagrid control, the above content would say

    "Audience1.
    Audience3 ".

    as this was a Yes value between 1 and 3 public. I tried to write very basic code within the itemRenderer by which I have replaced the game of public data and do some checks here, but it never seems to work right. I tried to use arrays in this for store public courses, but I clearly do not have the right format for it.

    There must be a better way to do this. I'm fairly new to Flex and AS3 (summer use AS2 for quite awhile now) but I have the feeling, there is a way to store the list public rows in a model of object/table/so I can refer to it later (I intend to filter these results by type of audience later so I think I'll have TO do it this way later). I read a lot of tutorials and guides, but honestly, I don't know where to look for more, none of them does not appear to cover this specific problem.

    I hope this makes sense to you guys and eventually you could give me guidance would be greatly appreciated.

    See you soon

    If you want to just display a concatenated string representing the nodes where the public [n] has a value of 'Yes', you can do this by using a labelFunction(), which is much simpler to use a converter element

    Tracy

  • Problems on collection ArrayCollection and DataGrid

    Hi people!
    I have a problem of ugly...
    in the my application, I have a datagrid named DG and its dataprovider is bound as an ArrayCollection called AC collection.
    A result of the query contains the AC...

    Ok.. So far so good...

    the problem just when I try to select an object in AC by name...
    AC has done like this:
    0 objecthjh324jghf7
    1 objectd5674567
    2 objectAaagohrtt
    3 object4534c45jg

    so I can choose an object by its index (0,1,2,3... ecc)
    but not by name (objectxxxxxx)

    I might want the names of the objects are the name of the column (such as ID, NAME, NATION, phone ecc)

    is this possible?
    now, if I want the object ID in KT (i.e. the ID column in my datagrid DG), I have to check with a loop from 0 to col_number to find some AC (loop_value) USER.USER

    EDIT
    example:
    If my first column of the DG's 'id', I want to use something like "myDataGrid.columns ('id')", now I have to use this "myDataGrid.columns (0)»
    EDIT
    Help me please! : D :D

    PS: Sorry for my bad English... ^ _ ^

    "Amy Blankenship" wrote
    in the message news:[email protected]...
    >
    > "123qweads" wrote in message
    > news:[email protected]...
    > okay...
    > maybe I made a few mistakes in my last posts.
    > I'll try to explain better my problem...
    >>
    > my problem is to give a name to myDG.columns
    > (before I talk about DATAGRID...) Sorry! I'm guilty... but the problem
    > is
    (> the same)
    >>
    > myDG.colums is a TABLE and I can get you an object index for example
    > myDG.colums (1) .dataFiled or myDG.colums (2) .visible ecc...
    > If I can give a name for the elements of each array, I could take an object by
    > its
    > name for example myDG.colums (ID) .dataFiled or myDG.colums (PRICE) .visible
    > ecc...
    >>
    > Today I discovered how give an object name in the ARRAYCOLLECTION collection... in
    > This
    > way
    > var o: Object = new Object();
    > o [namecol1] = myObject1;
    > o [namecol2] = myObject2;
    > myAC.addItem (o);
    >>
    > works very well and myAC I find namecol1, namecol2, namecol3 instead
    (0), (1), (2) but when I convert collection ArrayCollection in table online
    >>
    >>
    >>
    > I lost all the name of the object... and remains only the information from the object (i.e. the)
    > column
    (> information as dataField, visible, headerText, etc.)
    >>
    > WHY DO I WANT TO DO?
    > I want to write a function that hide certain columns...
    > now, my function is O (n * m), where n< m="" but="" if="" i="" can="" resolve="">
    > problem
    > my function become o (n)
    > and it's a good thing
    >>
    >>
    >>
    >>
    > BAD! (now)
    > public void HideColums(col:Array,_myDataGrid:DataGrid):void {}
    > for (var x: int = 0; x)< col.length;="">
    > for (var i: int = 0; i< mydatagrid.columncount;="">
    > If (myDataGrid.columns .dataField ==
    (> col [x]) myDataGrid.columns
    .visible = false;
    >> }
    >>
    >>
    > GOOD (after your explanation)
    > public void HideColums(col:Array,_myDataGrid:DataGrid):void {}
    > for (var x: int = 0; x)< col.length;="">
    > myDataGrid.columns [col [c] m:System.NET.SocketAddress.ToString ()] .visible = false;
    >> }

    try (somewhere in your result handler that takes care of your objects):

    var sampleObj:Object = myQuery [0];
    columnNames = []; should be set on a global scale
    for {(prop: String en sampleObj)}
    columnNames.push (prop);
    }

    now:

    public void hideColumns(columnsToHide:Array,_myDataGrid:DataGrid):void {}
    for (var x = 0; x)< columnstohide.length;="">
    myDataGrid.columns [columnNames.indexOf (columnsToHide [x])] .visible = false;
    }
    }

    Note This is not tested, but it's the first thing I would try

  • ViewStack Set SelectedIndex and datagrid SelectedIndex in a single click.

    Hello
    Please help me. I have a viewstack with canvas 4 (pages). The first is as an index, with images with the 'click' action that needs to do this:
    1. the viewstack selectedIndex value 1, 2, or 3
    2. set the selectedIndex property of a datagrid which lie in the canvas, 2, 3 or 4 of the viewstack.

    I tried with:
    "< mx:Image '415' = x y ="26"source="assets/imgs/inicio/dno_01.jpg "click ="pages.selectedIndex = 2; dataGrid1.SelectedIndex = 2; "/ >

    and with

    : < mx:Script >
    <! [CDATA]
    private function circ_01 (): void {}
    pages.selectedIndex = 1;
    gridProyectos.selectedIndex = 5;
    }
    []] >
    < / mx:Script >
    "< mx:Image '331' = x y ="26"source="assets/imgs/inicio/arq_01.jpg "height ="69"width ="69"click ="circ_01 (); "/ >

    but the first time I click only define canvas page viewstack, but not the index on the data grid. BUT the second time I click I put the viewstack/canvas page and index in the datagrid control.

    I really don't understand.

    Thank you very much!

    I guess the problem is that objects in paintings are not instantiated until they are displayed for the first time.
    So, what you probably want to set the index of a datagrid control that has not yet been created.

    You may use the creationComplete event in each canvas to change the index of the grid?
    Or maybe you could hang something up to the outbreak of childIndexChange of the view stack.

    HTH / Culme

  • DB and datagrid

    Hi I have a button that when I click on it it calls an http service that call a php file for information and put it in a datagrid. After that, I assign the data using datagrid selectindex. My question is:
    Why I have to click 2 times for the data displayed?, I don't know if I click once, it will display in the datagrid control, but do not the data once I click 2 times.

    Thank you.

    Hello

    You should listen to the result (as in flash Complete event) event to handle the returned data

    http://livedocs.Adobe.com/Flex/2/langref/MX/RPC/HTTP/HTTPService.HTML#event:result

    private void onHttpServiceComplete(e:ResultEvent):void
    {
    L0. Text = e.result...
    D0. Text = e.result...
    P0.source = e.result...

    }

  • &amp; quot; Lock &amp; quot; dataProvider when creating tables and DataGrids in loop

    I'm a loop in each element in an array and for each item, I try to create a new DataGrid on a new canvas and add each canvas of a ViewStack.

    I'm having problems in setting the dataProvider for the DataGrids. As part of the loop, I create a new ArrayCollection collection to serve the created for the latest DataGrid dataProvider. But since the loop uses a single ArrayCollection variable collection iterates the loop every time a new ArrayCollection collection is created, and created DataGrids dataProviders previously point to the new collection of ArrayCollection, rather than one that was created during the iteration. For example, I can end up with 10 DataGrids (on 10 paintings) in the ViewStack and all their dataProviders will point to the latest collection created ArrayCollection, rather than the collection created ArrayCollection in the same iteration of the loop that created this respective DataGrid.

    Is there a way to take a "cliché" (for lack of better terms) static of an ArrayCollection collection in each iteration and use it as the dataProvider for the newly created in this same iteration DataGrid? Any help or insight is appreciated.

    I think that I fixed it. Moving var dgArray:ArrayCollection; above dgArray = new ArrayCollection collection; seems to have done the trick and logical sense.

  • PHP and datagrid dataprovider

    I try to get data that was returned by a php to good page... in fact appear in the datagrid control.
    This is the data returned by php:

    Quote:
    <>projects
    < project >
    < KKIreff >
    54
    < / KKIreff >
    < Klantreff >
    45
    < / Klantreff >
    < date >
    2008-06-21
    < / datum >
    < status >
    Nieuw
    < / status >
    < GeplLev >
    Nog niet location
    < / GeplLev >
    < TotKasten >
    666
    < / TotKasten >
    < / project >
    < project >
    < KKIreff >
    4
    < / KKIreff >
    < Klantreff >
    5
    < / Klantreff >
    < date >
    2008-06-25
    < / datum >
    < status / >
    < GeplLev >
    Nog niet location
    < / GeplLev >
    < TotKasten >
    5
    < / TotKasten >
    < / project >
    < / project >
  • What is the maximum number of rows for lists and DataGrids?

    Anyone know?

    Or at least to know if the maximum value allowed is based on the total number of rows or cells?

    I'd appreciate any help.

    You'll run out of memory before running the other stuff.  Length is an int.

    While it can hold 2

  • DataGrid Drag and Drop

    Drag-and - déposer works very well on visually in flex, but I use the control to manipulate an XML object in flex. It works to a certain extent, but duplicated the item instead of moving. It will also update the XML object correctly.

    Here is an example < and source < http://www.cgfolio.com/dragExample/DragDrop.html >

    Excellent! The fix worked and datagrid drag and drop feature works perfectly! Thanks for all the help guys!

Maybe you are looking for