Using a (Adv)datagrid as an AdvancedDataGridRendererProvider

HI
I have nested array(Hierarchical) data. I want to display the toplevel array as depth1 in an Advanced Data Grid, then at depth 2 when the data (tree) is opened display the nested array in another grid(advanced or normal).
This works to some degree, but as expected the item renderer renders a grid for each row of nested data.  What I want is one grid with all the nested data. The way nested data shows normally is to have both headers for each depth showing in the main grid.. I only want to show the headers and nested data if the user chooses to do so.
I can arrange the data anyway that is needed, as I'm pulling it from mysql via php.
This is my renderer (simple)
<?xml version="1.0" encoding="utf-8"?>
<VBox xmlns="http://www.adobe.com/2006/mxml" width="100%" height="200">
<AdvancedDataGrid  dataProvider="{data}" width="100%" height="100%" >
<columns>
<AdvancedDataGridColumn dataField="pp_job_number" headerText="Job Number"/>
<AdvancedDataGridColumn dataField="pp_short_description" headerText="Description"/>
<AdvancedDataGridColumn dataField="approvalmanufacturing" headerText="Final Date"/>
</columns>
</AdvancedDataGrid>
</VBox>
This is my grid
<AdvancedDataGrid sortExpertMode="true"
id="contractsGrid" width="100%" height="100%" itemClick="openContractForEditting(event)"
variableRowHeight="true" defaultLeafIcon="{null}"
folderOpenIcon="{editImage}" folderClosedIcon="{editImage}"
>
<rendererProviders>
<AdvancedDataGridRendererProvider
columnIndex="1"
columnSpan="0"
depth="2"
renderer="view.jobRenderForAdvancedDataGrid"/>
</rendererProviders>
<dataProvider>
<HierarchicalData source="{contracts_array}" childrenField="jobinfo" />
</dataProvider>
</AdvancedDataGrid>
I can get the grid the way I want but have depth issues.
if I add dataField="jobinfo" to AdvancedDataGridRendererProvider and then change the renderers' data provider to dataProvider="{data.jobinfo}"
Then I get all the nested data in one grid, BUT the grid is not nested it will only show up at depth 1, on top of all the main details.
help
TIA
flash

Figured it out, I had to nest my array.......
Array
    [0] => Array
            [0] => Array
                    [contracts_id] => 2
                    [contract_number] => MD-BLD-LA-XXXXX-01
                    [property_name] => Blue Bus
                    [licensee_name] => Ripple Bus
                    [formated_contract_start_date] => Wed Jan 14th, 2009
                    [formated_contract_end_date] => Tue Mar 31st, 2009
                    [contract_recived] => 0
                    [main_contact] => Test User RJ1
                    [bu_contact] => fred ward
                    [licensor_name] => MediaBus
                    [brand_liaison] => fred ward
                    [brand_liaison_bu] => fred ward
                    [brand_manager] => fred ward
                    [children] => Array
                            [0] => Array
                                    [jobinfo] => Array
                                            [0] => Array
                                                    [pp_job_number] => MD-BR-LA-34527-01-FREDTEST
                                                    [pp_short_description] => FRED comments
                                                    [approvalmanufacturing] =>
                                            [1] => Array
                                                    [pp_job_number] => MD-BR-LA-34527-01-1234
                                                    [pp_short_description] => hh
                                                    [approvalmanufacturing] =>
                                            [2] => Array
                                                    [pp_job_number] =>
                                                    [pp_short_description] => comment
                                                    [approvalmanufacturing] =>

