Trouble Refreshing Child VO

I am using Jdevelper 11.1.1.6.
In my use case I have a screen that lists a databound table of rows (parent row of a parent/child relationship). Each parent row can have 1 to many children. The table has 4 columns, the first 3 columns come from the Parent table. The 4th column is a count of how many rows are associated to it in the child table. The user can select a row and click the edit button. The edit popup form is displayed. It displays the 1st 3 columns as read only text fields. A 4th object is in the form. This object is a listbox listing the assigned children. I have some instances where the listbox doesn’t always display all of the assigned children because the children are updated via external Stored Procedures while I am in the application. Here is the backing bean code that I have implemented. I need to find a way to get a fresh copy of the Child Iterator before doing “lParentRow.getChildren()”. Do you have guidance on how I might be able to do this.
public void onEditPopupFetchAction(PopupFetchEvent pPopupFetchEvent) {
try {
DCIteratorBinding lDciter =
(DCIteratorBinding)getBindings().get("Parent1Iterator");
ViewObject lParentVO = lDciter.getViewObject();
ParentVORowImpl lParentRow = (ParentVORowImpl)lParentVO.getCurrentRow();
RowIterator lAssignedChildren =
lParentRow.getChildren();
String lAssignedChildren = "";
while (lAssignedChildren.hasNext()) {
ChildVORowImpl lChildRow =
(ChildVORowImpl)lAssignedChildren.next();
lAssignedChildren +=

Hi,
the method only shows the part that accesses the children. It does not show anything beyond (e.g. how the value is returned). I don't recommend accessing the View Object from the client and instead expose the method as a client interface on the View Object to be accessed from a method binding in ADF. This is if you want to follow ADF best practices.
To solve your problem try
lParentRow.refresh(Row.REFRESH_CONTAINEES);
Frank
Ps.: Please consider moving the code to the ViewObjectImpl for best practices

Similar Messages

  • Windows XP & IE6, trouble refreshing

    Hi,
    I am using CodeGuide 3.01 to write Swing applets.
    But after I have written, compiled and saved my Applet I run in some trouble. Maybe someone can help.
    I load the HTML file (wich has the reference to the Applet) into IE6 and everything goes fine.
    After I have changed, compiled, saved my Applet again and I have pressed the refresh button in IE6 the page doesn't get refreshed properly. Instead IE6 loads the old Applet again.
    When I close and reopen IE6 everything works fine.
    Has someone encountered this or if you think I'm doing something wrong, please reply.
    Greetings Ronald.

    Ronald,
    I've experienced the same problem with IE 5.5 & 6.0.
    I believe that MS is loads the applet into memory and does not refresh the code when you "refresh" or click on the refresh icon. Therefore, you are on the right track; you must exit the browser and rerun it to get your new version of the applett to load.
    Regards Randy
    PS I noticed this behavior in MS Front Page also.

  • Refresh Child Nodes of an af:treeTable

    I have two VOs with a master/detail relationship defined with a View Link. The master VO has a bind variable to change which set of master rows to return.
    I have an af:panelStretchLayout. The top facet has a form created by dragging the ExecuteWithParms from the Data Control for the master VO as a parameter form, and the center facet has an af:treeTable derived from the master VO with child nodes derived from the detail VO.
    When you see this on first page load, it is right: bind variable was set from the default for the bind variable, tree table shows correct information.
    But when I choose a different value for the bind variable and click the button to re-execute the query, the parent nodes are refreshed, but any parent nodes that weren't in the initial query results have no children, even though there ARE child rows in the database. In short, it re-queries the master VO, refreshes the treeTable, but does NOT re-query the detail VO.
    Now, I know that this is expected behavior - for better performance, ADF caches results and since the initial query didn't include children for these parents, there is no data to show. So my first thought was to add CacheResults="false" to the iterator. Nope. Tried a few different settings for Refresh attribute - nope (since the parent nodes ARE refreshing, I figured this wouldn't help, but it was worth a try). I tried the following method in the backing bean based on a suggestion in a blog entry:
    * Executes the query with the new parameter, then requeries the codes for each category.
    * @param actionEvent
    public void requeryServices(ActionEvent actionEvent) {
        DCBindingContainer bindings = (DCBindingContainer)JSFUtils.resolveExpression("#{bindings}");
        // First execute the query for the Categories
        bindings.getOperationBinding("ExecuteWithParams").execute();
        // Get the iterator and its View Object
        DCIteratorBinding categoriesViewIterator = bindings.findIteratorBinding("ServiceCategoriesView1Iterator");
        ViewObject categoriesView = categoriesViewIterator.getViewObject();
        // From the VO, get all the category rows.
        Row[] categoryRows = categoriesView.getAllRowsInRange();
        // For each category, find the ViewLinkAccessor, and execute the query for the codes.
        for (Row thisCategory : categoryRows) {
            RowSet codes = (RowSet)thisCategory.getAttribute("ServiceCodesView");
            codes.executeQuery();
        // Refresh the treeTable
        AdfFacesContext.getCurrentInstance().addPartialTarget(getServicesSelectionTree());
    }This doesn't work either - same results - parent is re-queried, children are not.
    What should I try next to get the child nodes to refresh?

    Sure, I know that I can get the binding container the other way - the sample code I was copying just happened to use JSFUtils, and I just happened to have it.
    Using JDev 11.1.2.3.
    The code I showed was just one of the ways I tried to solve this. The problem is that when I do an ExecuteWithParams on the tree binding, the children of that tree don't get re-executed. Suppose I have a tree table that looks like this when the page first displays and the tree is expanded:
    Item One
    <ul>
    <li>Child OneDotOne</li>
    <li>Child OneDotTwo</li>
    <li>Child OneDotThree</li>
    </ul>
    Item Two
    <ul>
    <li>Child TwoDotOne</li>
    <li>Child TwoDotTwo</li>
    <li>Child TwoDotThree</li>
    </ul>
    Item Four
    <ul>
    <li>Child FourDotOne</li>
    <li>Child FourDotTwo</li>
    <li>Child FourDotThree</li>
    </ul>
    Now I re-execute the parent query (using ExecuteWithParams) and give it a parameter that should give me:
    Item Two
    <ul>
    <li>Child TwoDotOne</li>
    <li>Child TwoDotTwo</li>
    <li>Child TwoDotThree</li>
    </ul>
    Item Three
    <ul>
    <li>Child ThreeDotOne</li>
    <li>Child ThreeDotTwo</li>
    <li>Child ThreeDotThree</li>
    </ul>
    Item Four
    <ul>
    <li>Child FourDotOne</li>
    <li>Child FourDotTwo</li>
    <li>Child FourDotThree</li>
    </ul>
    But what I actually get is:
    Item Two
    <ul>
    <li>Child TwoDotOne</li>
    <li>Child TwoDotTwo</li>
    <li>Child TwoDotThree</li>
    </ul>
    Item Three
    Item Four
    <ul>
    <li>Child FourDotOne</li>
    <li>Child FourDotTwo</li>
    <li>Child FourDotThree</li>
    </ul>
    Notice that even though Item Three has children, they don't show. The difference is that Items Two and Four were in the original results, but Item Three wasn't. If I browse the VOs in the AM Tester, Item Three's children show when I execute the parent with different parameters.
    I suppose I could try to replicate this problem with the HR schema. I'll try it Monday.

  • Refresh Child Table

    Hi ,
    I am having the following scenario. I have to refresh the child table on click of hide/show of parent table. I have configured that through viewlink.
    And the child advance table is kept in detail disclosure of parent table.
    Thanks and regards,
    Sandip

    Hi,
    Can you please elaborate your scenario. What exactly do you mean by refreshing the child table. Do you mean you want to requery the child records again
    Regards,
    Raj Papdeja

  • Firefox having trouble refreshing or loading content on certain sites?

    whenever i try to load this site firefox has trouble displaying the page. when i scroll down nothing happens but i know the page is moving because my cursor will change when i hover over a link. i have to restart firefox to see any changes on the page. i'm also having problems displaying facebook and the addon speed dial.

    On Soccer Highlights, because I have Flash set to "click to play", I first need to activate Flash before the black boxes show any content. There is an infobar which slides down or I can use the plugin notification icon (looks like a small Lego block) in the address bar. (Screen shot #1, #2)
    Next I click to play and I get an ad. Of course. Followed by content. So it should work.
    When you say you disabled all your add-ons, do you mean you tested in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions (but not plugins) and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    ''If Firefox is not running:'' Hold down the Shift key when starting Firefox.
    ''If Firefox is running:'' You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    and OK the restart.
    ''Both scenarios:'' A small dialog should appear. Click "Start in Safe Mode" (''not'' Refresh).
    Any difference?

  • Contextual Event Automatically refreshing child regions

    Hello,
    Here's my dilemma. We have an ADF page fragment that contains three regions(which point to 3 different bounded task flows). Lets call the bounded taskflows btf1, btf2, and btf3.
    What currently happens is we use contextual events to create communication between (btf1 and btf2) and communication between (btf2 and btf3)? We do not have contextual event that would allow communication between btf1 and btf3.
    So we currently have this communication working. Hence, when I hit a button in btf1, it fires off a contextual event, such that btf2 is refreshed. But what is happening here, is that btf3 is also being refreshed. We DON'T want THIS... We only want btf3 to be refreshed from an event that is fired from btf2.
    Question. Is there a way to restrict ADF from refreshing btf3 everytime and event is fired from btf1.
    In general, it seems as though all regions are being refreshed everytime a contextual event is fired. We don't want this. How can disable this from happening? We have checked all of wiring. There is no connection between btf1 and btf3.

    Try creating the event mapping - please see "28.7.2 How to Create Contextual Events Manually" in Dev Guide http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/web_adv.htm#CACJBFGI

  • Refresh fragments

    I have quite a bit of trouble refreshing fragments that are used as regions on pages.
    i have 2 use cases:
    1. 2 or more fragments that are on the same jsff page, one of them holds an overview of the data in the database and the rest is used to change it. How do i refresh the overview region when the data change?
    2. a fragment is used by being imported as a jar to another workspace and then dropped as a region on a jsff. How do i from another fragment or page in this new workspace refresh it.
    Hopefully there is a solution i can use for both cases.
    Any ideas?
    TIA

    Hi,
    your question falls into the category of region interaction. Here are your choices
    Option 1. The task flows use a shared Datacontrol setting. In this case a PPR of a dependent region shows the data change
    Opion 2. Task flows cannot use PPR directly (e.g. the fragments are in sibling regions) : In this case you can work with bean dependency injection: Create a managed bean in viewScope in the parent task flow definition. Pass a reference to the managed bean to the task flows as input parameters (both task flows will need to have a input parameter defined that takes a reference to this bean and safes it in a task fow page flow scope bean). This way both regions can call out o the parent taskflow, which now has control to refresh (PPR) a dependent region.
    read: http://one-size-doesnt-fit-all.blogspot.co.uk/2010/09/master-child-btf-chaperone-contextual.html
    Option 3. Contextual events: See http://docs.oracle.com/cd/E23943_01/web.1111/b31974/web_adv.htm#CACJBFGI
    Frank

  • Report refresh not working on BOE server (infoview)

    Hi,
    Having trouble refreshing Crystal report from BOE server (infoview) . Please see steps below I have used to create the report and refresh it.
    Version : Crystal Developer 2008
    Server : BOE XI 3.0
    Here is what I did :
    1) Created a BW query with paramters - couple of them are mandatory parameters.
    2) Created a Crystal report from BW query ( MDX was selected )
    3) Refreshed the report in Crystal Developer - Runs perfectly fine
    4) Published the same report to BOE server ( infoview)  WITH NO DATA SAVED option
    5) Opened up the report in BOE to run it.
    6) Displays the parameter selection box on the screen :
    7) I enter the mandatory values and execute - Report does not refresh and keeps displyaing the selection Box.
    NOW - SAVED THE REPORT WITH DATA option
    8)  Published the same report to BOE server ( infoview)
    9)  Opened up the report in BOE to run it.
    10) MY FORMATTING features are messed up for e.g Graph Titles
    11)  Displays the SELECTION values saved with the Crystal report
    12) I enter new selection values , report brings up the old data
    If I can get some help that woud be great.
    Thanks in advance .
    Hitesh Mehta

    Closing my open messages.
    Hitesh

  • Automatically refreshed workspace and changes into LIVE

    Hi,
    I've noticed that changes made directly into LIVE
    are immediately visible to automatically refreshed
    child workspaces. However the answer to the FAQ
    question "When sharing changes made in a child
    workspace with another child workspace, should I
    use periodic (manual) or continually (automatic)
    refresh?", states that this type of change must
    be refreshed manually.
    What is the expected behaviour afterall?
    Regards,
    Karina Borges

    Karina,
    For continually refreshed workspaces, changes made in the LIVE workspace will be immediately visible.
    For non-continually refreshed (NCR) workspaces, the changes are not immediately visible - to see the changes, NCR workspaces have to be manually refreshed.
    We will update the FAQ to make this point clearer.
    regards,
    - Ramesh.

  • [iPhone] "Refreshing" a pageControl

    I've got a pageControll based viewcontroller in my app, based off Apple's sample. Works pretty great, but I'm having a little trouble refreshing it when I add a new page. It acts in a Flip/Utility view combo. I can do my flipping fine, add a new "element" on the flipside, but when I flip back around, I can't quite get it to refresh properly.. I update the pageControl's numberOfPages, I load the new page. When I scroll to the new page, it won't let me scroll to it. It "shows" me the page, but it's as if I'm scrolling off the bounds (the view is there but it's treated like when you try scrolling past the far end of the pageControl.
    Here's the relevant source... I hope somebody can help, it's driving me up the wall and I can't figure it out!
    - (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    NSLog(@"appear!");
    NSMutableArray *theControllers = [[NSMutableArray alloc] init];
    for (unsigned i = 0; i < dataController.courseItems.count; i++) {
    [theControllers addObject:[NSNull null]];
    self.controllas = theControllers;
    [theControllers release];
    pageControl.numberOfPages = dataController.courseItems.count;
    pageControl.currentPage = 0;
    [self loadScrollViewWithPage:0];
    [self loadScrollViewWithPage:1];
    - (void)viewDidLoad {
    [super viewDidLoad];
    pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 400, 320, 18)];
    pageControl.hidesForSinglePage = NO;
    pageControl.backgroundColor = [UIColor clearColor];
    pageControl.numberOfPages = dataController.courseItems.count;
    [self.view addSubview:pageControl];
    [self.view setBackgroundColor:[UIColor blackColor]];
    // a page is the width of the scroll view
    scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 400)];
    [self.view addSubview:scrollView];
    scrollView.pagingEnabled = YES;
    scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * dataController.courseItems.count , scrollView.frame.size.height);
    scrollView.showsHorizontalScrollIndicator = NO;
    scrollView.showsVerticalScrollIndicator = NO;
    scrollView.scrollsToTop = NO;
    scrollView.delegate = self;
    [self viewWillAppear:YES];
    - (void)loadScrollViewWithPage:(int)page {
    if (page < 0) return;
    if (page >= dataController.courseItems.count) return;
    // replace the placeholder if needed
    JBCoursesViewController *theController = [controllas objectAtIndex:page];
    if ((NSNull *)theController == [NSNull null]) {
    theController = [[JBCoursesViewController alloc] initWithNibName:nil bundle:nil];
    theController.editingItem = [dataController.courseItems objectAtIndex:page];
    [controllas replaceObjectAtIndex:page withObject:theController];
    [theController release];
    if (nil == theController.view.superview) {
    CGRect frame = scrollView.frame;
    frame.origin.x = frame.size.width * page;
    frame.origin.y = 0;
    theController.view.frame = frame;
    [scrollView addSubview:theController.view];
    - (void)scrollViewDidScroll:(UIScrollView *)sender {
    // switch the indicator when more than 50% has scrolled
    CGFloat pageWidth = scrollView.frame.size.width;
    int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
    pageControl.currentPage = page;
    [self loadScrollViewWithPage:page - 1];
    [self loadScrollViewWithPage:page];
    [self loadScrollViewWithPage:page + 1];

    hello
    i am also facing a problem.
    first problem is why the first view loaded twice in the example??
    second problem is
    i am generating a view as page control sample did.
    but i want to add another view with flip animation for example.
    i click on a table cell.the view is loading perfectly with my desired data.
    but i am unable to load previous view....
    means if i click on cell 5 i also want to go back to previous 4 views but unable to do it.
    third problem is
    i want a another view for example i double tap on the view and it flips to a new view.on that new view i want to show some text.again tapping on thet view i want to show the previous view.but the problem is if i swipe to next view the other sides view is loaded but with black screen

  • Problems refreshing list

    I have two Tlists that I dynamically created with a record group with two procedures: get_users and populate_list. I have trouble refreshing the list every time I try to create a new record. I get error: unable to populate list with record group. I've tried setting the list item to null, clearing the list, and calling populate_list, but i still get the same error. Please help. Any suggestions is greatly appreciated. =)
    Thanks,
    Kristine

    If you found the solution then it would be appreciate if you also post the solution :)
    Thanks
    --Anil                                                                                                                                                                                                               

  • Cannot refresh network

    Hi All
    Sorry about a possible repost, but I couldn't really find solutions from earlier discussions.
    I'm having trouble refreshing the list of computers that are visible under Network in Finder. The only way I can force a refresh is after a reboot. I have to constantly switch between different networks, and rebooting often does get a little annoying. The tech support person told me that they have to do the same thing at Apple - reboot their computers to refresh the Network! Pesonally, I don't think that's a very elegant solution. Any suggestions would be most appreciated!
    Thanks,
    Chetan

    Hi biswajit216, 
    Welcome to the Sony Community! 
    Please try to reset the unit to default settings. Here are the steps.
    Unplug the TV power cord from the electrical outlet.
    Allow the TV to remain without power for one minute.
    Plug the power cord back into the electrical outlet.
    NOTE: The TV should turn on automatically. If it does not, turn it on.
    Wait approximately 40 seconds for the TV to completely start up.
    On the TV remote control, press and hold the UP ARROW button.
    While holding the UP ARROW button, press and release the POWER button on the TV set.
    Notes:
    The TV may turn off and then back on.
    The button may be on the front, top or side of the TV. If your TV has an Energy Saving switch, be sure to press the POWER button rather than the Energy Saving switch.
    Release the UP ARROW button.
                  NOTE: The initial setup screen displays if the above procedures were performed correctly.
              8.  Follow the on-screen instructions to complete the initial setup.
    IMPORTANT: If the reset did not complete successfully, disconnect all devices from the TV and turn off or disable the network connection the repeat these steps.
    For further assistance regarding your concern, please contact the Sony offices/Sony representative offices nearest to your place of residence in Asia Pacific region http://www.sony-asia.com/countryselector.html?hpid=countryselector:AsiaPacific. Due to proximity, they are in a better position to respond to your questions or concerns.
    If my post answers your question, please mark it as "Accept as Solution"

  • Refreshing JLIst

    I'm having a bit of trouble refreshing JList
    I have a file that stores an arraylist of objects. What happens when the program starts up is the arraylist is deserialized, converted to an array, and then displayed in the JList. I also have 3 other classes which are accessed via buttons, and those 3 deserialize the arraylist, modify it, and save it back to the file. One class adds an object, one edits(replaces) and object, and one deletes. How do I get my JList to update after a change is made to the file?

    You update the model of the JList.

  • 4.2.1 Bug: Current values of child cascading LOVs are LOST.

    Hello, ApEx Team!
    This bug affected 4.1.1 and 4.2.1 but with different behavior. It seems that someone was trying to fix it.
    According to docs "whats new in 4.1" a value of refreshed child cascading lov is derived from default value settings of select list.
    Please follow these steps to see the bug.l builder-work done for you here http://apex.oracle.com/pls/apex/f?p=14110:1
    1.Create primary select list P1_SEL1.
      Display null value: Yes
      LOV definition:
        select 'aaa' name,'a' id
          from dual
         union all
        select 'bbb' name,'b' id
          from dual
         union all
        select 'ccc' name,'c' id
          from dual2.Create child select list P1_SEL2.
      Cascading LOV Parent Item: P1_SEL1
      Page Items to Submit: P1_SEL2 (I strongly believe that this item should be submitted automatically along with Parent Item)
      Display Null Value: Yes
      LOV definition:
        select 'aaa' name,'a' id
          from dual
         union all
        select 'bbb' name,'b' id
          from dual
         where :P1_SEL1 in ('b','c')
         union all
        select 'ccc' name,'c' id
          from dual
         where :P1_SEL1 in ('c')
      Default: return :P1_SEL2;
      Default Value Type: PL/SQL Function Body3.Run app. and manually change P1_SEL1 and P1_SEL2 to 'bbb'.
    4.Manually change P1_SEL1 to 'ccc'.
    h2.
    In apex 4.1.1..
    you see that P1_SEL2 is resetted to NULL automatically. The value of P1_SEL2 is LOST. Although I tell apex to submit P1_SEl2 value to set its session state, but the session state still remains NULL.
    The session state of P1_SEL2 is always NULL and I have no idea how to set it as it is set in a browser at the moment of changing parent LOV P1_SEL1.
    h2.
    Now apex 4.2.1.
    It seems this bug is fixed. Indeed it is NOT fixed.
    To see this bug in 4.2.1 just...
    5.Create a third child select list P1_SEL3 which depends on P1_SEL2.
      Cascading LOV Parent Item: P1_SEL2
      Page Items to Submit: P1_SEL3 (Again, I hope you will always submit current item automatically as you do for the parent item)
      Display Null Value: Yes
      LOV definition:
        select 'aaa' name,'a' id
          from dual
         union all
        select 'bbb' name,'b' id
          from dual
         where :P1_SEL2 in ('b','c')
         union all
        select 'ccc' name,'c' id
          from dual
         where :P1_SEL2 in ('c')
        Default: return :P1_SEL3;
        Default Value Type: PL/SQL Function Body6.Run app. again. Manually set P1_SEL1, P1_SEL2 and P1_SEL3 to 'bbb'.
    7.Change P1_SEL1 to 'ccc' and see the bug:
    1) P1_SEL2 is reset to NULL for just a short time and than restored to 'bbb'.
    2) P2_SEL3 is reset to NULL. So the session state was NULL for this item at the moment of calculating default value. As a result the value of child cascading lov is LOST.
    So this bug is still present in 4.2.1.
    Can I hope to get workaround for this problem in 4.1 and 4.2?
    Thank you,
    Vladimir
    Edited by: vgoncharov on 17.12.2012 19:37
    Edited by: vgoncharov on 17.12.2012 22:45

    Good to hear this is already being worked on.
    When we tried to work around the "Automatic detection" bug - changing the "Application Language Derived From" to "Application Preference" or "Session" - we hit issue that some page processes were not firing in translated application.
    See Page processes not firing in Translated applications
    Jan

  • DW6, basic refresh causes instant crash

    Hello, I have recently installed the creative cloud.  Everything appeared to install correctly at first glance.
    Some apps such as photoshop, indesign, dreamweaver seem to be opening previously made files no problem.  But, I can reproduce an appcrash of dreamweaver CS6 every single time I hit the refresh button after making a change to the code on a number of files in a certain section of our website that includes javascript/jquery galleries in them.  I have opened many files now and can reproduce this crash on every file with these galleries and content sliders from one site we are making. I have both .shtml and .html versions of these pages and either one with the jquery galleries are crashing as soon as I make any code or text changes and try to hit refresh.
    I run windows7 64bit.  I have the CS5 Master suite installed from previous.  I can't remove cs5 until I know cs6 is indeed working.  Right now I'm not able to save changes to a large number of files in dreamweaver.  So hopefully I don't need to uninstall CS5 just to test.  It appears to maybe be something with the extra javascript content slider/galleries on the page conflicting with dreamweaver during refresh or save.
    Any help would be appreciated.
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Dreamweaver.exe
      Application Version:    12.0.0.5808
      Application Timestamp:    4f7617ae
      Fault Module Name:    Dreamweaver.exe
      Fault Module Version:    12.0.0.5808
      Fault Module Timestamp:    4f7617ae
      Exception Code:    c0000005
      Exception Offset:    009e5916
      OS Version:    6.1.7601.2.1.0.256.48
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    ----------------------------------possibly unrelated issue-------------------------
    Also noticed during this time, first day of CS6 use attempts, I am having licensing issues requiring repeated sign ins at application load.
    Presenting notice that my trial period was over and that I need to license the product.  I click the button for licensing it using my adobe ID and it works.  But this has happened now maybe 8 times today already during these crash and restart attempts.
    Activated!  at least until I try to fire it up again.  I don't know if this licensing thing has anything at all to do with the crashes mentioned previously.  They seem unrelated since I have no trouble refreshing code or saving files in CS6 on files without the jquery slider/galleries.

    Thanks Nancy.  I'll try disabling the live view javascript and external files loading and report back.
    The site does have external files and does have use javascript and jquery.   My extensions are already turned off.
    On the activation side, I just got done speaking with adobe support about that and they shared my screen and fixed some permission settings on a specific adobe system folder that was installed new with CS6.  I'm hoping that holds this time. Seems to be so far.
    Otherwise, they took a quick look at my web pages crashing (the ones with and without javascript/jquery) and I showed how a single letter change of anything in code view and hitting refresh would crash the file immediately.   At first she said it was because I was using shtml files.  But the fact is the same crash occurs on our copy of the site that is only .html, without server side includes, proves that wrong. I showed her that as well.  Next she figured it was the jquery on those pages. 
    A supervisor came on the line to help further, supposedly.  She is the one that got the activation working.  But she also basically just told me that they don't support any jquery whatsoever as it is a third party piece of sofware.  Ok fine.  But we were able to build this site with CS5 dreamweaver with no issues a month ago.  The only issue working with CS5 is that you couldn't expect it to live preview the site consistently and was often slow on preview loading those external files and whatnot.  Never crashes to desktop, and certainly not for changing a single character in the code and saving or refreshing. I can reproduce this error with this site on standard html 5 .html files and the .shtml files alike.  Any page that has our content gallery slider in it. Crash on hitting the refresh button.
    To me it's something with CS6 handling jquery.  This site validated with no errors last friday.  One warning on CSS that was more of a suggestion.  Sadly, our biggest reason for upgrading was for the "enhanced jquery" features.  But now I'm thinking that in their sales literature that their enhanced mobile jquery support just means support for their proprietary new jquery mobile modules they have created, and actually may crash on a lot of other sites people already had third party jquery in.  We are using almost the very newest standard jquery library.  I think there is one newer now, with some standard slider/gallery javascript functions and a couple custom scripts. This just saddens my heart a bit to upgrade and find out about these crashes.  I was certainly hoping for CS6 to be more accepting of newer web tech, not less. The woman simply repeated that dreamweaver does not support jquery.  And yet their main page for DW6 says this:
    "jQuery Mobile support
    Add advanced interactivity with jQuery code hinting. jQuery makes it simple to add interactivity to web pages."
    Is this the kind of sales tricks that occured when they supposedly started supporting "layers" and "divs" but in reality it was only supportying a thing called APdiv and APlayers.?
    To top off the enjoyment of my phone support call so far, the supervisor hung up on me when I was asking if there was anyone to submit my html files to for possible future dreamweaver udpate teams to review, in case this was just something goofy causing this.  Since it only happens when trying to hit the refresh button.  She repeated one last time that only higher level support would look at files and that would cost me over $200 in support fees.    I asked if the forums or some dev site would be a good place to start looking into a solution.  She hung up.
    Again, thanks for the tips Nancy.  I will try disabling some of those view options...  Anything to stop the dreaded CTDs.  But one of the major features in CS5 was the ability to be connected to your external files, search through the list of them, open some of them in code view, et al.   Is this a step backwards, or basically a workaround for brand new software already.  I suppose.  I hope this workaround of disabling features works for now otherwise DW6 is getting shelved until further notice.  I suppose I have 30 days to request my money back.
    I hope I don't find these issues in other pieces of cs6 cloud.  I had already had an issue working with old cs5 photoshop files in cs6 trial.  Please let these be the only two issues to crop up. This cloud subscription idea is great, some of the new software features are great.  But not if I have to recreate everything.

Maybe you are looking for

  • I received an unknown error (1) when trying to restore my iPhone 4. What do I do now?

    I tried to upgrade my iPhone 4 with iOS 6 through wifi but the phone locked up. I tried to restore it on my Mac but an unknown error (1) popped up and won't let me restore it. Any advice?

  • How to rename a file or folder.

    HI, I was thinking of some thing, but I need to know how to make java rename a file/folder like you do via dos. Hope this is clear. PS I had another post and I got the answer thanks for those who help, I lost the thing so couldn't reply(DUH'). So say

  • Can't add new business folders anymore

    I don't know why, but I can't add any business folders on our dev server. If I try to add any folders who are not part of the current EUL, Discoverer Administrator always say : ORA-00001 : unique constraint (ACAIQ.EUL5_EXP_PK) OBJECT = (name of table

  • SQL Developer 3.2.09 (Build MAIN-09.23) Disconnected Worksheet bug

    If you disconnect from a database, the SQL Worksheet that was using that connection loses its connection as shown in the drop-down at the top-right. (ok) If you then click on the drop-down to re-connect, you can choose a database and a modal popup ap

  • How do I insert an image at the beginning of a composition lightbox sequence

    Using v4.1 build 8 on MacBook Pro10.6.8 I have an existing lightbox,and I want to add an image (trigger) at the beginning of the sequence, displacing the other triggers/ images to the "right", or "down".  Alternatively, is there a way to re-order the