AddChildAt / DEPTH ISSUE

I'm burnt out badly with the display list....but Merry Xmas
I created two display objects on the main timeline. One is
the a loader Object to load my movies into. The second object
(container) is a movieclip in the library. The problem is, the
loader Object displays on top of container, when container should
be on top. Thus, the loader object should be at the very bottom and
the other object container should be at the top in the stacking
order. In tried EVERYTHING...addchildAt, addchild, you name
it...the loader object is still on tp of everything. How do I know?
because when I load movies, all the loaded movies are on top of
everything on the stage and the container object is on the
bottom...I know this is simple, but I spend days on this and I'm
literally burnt out...please send me in the right direction...happy
xmas; hope u got sum actionscript books under the tree...
Here's the code....
// Create the loader Object and add it to the stage
var my_loader:Loader = new Loader();
addChild(my_loader);
// Create a displayObejct to hold the housed the loaded
movies
var container:blue=new blue();
container.name = "myContainer";
container.x=10.0;
container.y=74.0;
this.addChildAt(container,1);

what does container have to do with the loaded movies? ie,
why that 2nd comment?

Similar Messages

  • D3D depth issue and D2D render flash after update device from Lumia Black to Lumia Denim

    Hi,
    Yestoday I updated my lumia 929 device from Lumia Black to Lumia Denim. I develope game on this device.
    My game is D2D and D3D Interop with silverlight 8.1 program. Then problem occured. The depth of 3D objects become wrong. And the d2d content will flash time to time. I use d2d to render text.
    However, I solved the depth problem by setting up DepthStencilState. But the d2d content flash problem doesn't solved. 
    Not only Lumia 929, but 930, 638 and many devices.
    In lumia 525 and 520t, my game still works fine.
    Can anyone help me ?
    Any help will be appliciated, thank you.

    Hello,
    Can you provide more detail concerning how you are rendering your text with D2D? Are you doing the D2D update on the UI thread? I think we just need more detail before we can offer any suggestions.
    Thanks,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/
    Hi, thank you for your reply.
    What do you mean D2D update?I draw D2D content on the UI thread.
    I render text like below
    void YHMText::DrawCustom(wstring str, float scale, float posX, float posY, float layoutX, float layoutY, float opacity, float rotationAngle, int colorID)
    mText = str;
    if (mIsResourceLoaded && opacity > 0.0f)
    mText = str;
    DX::ThrowIfFailed(m_dwriteFactory->CreateTextLayout(mText.c_str(), (uint32) mText.length(), mTextFormat.Get(), layoutX / scale, layoutY / scale, &mTextLayout));
    DWRITE_TEXT_RANGE range = { 0 };
    range.length = static_cast<uint32>(mText.length());
    DX::ThrowIfFailed(mTextLayout->SetFontCollection(mFontCollection.Get(), range));
    #ifdef YHMWINRT
    Windows::Foundation::Size logicalSize = mDeviceResources->GetLogicalSize();
    #endif
    #ifdef YHMSILVERLIGHT
    Windows::Foundation::Size logicalSize = mDeviceResources->GetRenderTargetSize();
    #endif
    float dpiScale = 1.0f;
    #if (NTDDI_VERSION == NTDDI_WIN8)
    dpiScale = 96.0f / mDeviceResources->GetDPI();
    #endif
    D2D1::Matrix3x2F screenTranslation;
    D2D1::Matrix3x2F screenScale;
    D2D1::Matrix3x2F globelScale = D2D1::Matrix3x2F::Scale(scale, scale);
    D2D1_POINT_2F center;
    center.x = posX * logicalSize.Width / 1920.0f * dpiScale;
    center.y = posY * logicalSize.Height / 1080.0f * dpiScale;
    D2D1::Matrix3x2F rotation = D2D1::Matrix3x2F::Rotation(rotationAngle, center);
    if (gScreenMode == YHMScreenMode::Portrait)
    screenTranslation = D2D1::Matrix3x2F::Translation(posX * logicalSize.Width / 1080.0f * dpiScale, posY * logicalSize.Width / 1080.0f * dpiScale);
    screenScale = D2D1::Matrix3x2F::Scale(logicalSize.Width / 1080.0f * dpiScale, logicalSize.Width / 1080.0f * dpiScale);
    if (gScreenMode == YHMScreenMode::Landerscape)
    screenTranslation = D2D1::Matrix3x2F::Translation(posX * logicalSize.Width / 1920.0f * dpiScale, posY * logicalSize.Height / 1080.0f * dpiScale);
    screenScale = D2D1::Matrix3x2F::Scale(logicalSize.Width / 1920.0f * dpiScale, logicalSize.Height / 1080.0f * dpiScale);
    m_d2dContext->SetTransform(screenScale * globelScale * screenTranslation * mDeviceResources->GetOrientationTransform2D() * rotation);
    DX::ThrowIfFailed(mTextFormat->SetTextAlignment(mTextAlignment));
    mDeviceResources->BeginDrawD2D();
    mBrush[colorID]->SetOpacity(opacity);
    m_d2dContext->DrawTextLayout(D2D1::Point2F(0.f, 0.f), mTextLayout.Get(), mBrush[colorID].Get(), D2D1_DRAW_TEXT_OPTIONS_NO_SNAP);
    mBrush[colorID]->SetOpacity(1.0f);
    mDeviceResources->EndDrawD2D();
    This works fine with Lumia Black. But in Lumia Denim, my d2d text may flash.
    I noticed that the flash problem usually occured when D3D content draw first. In my render methods, d3d content and d2d content are place together.

  • Depth Issue

    Hi all,
    Having a bit of an issue over here, and while I'm assuming it's something small that I'm missing, I haven't been able to figure out how to resolve my issue.  I've attached the FLA file (file extension renamed to a TXT file for uploading purposes; you'll have to rename it after downloading) for anyone that's willing to take a look.  In short, here's my problem:
    In general, I'm trying to create a mini-photo gallery (only 4 photos).  I have a forward button (fwd_btn) and a back button (bwd_btn) to allow the user to page through the photos one at a time.  This photostream is driven by XML, which is loaded into the Flash and parsed to display the images.  This works without issue.  However, since I need to use getNextHighestDepth() to create the right transitions between photos, my forward and back buttons are having images stacked on top of them.  They're in the background (and clickable), just not visible.  Obviously, I'd always like these to appear on top, not behind the images.  For the life of me, I cannot figure out how to fix this.
    Really short on time to get this figured out, so if anyone has any suggestions, I'd be very appreciative.
    Thanks in advance!

    You might have a more easily manageable scenario if you have a timelined blank movieclip that you use as the stage for your images.  That way you can keep your buttons on a layer above that movieclip.  Otherwise, you may end up playing a somewhat confusing game of swapDepths() to keep shuffling the buttons to the top

  • Issues with xorg on HP 1030NR

    Hello all,
       has anyone gotten arch to work on an hp 1030nr netbook? im having issues with the xorg and tried everthing i could find in the wiki and as well as other distro's forums to find solutions.. ive been using arch for over a year now and ive had no problems with it until now..
    currently im running Xubuntu. the graphics appear as they did when windows was on this little beast so i know linux in general WILL work on this laptop...  if anyone has gotten a successful working install of arch on a hp mini 1030nr let me know what you had to do to get it working.. i sold my other laptop and now all i have is this one for now.
    here is what i did and the error messages i was getting:
    installed arch via ftp disc...
    pacman -Syu
    pacman -S xfce4 xorg xf86-video hwd
    hwd -s  (i saw i needed the intel driver so..)
    pacman -S intel
    pacman -Syu  (i did this again just to be sure the packages were up to date.)
    xorgconfig
    i then edited the xinitrc file to start xfce
    startx
    i then get a fatal error reporting that no screens were found.
    so i try once more... and get the same error.
    i check the xorg configs and see the intel driver there, so i change it to the vesa one, double check my changes and save the file.)
    i try startx once more... and its a no-go.
    i tried just starting twm, and i get the same error, but also get random system hangs, so i turn off the laptop, and let it cool down because it was getting a bit toasty. about 2 hours later i hop back on, and retry everything i did before, and nothing works. so i install lynx. search google for issues similar to mine and try the relevant solution i find... nothing works. so i pop in the xubuntu live disc, and copy its xorg config.
    cat /etc/X11/xorg.conf > /mnt/sda1/etc/X11/xorg_from_xubuntu
    reboot, rename my xorg config to x_backup and the xorg from xubuntu to xorg.conf
    i attept a startx with that and still nothing works, so i spent the next hour messing with my xorg config.
    any and all help is greatly appeciated.
    Last edited by isolatedvirus (2009-02-06 06:11:07)

    thats what i did, but when the driver i used from the ubuntu xorg config file didnt work, i wondered if it was a depth issue or if something was set up differently.
    right now i cant even get arch to boot to an ftp install, for some reason my computer is being a douche. i used the latest image the last time i installed arch, and it worked fine. but for some reason its acting wierd.
    i tried downloading and doing an ftp install with an earlier release of arch, but the inner workings of pacman were updated, and they got rid of the old way of obtaining package lists for the ftp install....
    pacman keeps trying to download a packages.txt file which is non existent so it doesnt even know what to do... i attempted to update pacman only from another terminal, which was successful, however when i run the ftp install again, it finds the database like it should, and tries to download an updated version of itself. it downloads but it cant locate the cache. its wierd, its like the update i ran took effect because now it knows what file to search for, but all of a sudden its acting like i deleted the cache folder.
    im trying unetbootin to see if it will work with the latest arch ftp disk. ill give an update in a few.

  • How to add a code so my drag and drop movie clip will not stick  once it is dragged to final place o

    Hello all and kglad, I have to use the old drag and drop code on my movie clips, but the problem is when I drag the movieclip to the area on my .swf file once i release it, it sticks to the hand mover.
    I am encloseing the action script I am using could someone or kglad tell me what is missing from the code so that once it is released it will not stick, see code below
    circle.onPress = function(){
    startDrag(this);
    circle.onRelease = function(){
    stopDrag();
    I am desparate for help on this must get project ready for this afternoon
    Seal55

    there's nothing wrong with that code but it would be better to use:
    circle.onPress = function(){
    this.startDrag();
    circle.onRelease = function(){
    this.stopDrag();
    but that won't solve your problem.  there must be something else going on like a depth issue.  you may need to use swapDepths() to bring your circle under the mouse when releasing.

  • Are Lightroom 5 and Photoshop CC compatible with OS X Mavericks?

    Would like to check compatibility of Lightroom 5 and Photoshop CC with OSX Maverick.   Will I have to reinstall these apps after I upgrade?

    Okay, that is helpful. What resolution you have a file set to makes no difference at all. It can be 10 dpi or 1000 dpi. Resolution only makes a difference to an output device (printer).
    Notice to the right that the brush icons, and the brush sample are smooth. So it's not a driver, profile, or monitor resolution or color depth issue. If it were, they'd look just as bad.
    So that only leaves the image itself. Though for the life of me, I can't get PS CC to duplicate what you're seeing. The smaller brush stroke to the lower left on your screen shot looks normal, so why are the larger ones banding so badly? It doesn't make sense.
    Edit: Oh! Wait, something is wrong here. You have the opacity of the brush set at 27%. So there's no way it should be drawing a solid black center. It should look like below where I changed the opacity to 27% and then drew the grayish strokes.
    The opacity is not being represented correctly. No idea at the moment what would be the cause.

  • MSS Team View evaluation path for non chief positions (s-s)

    Hello,
    We have a problem with display of employees under non chief manager - reporting managers (connection A002). In our organization we have line managers and under them team managers who are leading team of employees. Those managers want to see their employees under MSS Team View iView.
    I have checked forum posts and try to create correct evaluation path but i didn't get results yet. I have created 2 evaluation paths:
    Z_MANG (copy of SAP_MANG):
    10 *     B 008      S
    20 S    B 002      S
    30 US  A 208 P
    Z_S-S (copy of MSSDIREC):
    10 S  A 002     S
    20 S  A 008     P
    30 S  A 008     US
    I also included them into rules so:
    Root rule (rule 1) - Z_MANG
    Target rule (rule 3) - Z_S-S
    I have also done customizing under Object and Data provider and if I choose standard evaluation paths (e.g. SAP_MANG and MSSDIREC), I get employees shown - if I give manager a hat (A012 connection).
    Could you please help me with advice, where am I wrong? I think that first evaluation path (Z_MANG) is ok and it finds non chief manager, maybe is a problem with second one that don't show employees?
    Thank you for answers in advance.
    Best regards,
    David

    My first suggestion was either use Bottoms-up approach or top-down dont use both..like either use either of below
    S A 002 Reports (line) or
    S B 002 Is line supervisor
    but figured u will still have depth issues..so therefore
    you cld experiment like below..i understood your requirement, and i am suggesting this totally off-hand thats on top of my head..as i said experiement doing this way..
    say you have four levels  why dont you use different evalutaion path to link them between each level..
    say 1st to 2nd (reports to A002)
          2nd to 3rd (subordinate to A005)
          3rd to 4th/4th to 3rd (Is line supervisor B 002 )etc
    this way you will not have the depth issue as each one is diffeent Ev path..
    ...oops i can see people laughing at this solution..but well..i tried!

  • Evaluation Path for Position to Position Reporting Structure

    Hello Everyone,
    We currently have a position to position reporting structure in place.  WIth this being said, not every supervisor in our organization is the chief of a team.  I am trying to create an evaluation path that will look at a position, then go up to get the positions report to position (but not go up any further), then go down to get the positions that report to the supervisor.  This will allow us to start with a position, then return all the positions that the report to position has.  In essence this will allow us to start with a position and get the team (though we don't have an org unit for the team).  I am trying to do this for the Team Calendar in ESS. 
    Below is what I have.  The problem is with the depth, if I enter a 2, then it is not getting the lateral positions, but if I enter a 3, then it goes up to another level and gets an additional supervisor (which I do not want).
    S     A     002     Reports (line) to     2     S
    S     B     002     Is line supervisor of     1     S
    S     A     008     Holder     3     P
    Has anyone developed and Evaluation Path that does this (gets a positions team without having an org unit) and can offer assistance?
    Best Regards,
    Scott

    My first suggestion was either use Bottoms-up approach or top-down dont use both..like either use either of below
    S A 002 Reports (line) or
    S B 002 Is line supervisor
    but figured u will still have depth issues..so therefore
    you cld experiment like below..i understood your requirement, and i am suggesting this totally off-hand thats on top of my head..as i said experiement doing this way..
    say you have four levels  why dont you use different evalutaion path to link them between each level..
    say 1st to 2nd (reports to A002)
          2nd to 3rd (subordinate to A005)
          3rd to 4th/4th to 3rd (Is line supervisor B 002 )etc
    this way you will not have the depth issue as each one is diffeent Ev path..
    ...oops i can see people laughing at this solution..but well..i tried!

  • Configuring our RAC environment Questions

    The environment consists of Sun Solaris 10, Veritas, and 10g RAC:
    Questions:
    I need to know the settings and configuration of the entire software stack that will be the foundation of the oracle RAC environment....Network configurations, settings and requirements for any networks including the rac network between servers
    How to set up the solaris 10k structures: what goes into the global zones, the containers, the resource groups, RBAC roles, SMF configuration, schedulers?
    Can we use zfs, and if so, what configuration, and what settings?
    In addition, these questions I need answers to:
    What I am looking for is:
    -- special hardware configuration issues, in particular the server rac interconnect. Do we need a hub, switch or crossover cables configured how.
    -- Operating System versions and configuration. If it is Solaris 10, then there are more specific requirements: how to handle smf, containers, kernel settings, IPMP, NTP, RBAC, SSH, etc.
    -- Disk layout on SAN, including a design for growth several years out: what are the file systems with the most contention, most use, command tag depth issues etc. (can send my questionnaire)
    -- Configuration settings\ best practices for Foundation suite for RAC and Volume manager
    -- How to test and Tune the Foundation suite settings for thru-put optimization. I can provide stats from the server and the san, but how do we coordinate that with the database.
    -- How to test RAC failover -- what items will be monitored for failover that need to be considered from the server perspective.
    -- How to test data guard failures and failover -- does system administration have to be prepared to help out at all?
    -- How to configure Netbackup --- backups

    Answering all these questions accurately and correctly for you implementation might be a bit much for a forum posting.
    First I'd recommend accessing the Oracle documentation on otn.oracle.com. This should get you the basics about what is supported for the environment your looking to set up, and go a long way to answering your detailed questions.
    Then I'd break this down into smaller sets of specific questions and try and get the RAC axters on the RAC forum to help out.
    See: Community Discussion Forums » Grid Computing » Real Application Clusters
    Finally Oracle Support via Metalink should be able to fill in any gaps int he documentation.
    Good luck on your project,
    Tony

  • App appears dark on LCD projector

    Hi all,
    I have a weird problem report, and I'm fishing for ideas on troubleshooting.
    My colleague frequent connects to client's LCD projectors and some of the time our CVI-built apps appear much darker than normal on the screen.  The darkness occurs for all colors ranging from (normally) light grey to deep blues.  When he returns to PowerPoint or other non-CVI apps, there is no darkening of the projected image.
    My first thought is that it might be a color bit-depth issue, but that can't explain why other apps are not affected - unless we are using peculiar colors that are badly affected when bit depth is dropped to 16 bits.
    One unusual aspect of this is that he is using a DisplayPort to VGA dongle, since his Dell Adamo XPS does not have a VGA port. (It is Windows 7, 64-bit).
    Any ideas on what could be happening?
    Thanks,
    Ian

    This issue continues to crop up occasionally for all the CVI-developed apps that my colleague uses (~4).
    The interesting thing is that I saw something like it for the first time today. I launched our app within a Windows Virtual PC (XP) and initally the inactive tabs of the app were near-black. Image attached.  When I clicked on the app the darkness disappeared. It was repeatable for a while with each launch of the app only at 16 bit color depth, but then was no longer repeatable.
    Perhaps this is a clue for someone more knowledgeable in how CVI renders the screens. I'm still using CVI 9.1.1(450)
    --Ian
    Attachments:
    DarkTabs.png ‏2 KB

  • Macbook Pro not recognizing Windows 7 RC 32-bit disk

    I'm trying to install Windows 7 RC on my Macbook Pro but it's not recognizing the disk. Does anyone know why this is?

    ucbound,
    I replied in my post to your same question as well.
    Are you using Boot Camp Assistant to set-up for a clean install of Windows 7 RC:
    Start Boot Camp > Create Windows partition > insert Windows DVD > click 'Continue' after DVD icon shows on desktop?
    Or are you receiving the error message after clicking 'Continue' in Boot Camp Assistant?
    Others here are more experienced with the MacBook series so hopefully they will chime in at some point if it is an in-depth issue / resolution here.

  • 24-bit audio files converted to 16-bit in Logic Pro 7

    Hello,
    I'm working on producing my band's demo and this is my first project in Logic Pro 7. The tracks were originally recorded into a Fostex D2424LV hard disc recorder as 24-bit wave files, then imported into Logic. At this point, I've done the editing and effects processing in Logic and exported the tracks as individual wave files, with the intent to put the tracks back on the Fostex and run them through a Yamaha 24-channel analog board for the final mixdown.
    Everything has gone smooth until now. When I play the exported tracks back on the Fostex, most of them are peaking on the meters, while the same tracks played back in Logic don't even come close to peaking. I've tried re-exporting the tracks with reduced fader levels and still get peaks on the Fostex.
    Given that the reduced levels still cause tracks to peak on the Fostex, I'm suspecting a bit-depth issue. I didn't realize at the time that the files were converted to 16-bit when they were imported into Logic. The Fostex only works with 24-bit files and I'm wondering if exporting the 16-bit tracks in Logic as 24-bit wave files might be causing the problem.
    If this turns out to be the cause of the peaking tracks, is it possible to re-import or replace the converted 16-bit files with the original 24-bit files and apply the editing and efx processing that I've done to the 24-bit files?
    I'll greatly appreciate any help you folks can give me on this one.
    Kevin
    Dual 2.0 Ghz G5 Powermac   Mac OS X (10.4.1)   RME Multiface
    Dual 2.0 Ghz G5 Powermac   Mac OS X (10.4.1)   RME Multiface

    i am very surprised that the fostex doesn't work with 24-bit files.
    your peaking is not likely to be due to bit depth, although i can see why you might think so. maybe you're right.
    logic has inbuilt -6db of head room you should know.
    your suggestion of reimporting the original tracks from the fostex is exactly the thing you should do. remove the 16-bit files from the system and re-import the fostex files. open the logic project and it will look for the old files. for greatest ease make sure your fostex imported files have the same names as the ones you are removing. when it finds the files with the same name it should come up with an error message. select use anyway.
    what's happening is logic stores information about the file, its length, bit-depth and so forth. so just get logic to use anyway and the files "should" playback alright.

  • CVE-2012-4681

    I am on solaris 5.10, have java 6.17 , Apps version is 11.5.10.2, and Db is 10g, just one simple question, is java 6 update 35 compatible with my mentioned system.

    A google search on "CVE-2012-4681"
    found the following as the second hit, in 0.15 seconds:
    https://blogs.oracle.com/security/entry/security_alert_for_cve_20121
    It seems to be the announcement for the alert that you should have read before posting.
    The first paragraph states:
    Oracle has just released Security Alert CVE-2012-4681 to address 3 distinct but related vulnerabilities and one security-in-depth issue affecting Java running in desktop browsers. These vulnerabilities are: CVE-2012-4681, CVE-2012-1682, CVE-2012-3136, and CVE-2012-0547. These vulnerabilities are not applicable to standalone Java desktop applications or Java running on servers, i.e. these vulnerabilities do not affect any Oracle server based software. (emphasis added)Perhaps you should use your service contract credentials a log a SR to speak with Oracle Technical Support and get the rest of your questions cleared up.
    These forums are NOT a way to contact Oracle directly. They are end-user to end-user discussion forums.

  • Rsync copy jobs not working

    Hello,
    I had to replace disks in the destination ix2-dl-86 and I wanted to copy the data from the from drive to the to drive and I keep getting the following error:
    No folders to be copied.
    sending incremental file list
    Thumbs.db
           7.17K 100%    0.00kB/s    0:00:00 
           7.17K 100%    0.00kB/s    0:00:00 (xfer#1, to-check=1013/1015)
    rsync error: timeout in data send/receive (code 30) at io.c(137) [receiver=3.0.9]
    rsync: connection unexpectedly closed (24 bytes received so far) [sender]
    rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9]
    The destination drive is in good shape.  I can mannually copy folders and files to it. I also updated both drives with the latest software.
    Thank You,
    Joe

    I would recommend calling tech support directly. This seems to be an in-depth issue that may be difficult to trouble shoot over forums.
    They should be able to collect additional info like a dump file to help diagnose the issue more effectively.
    Standard Network Storage Support:
    Hours: Monday - Friday, 9am - 10pm Eastern
    Toll-Free: 1-800-940-6354

  • 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] =>

Maybe you are looking for

  • V$system_event, timeouts and row lock contention

    Hello everyone, What is the meaning of the total_timeouts column in the v$system_event view if it is related to the event "enq: TX - row lock contention"? How can we have a timeout since "query timeout" is a non existent concept on Oracle? Maybe I am

  • SYSTEM CHECK FOR CREATION OF EXCISE INVOICE WITHOUT PGI

    Hi SAP guru's i need help in this issue++ See i am creating delivery and i did'nt do PGI ,after this i am creating Proforma invoice (here Proforma is must before creating commercial Invoice),with reference to Proforma system is accepting to create Ex

  • Calling UDF From Cursor

    I have a table in which there is a xml data type column for storing xml data. I want to call my function foreach xml data record from a SQL query and when result returned then check intersection of two polygons by STIntersections method. The function

  • POS sales to SAP IS Retail..

    Hi Gurus, I am new the IS Retail Module... Can any one Help me out in the Configuration step wise.... How the Data will be transfered from POS (Point of Sales) to SAP.. What should i do in the SAP.... Pls Help me... Thanks and Regards, SUBBU...

  • 2LIS_11_VAHDR - Initialize delta process error

    Hi, I have an issue initializing infosource 2LIS_11_VAHDR for delta process on a new BW3.1c instance created from a system copy. Other delta loads work properly but not this one. In the AWB monitor, the status indicates 'no data available' even if th