Similar Messages

  • How to use placeSortArrow in datagrids ?

    What is the right way to use placeSortArrow() in dataGrids ?
    The documentation says :" Draw the sortArrow graphic on the
    column that is the current sortIndex."
    But now, how to set the "curernt Sort Index", there is
    actually no property for that.
    I tried also to set an undocumented dataGrid attribute -
    sortColumn - to be the column on which I do the sort, then to call
    placeSortArrow(), but nothing is drawn...
    Does somebody know how to use this function ?
    Thanks

    Try the following:
    const char *nameVal = "русский";
    XmlData data((void *)nameVal, strlen(nameVal));
    XmlQueryContext qc = mgr.createQueryContext();
    XmlValue nodeName(XmlValue::STRING, data);
    qc.setVariableValue("name", nodeName);Lauren Foutz

  • How to get selected values (using checkBox) from DataGrid in flex.

    i have a datagrid which is getting values from a XML file (getting this xml file from database using PHP and HTTP request in flex). i have created a checkbox in every row in data grid. and here is my requirement: i want to select tow or three check-box and would like to get all the values form that particular ROWs in some form , prefered arraycollection (such that i can pass this array directly to a bar chart) .. can some one help me as i am new to flex .
    code ......
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="siteData.send()">
              <mx:Script>
                        <![CDATA[
                                  import mx.collections.XMLListCollection;
                                  import mx.controls.*;
                                  import mx.events.ListEvent;
                                  import mx.rpc.events.ResultEvent;
                                  import mx.controls.Alert;
                                  [Bindable] private var fullXML:XMLList;
                                  private function contentHandler(evt:ResultEvent):void{
                                            fullXML = evt.result.values;
                        ]]>
              </mx:Script>
              <mx:VBox>
                        <mx:Label text="This Data Grid is loading the full XML file"/>
                        <mx:DataGrid width="600"  id="datagrid" dataProvider="{fullXML}">
                                  <mx:columns>
                                            <mx:DataGridColumn headerText="Select">
                                                      <mx:itemRenderer>
                                                                <mx:Component>
                                                                          <mx:HBox horizontalAlign="center">
                                                                                    <mx:CheckBox id="check"/>
                                                                          </mx:HBox>
                                                                </mx:Component>
                                                      </mx:itemRenderer>
                                            </mx:DataGridColumn>
                                            <mx:DataGridColumn dataField="release_version" headerText="Release"/>
                                            <mx:DataGridColumn dataField="build" headerText="build"/>
                                            <mx:DataGridColumn dataField="time_login" headerText="time_login"/>
                                            <mx:DataGridColumn dataField="time_tunnel" headerText="time_tunnel"/>
                                            <mx:DataGridColumn dataField="rate_login" headerText="time_tunnel"/>
                                            <mx:DataGridColumn dataField="rate_tunnel" headerText="rate_tunnel"/>
                                  </mx:columns>
                        </mx:DataGrid>
              </mx:VBox>
              <mx:HTTPService url="http://localhost/php_genxml.php" id="siteData" result="contentHandler(event)" resultFormat="e4x"/>
    </mx:Application>
    as you can see in the image , i will get this datgrid . now i want to select two or three checkboxes and would like to get all the values form the perticular row (for which check box is selected). i would like to get in array from such that i can driectly pass them to bar chart....
    can some one help me in this. as i m new to flex. or if you have some other suggestion ...My final requirement is: select some values and generate bar gharph for those values.
    please help me in this.
    thanks
    tanuj

    Hi Timo -
    Thanks for the suggestion. I could get the values as below:
    public void multiOpUnitValChange(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding opUnitIter = (DCIteratorBinding)bindings.get("OperatingUnit2VOIterator");
    Integer[] values = (Integer[])valueChangeEvent.getNewValue();
    for (int i=0; i<values.length; i++){
    Row row = opUnitIter.getRowAtRangeIndex(i);
    System.out.println(row.getAttribute("OpUnitId"));
    Thanks -
    Rohit

  • Question about Using States in DataGrid Item Renderer

    I have a DataGridColumn with an ItemRenderer that extends the
    Box component. The default display is a Text component. When the
    user clicks on the text component, I change the State to add a
    PopUpMenuButton child, and make the Text component invisible. This
    works fine. However, I only want to allow one PopUpMenuButton to be
    visible in the DataGrid at a time (similar to how an itemEditor
    works). I don't want to use an itemEditor, because I've run into
    too many problems trying to get that to work in this instance.
    I am implementing IDropInListItemRenderer in my itemRenderer,
    in order to access the listData property, which will give me the
    owner (DataGrid), but I don't know how to "turn off" the "editing"
    state in other itemRenderers in the DataGrid.
    How can I accomplish this?
    Thanks.

    Here we go. I simply added an Listener for Change Events in
    the listData.owner - if it is triggered, i update the currentState
    to null. Works like a charm. Much easier than trying to access the
    itemRenderers in the column and resetting them all. Better on
    performance too.

  • Summary Row on adv. datagrid with no dataprovider

    Hello,
    Just new to Flex and still need to find out some things.
    Created two advanced datagrids, the first WITH a dataprovider returning articles .. the second datagrid was added as a sort of Shopping cart and has no dataprovider.
    I'm able to drag and drop articles from datagrid1 to datagrid2 (shopping cart), but I'm unable to show "Total price" at the bottom of the shopping cart.
    Seems logical since it need data to make summary SUM field, but how can I tackle this best?
    1. add empty dataprovider?
    2. create an datacollection on the fly?
    <mx:dataProvider>
          <mx:GroupingCollection id="gc" source="CREATE DATACOLLECTION FROM ACTUAL PRESENT DATA">
            <mx:Grouping>
               <mx:GroupingField name="Territory">
                <mx:summaries>
                  <mx:SummaryRow summaryPlacement="group">
                    <mx:fields>
                      <mx:SummaryField dataField="Price"
                        label="Total" operation="SUM"/>
                                      </mx:fields>
                  </mx:SummaryRow>
                </mx:summaries>
              </mx:GroupingField>
            </mx:Grouping>
          </mx:GroupingCollection>
        </mx:dataProvider>
    Please advice.
    thanks a million
    TomBr   

    looks like it didn't understand correctly. Solution beneath is not adding a new row, but is only a solution for adding an extra column with some calculated value.
    Am I correct that there is no default function for adding an extra row with the SUM of a column?
    ok, added a datagrid since (as you mentioned) I'll need it anyway.
    After adding a datagrid and creating a httpservice that can load data into the shopping cart, I'm still unable to add the SummaryRow with Totals
    As soon as I remove the dataprovider="{getshopcartdataArray}" parameter from "<mx:AdvancedDatagrid" and add the extra <mx:dataProviderpart (with source pointing to correct DP) ... nothing works: loading data doens't work, drag/drop doens't work anymore and total row is not seen anyware
    this is the datagrid and this is the page I used creating this: http://livedocs.adobe.com/flex/3/langref/mx/collections/SummaryRow.html
    <mx:AdvancedDataGrid y="450" id="cart" initialize="gc.refresh();" designViewDataType="flat" height="250" left="10" dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" borderThickness="5" borderColor="#3F88BB" right="10">
       <mx:dataProvider>
          <mx:GroupingCollection id="gc" source="{getshopcartdataArray}">
            <mx:Grouping>
              <mx:GroupingField name="prijsexcl">
                <mx:summaries>
                  <mx:SummaryRow summaryPlacement="group">
                    <mx:fields>
                      <mx:SummaryField dataField="prijsexcl"
                        label="Total" operation="SUM"/>
                    </mx:fields>
                 </mx:SummaryRow>
               </mx:summaries>
             </mx:GroupingField>
           </mx:Grouping>
          </mx:GroupingCollection>
        </mx:dataProvider>
      <mx:columns>
            <mx:AdvancedDataGridColumn headerText="ID" dataField="cdartikel" width="30" editable="false"/>
            <mx:AdvancedDataGridColumn headerText="Zoeknaam" dataField="zoeknaam" width="40" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Omschrijving" dataField="omschr" width="150" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Prijs Incl" dataField="prijsincl" width="30" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Prijs Excl" dataField="prijsexcl" width="30" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Prijs per" dataField="prijsper" width="30" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Eenheid" dataField="eenheid" width="30" editable="false" />
            <mx:AdvancedDataGridColumn headerText="Datum verschijning" dataField="verschijningsdatum" width="40" editable="false" />
            <mx:AdvancedDataGridColumn datafield="Total" />
      </mx:columns>
    </mx:AdvancedDataGrid>

  • Using itemRenderer in dataGrid?

    I wish to restrict user input, to match database type, in a
    dataGrid.
    I have used an itemRenderer with the 'restrict' property set:
    <mx:itemRenderer>
    <mx:Component>
    <mx:TextInput restrict="0-9."/>
    </mx:Component>
    </mx:itemRenderer>
    to restrict user input to numeric input only.
    This does not work. But, if I use the 'restrict' property on
    a
    textInput outside the dataGrid it does.
    What am I doing wrong?

    how do i go about doing that?  do i put a change event function in the itemrenderer?  and how would i eventually reference data.col2?

  • Validation of user inputs when using ItemRenderers in DataGrid

    Hi,
    I have to show multiple editable columns in a DataGrid.
    The columns may have different formats and datatypes e.g.
    numbers, dates, string etc.
    So I am using TextInput/DateField as a ItemRenderer inside
    the DataGrid. I have also set the rendererIsEditor="true".
    Now I want to apply validation to all these editable columns
    depending on their datatypes.
    I know I can do that by applying validators individually on
    each column.
    But is there a way I can use common validation for all the
    columns that have a similar datatype or that have the same
    renderer?

    You can use the itemEditEnd Event of the DataGrid for your
    validation. Then you can use Actionscript to make sure what the
    user enters is in the right format. Example:
    <mx:Script>
    <![CDATA[
    import mx.events.DataGridEvent;
    public function processEdit(event:DataGridEvent):void {
    cellValue =
    TextInput(event.currentTarget.itemEditorInstance).text; // the
    entered text
    cell = event.dataField; //the datafield attribute of the
    column
    // Determine if the new value is too long for nvarchar field
    if(cell == 'WLNET' && cellValue.length > 35) {
    cellValue = cellValue.substr(0,35); //shortening it for user
    demonstrates expected length
    TextInput(event.currentTarget.itemEditorInstance).text =
    cellValue;
    event.preventDefault(); // Prevent the user from removing
    focus, and leave the cell editor open.
    // Write a message to the errorString property.
    // This message appears when the user mouses over the
    editor.
    TextInput(event.currentTarget.itemEditorInstance).errorString="Entered
    text too long.";
    return;
    ]]>
    </mx:Script>
    <mx:DataGrid id="enrolled_dg" editable="true"
    itemEditEnd="processEdit(event);">
    I learned part of this from the Flex documentation online:
    Determining
    the reason for an itemEditEnd event

  • How Can I use JTable Like Datagrid (Spreadsheet) and database

    Please how can I achieve the following in java:
    (1) Create a Grid (spreadsheets-Like) with JTable and be able to add new record (rows) as I reach the end of the last column during data entry.
    (2) Save the content of the grid to a text file as well as a database.
    (3) Retrieve the content of the text file or database to the Jtable
    (4) How can I connect to SQL Server without using JDBC-ODBC-bridge and also with Oracle.
    (5) How can I read and write to LPT and COMS ports

    If you don't know how to do any of this, you need to go through the tutorials. Start here: http://java.sun.com/docs/books/tutorial/
    James

  • Set width of adv. datagrid according to image width.

    hi
    i am very new developer of flex.i want to set the wodth of
    advanced datagrid column according to the width of dataitem inside
    that.so i have got a code .that work best for text item renderer.i
    need some code and logiz to check the image object in item renderer
    and set the widtrh of datacolumn to its width.
    please help me.
    Thx in advance,

    Modify this two parameters in Formsweb.cfg file . If not there create 2 entries for your configuration.
    width =<Values you want>
    height=<Values you want>Else
    width =100%
    height=100%Edited by: Lokanath Giri on ३ सितंबर, २०१० १:५५ अपराह्न

  • Using xml with datagrid - problem with element attributes ...

    Hi,
    When i try to set the datafield in a DataGridColumn to an
    attribute, ex.: @isPermaLink - the value is not printet in the
    datagrid?
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="feedRequest.send()" layout="absolute"
    backgroundGradientColors="[#808080, #c0c0c0]">
    <mx:HTTPService id="feedRequest" url="
    http://kristianthrane.dk/feed"
    useProxy="false" />
    <mx:Panel x="10" y="10" width="475"
    title="{feedRequest.lastResult.rss.channel.title}" id="panel1"
    height="531">
    <mx:DataGrid id="dgPosts" x="20" y="20" width="100%"
    dataProvider="{feedRequest.lastResult.rss.channel.item.guid}"
    height="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="Lande"
    dataField="@isPermaLink" />
    </mx:columns>
    </mx:DataGrid>
    </mx:Panel>
    </mx:Application>
    I hope someone has a tip ....
    Best regards,
    Kristian Thrane

    Hi Kristian,
    I'm with some problems, a bit alike yours, but from what I've seen, I would recomend you to see type errors...does the atribute "isPermaLink" inside the "guid" tag, or "title" tag?
    My problem is the opposite of what you have... I can place tag attributes in a datagrid, but I can't put in the same Datagrid the tag value. But I have no choice since the feed comes from a public webservice.
    My feed is:
    <search ver="3.0">
    <loc id="BRXX1094" type="1">Aveiro, Brazil</loc>
    <loc id="POXX0006" type="1">Aveiro, Portugal</loc>
    </search>
    <mx:DataGrid x="10" y="53" width="365" id="dgLocation" dataProvider="{wSearch.lastResult.loc}" itemClick="callService(event);">
    <mx:columns>
           <mx:DataGridColumn headerText="Localidade" dataField="loc"/> //This doesn't work
           <mx:DataGridColumn headerText="Referência" dataField="@id"/> //This does
    </mx:columns>
    </mx:DataGrid>
    Hope it give you any ideas.
    Beste regards
    Leonel

  • Adv datagrid with grouping

    i have
                <mx:AdvancedDataGrid id="ordersAdvGrid"
                                     width="100%" height="100%"
                                     resize="gridCollection.refresh();"
                                     initialize="gridCollection.refresh();"
                                     change="onOrderGridChange(event)"
                                     rollOver="FlexGlobals.topLevelApplication.showTip('Select an order or order status to view  the order pads.')"
                                     rollOut="FlexGlobals.topLevelApplication.destroyTip()">       
                    <mx:dataProvider>
                        <mx:GroupingCollection2 id="gridCollection" source="{model.orderHistory}">
                            <mx:grouping>
                                <mx:Grouping label="orderTemplateName">
                                    <mx:GroupingField name="orderStatusName"/>
                                </mx:Grouping>
                            </mx:grouping>
                        </mx:GroupingCollection2>
                    </mx:dataProvider>       
                    <mx:columns>
                        <mx:AdvancedDataGridColumn dataField="orderTemplateName" headerText="Orders" showDataTips="true"/>
                    </mx:columns>
                </mx:AdvancedDataGrid>
    Is there any way to expand one or more of the grouping , so after the refresh all the groups are collapsed, how can i expand them programmatically
    thanks

    Hi,
    Use displayItemsExpanded="true" or ordersAdvGrid.displayItemsExpanded="true"

  • How to get Datagrid using Hebrew rtl

    Hi,
    I am trying to get Hebrew in the datagrid in the correct (rtl) direction.
    I managed get it done with a TLF textfield but not in the datagrid.
    Can TLF be used for the datagrid or is there another way to get the direction of the hebrew correct?
    Your help is greatly appreciated.

    This code may help.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%">
    <mx:Script>
    <![CDATA[
    import mx.controls.DataGrid;
    import mx.events.ListEvent;
    [Bindable]
    private var nameStr:String;
    public function getName(event:ListEvent):void {
    var dg:DataGrid = DataGrid(event.target);
    nameStr = dg.selectedItem.cn;
    ]]>
    </mx:Script>
    <mx:ArrayCollection id="acEmaillist">
    <mx:Object>
    <mx:cn>Bob Smith</mx:cn>
    <mx:mail>[email protected]</mx:mail>
    </mx:Object>
    <mx:Object>
    <mx:cn>Ted Alan</mx:cn>
    <mx:mail>[email protected]</mx:mail>
    </mx:Object>
    <mx:Object>
    <mx:cn>Fred Tobs</mx:cn>
    <mx:mail>[email protected]</mx:mail>
    </mx:Object>
    </mx:ArrayCollection>
    <mx:DataGrid dataProvider="{acEmaillist}"
    itemClick="getName(event)">
    <mx:columns>
    <mx:DataGridColumn headerText="Full Name" dataField="cn"
    width="150"/>
    <mx:DataGridColumn headerText="Email" dataField="mail"
    width="150"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Label text="{nameStr}"/>
    </mx:Application>

  • How to overlap datagrid colums line with item renderer

    Hello guys I been stuck for a few days now and I'm wondering if there is a better way to do this.
    I put an item renderer on a column of the datagrid. The renderer basically expands the column height and shows some controls.
    Im using a border container as the container that is holding the items in the grid. However what I would like to do is make the border container as big as the grid with a plus sign button. and then basically hide that  rows vertical grid lines.
    i tried setting the depth eventhought i understant this is not a spark grid i though it should work but it does not. Any tip or direction would be greatly appreciated.
    Miguel

    ok i answered my own question. what i need to do is use the advance datagrid. Then set these properties.
    <mx:AdvancedDataGrid defaultLeafIcon="{null}"
                             folderClosedIcon="{null}"
                             folderOpenIcon="{null}"
                             disclosureClosedIcon="@Embed(source='assets/plusSign.png')"
                             disclosureOpenIcon="@Embed(source='assets/plusSign.png')">
    Message was edited by: miguel8312

  • Is it possible to build a reliable application with the flash datagrid ???

    Hello all,
    Next problem in my non-stop nightmare using a flash datagrid to build an application
    I have a datagrid in my movieclip.
    Under Windows, if I select a row of the datagrid in read-only mode, let's say row 10 on screen, if I then switch the Windows active window (that means the datagrid looses the focus) and come back to my datagrid, the selected row is kept. OK !
    BUT, if I select a row in edit mode, let's says row 10, if I change the focused Windows window and then come back to my DataGrid, the selected row is now the first visible row on page ! If I then click outside my Flash application and then back into my Flash application, I get a crash: error #1009:Cannot access a property or method of a null object reference.
    The error message is very short. It seems to focus manager tries to access a TextField property but, which one ? No details, no function name in the error message.
    So:
    - how to avoid this "change active row when loosing / getting focus" in edit mode of datagrid ?
    - how to have more details in the error ? Are there "details levels" in Flash error management ?
    Thanks for all, I begin to stress: I'm at the half-time of my project and I'm nowhere because of that datagrid strange behaviours

    Might look at: https://jsfportletbridge.dev.java.net to get started.

  • Display xml in Datagrid

    Hi All,
    After fiddling this for almost a week, I finally come in seek
    of assistance and advice. let me explain my requirement as clearly
    as I possibly can. before you even proceed further, please make
    sure you a aware of the following:
    importing xml into flash
    usnig the XPathApi
    using datasets and Datagrids
    Summary
    I have a complex XML file (refer link below) that is
    generated from a database. my client wants these generated data to
    be displayed in a presentable format so that any visitor using this
    application can instantly get the data by querying into the XML
    File.
    I tried doing this with XML and XSLT i was able to display
    the data in a presentable format. but I faced an issue. I was
    unable to place a form text field and a submit button, so that the
    user gets the freedom to filter the data that he needs.
    So I seeked some advice on this topic at US and I was
    suggested to use XPathApi, after reading the documentation and some
    fiddling, I found a way to extract the data that i was supposed to
    retrieve. but now I face a new problem. since the XML is a bit
    complicating (for me at least). I found difficulties in displaying
    the extracted data to the data grid.
    I have attached the flash source file (v8) and (some what
    similar) the XML files for your reference. would appreciate if
    someone could help me achieve the objective. if you think there is
    another alternative to XPathApi, I willing to try it out.
    Try-out
    Currently the retrieval of the data is working perfectly, for
    example you can perform a query to list all the books that were
    published by 'Wrox' by entering the query in the text field, you
    will see the results in the "Trace" window.
    Source
    TIA

    "lerogke" <[email protected]> wrote in
    message
    news:go8i77$8og$[email protected]..
    > Hi again,
    >
    > i could resolve something, using labelfunction like
    this:
    >
    > private function getValue(item:Object,
    column:DataGridColumn):String{
    > return item.params.param.@value;
    > }
    >
    > This functions gives me all the values of the params but
    consecutive
    > without
    > any space between them.
    >
    > How could i look around each param to put space or some
    text between them
    > to
    > display in Datagrid?
    for each (param in
    item.child('params').child('param').attribute('value)){
    //stuff

Maybe you are looking for

  • Pages not loading properly since last update

    Since the last update, Firefox just isn't working any more. It takes multiple clicks to load or reload pages, and often the page loads without any graphics. I may have to click the Reload button a dozen times to get a page to load properly (or to loa

  • Trex 7.0 installation problem

    Hi All,           I am trying to install Trex 7.0 and during the installation it asks for the TREX NW2004sSR1 software pkg , i give the exact location of that pkg. The installation then continues with all the other parameters correctly provided. But

  • Facing issues with oracle client installation 32 bit 10.2.0.1

    Hi , I am facing issues with oracle client installation 32 bit 10.2.0.1 Windows 2008 R2 enterprise edition 64 bit Java 1.6 update 34 Below is the error recieved: Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079055 Fun

  • Unable to start Photoshop CS4

    have just loaded CS4 after running CS3 but when trying to start it returns with the error message "Photoshop.exe-Bad Image C:\windows\system32\opengl32.dll is either not designed to run on windows or contains an error" I have updated all my graphics

  • B1 Development Environment

    Hey Guys, I was just wondering if anyone else has downloaded and used any part of this application from SAP: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1fe00c0a-0701-0010-1e9d-a15e73bddeba. I just found this link today a