CS3 Bug with Server Behavior Command?

Hi there,
by updating a "Command" with the Server Behavior window
(windows XP) the upcoming window does not read all the Defaulkt
Values and Run Time Values anymore (do not know if ever did).
Here is an
Example .
anybody saw the same problem? Or anybody knows a solution?
thx
Sebastian

But if you have any pull, you should pass the note along to the Dreamweaver team and have them fix the bugs.
It's not a question of "pull". Adobe (or any other software company) decides what to fix, improve, or drop on a cost/benefit basis. Fixing an ASP feature might be relatively simple, but doing so means that something else gets ignored. The ASP feature might be very crucial to you, but if Adobe considers it a low priority in terms of affecting overall sales, it's unlikely to get fixed. Whether that's the right business decision is not for me to say.
I have submitted a large number of bug reports and feature requests over the years. Some are acted upon, others aren't. So far, I have accepted that the new features are, on balance, worth more than the features that haven't been fixed or implemented. Each user has to make the same decision. If people stop buying Dreamweaver because they think Adobe has made the wrong choices, either Dreamweaver will decline or Adobe will change its policies.
I have seen new tools, such as Zend Studio, offered by other companies that do PHP things far better than Dreamweaver. I use Zend Studio, and like it a lot; but as an overall web development tool, Dreamweaver still beats it hands down. But neither Dreamweaver nor Adobe can rest on their laurels. That's why I encourage people to make use of the feature request/bug report form at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform to tell Adobe what's important to them. There's no guarantee that your ideas will be adopted, but it's the only sure way to get ideas directly to the people who have the power to implement them.

Similar Messages

  • Server Side Includes with Server Behaviors

    Is it possible to include pages that have server behaviors attached to them, or are these behaviors limited to pulling in just plain html from the included pages?
    For example, I want two pages, index.php and login.php.
    I want the login.php page to have all of the user login behaviors/links/fields/buttons/etc. and then Include that on the index.php page. Am I supposed to be able to do this using ADDT server side includes?
    I've been successful using server side includes to include static text on a page, but not dynamic content with behaviors attached. I'm not sure if I'm just have a mistake, or if this won't work in the first place.
    thanks!

    Hi,
    this is generally possible, as the included files sure can have their own server hehaviours -- did that several times, where the "container" page had about no server behaviours embedded, but the included file did.
    ADDT´s server side includes will, loosely said, basically just "dynamically" strip the included document´s "head", but leave other components like server behaviours untouched
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Open New Browser window with "Server Behavior"

    I know how to open a link in a new browser window by going to
    the Behaviors panel. The site I'm working on is using PHP, so
    instead of a Behaviors panel all it shows is a "Server Behaviors"
    panel. Under the "Server Behaviors" there is't an option to open a
    link in a new browser window. Should I be looking someplace
    different or is there another way to add this function to a link?
    Thanks in advance for any help!

    horsethiefbasin wrote:
    > I know how to open a link in a new browser window by
    going to the Behaviors
    > panel. The site I'm working on is using PHP, so instead
    of a Behaviors panel
    > all it shows is a "Server Behaviors" panel. Under the
    "Server Behaviors" there
    > is't an option to open a link in a new browser window.
    Should I be looking
    > someplace different or is there another way to add this
    function to a link?
    >
    > Thanks in advance for any help!
    >
    Makes no difference whether youre working on a php site or an
    ordinary
    htm site you still open a new browser window in exactly the
    same way.
    windows>behaviours>open browser window

  • DW CS3 conflict with server & uploading files (please help?!?!)

    I work with one other person and although we work on files locally, when one of us tries to push a file up to the remote server we get an error that reads:
    "name of person" is currently working on that file (Please enable Check In/Out in the Site Definiteion dialog box to avoid overwirting changes made by otehr users.) Do you want to upload the file anyway?
    Neither one of us has enabled Check in Check out feature either. My question is that I know this person isn't even in Dreamweaver or connected to the server. Two strange things:
    1) Dreamweaver gives the actual person who is trying to upload the error saying that they are currently working on the file.
    2) Dreamweaver actually gives me that error message but it's telling me that someone who left the office over two years ago and who I know no longer has an account on the server. How can she currently be working on a file or even linked to that file name???
    We thought this glitch would go away when we got new PCs and loaded CS3 but it hasn't. Does anyone have any suggestions to help me figure out why we keep getting these issues.
    THANKS!!!

    That's a server side issue. Either its timeouts are set way too liberally (to the server, your FTP connections never seem to end) or it creates a new session for every time you log on. Both are fundamentally wrong and from your description I get the impression that the machine is also otherwise not being maintained properly. Time to fly in the admin, I'd say.
    Mylenium

  • Connected with server, but commands do not seem to arrive..

    Hello there,
    I'm trying to create a connection with an IMAP server which is secured
    through SSL. I can get the connection just fine, and I get a first respone
    from the server. But then I send out my login string, and it does not seem
    to arrive at the server, because I don't get an answer returned! After some
    time, I receive a message from the server saying that I've been idle for too
    long, and then the connection gets closed..
    But why doesn't my data arrive at the server? (because I believe that 's the
    problem here).
    I realy hope someone could help me out :)
    CheckIMAP.java:
    import java.io.*;
    import java.net.*;
    import javax.net.*;
    import javax.net.ssl.*;
    import java.security.*;
    public class CheckIMAP
        static Socket imap = null;
        static OutputStreamWriter outStream = null;
        static InputStream inStream = null;
        static BufferedReader reader = null;
        static int currentState = 0; /* 0 = nothing, 1=connecting, 2= login */
        //public CheckIMAP(String host, String user, String password, int port)
        public static void main(String[] args)
            SSLContext sc = null;
            String line = null;
            // server information
            String host = "server";
            int port = 993;
            try
                // Create a trust manager that does not validate certificate
    chains
                TrustManager[] trustAllCerts = new TrustManager[]{
                    new X509TrustManager() {
                        public java.security.cert.X509Certificate[]
    getAcceptedIssuers() {
                            return null;
                        public void checkClientTrusted(
                            java.security.cert.X509Certificate[] certs, String
    authType) {
                        public void checkServerTrusted(
                            java.security.cert.X509Certificate[] certs, String
    authType) {
                // Install the all-trusting trust manager
                try
                    sc = SSLContext.getInstance("SSL");
                    sc.init(null, trustAllCerts, new
    java.security.SecureRandom());
                catch (Exception e)
                    e.printStackTrace();
                // connect with the IMAP server
                currentState = 1;
                SocketFactory socketFactory = sc.getSocketFactory();
                imap = socketFactory.createSocket(host, port);
                outStream = new OutputStreamWriter(imap.getOutputStream());
                inStream = imap.getInputStream();
                reader = new BufferedReader(new
    java.io.InputStreamReader(inStream));
                line = reader.readLine();
                while(line != null)
                    print(line);
                    System.out.println("** CurrentState: "+currentState);
                    readData(line);
                    line = reader.readLine();
                close();
            catch(UnknownHostException e)
                System.out.println("UnknownHostException has been caught.");
                e.printStackTrace();
            catch(IOException e)
                System.out.println("IOException has been caught");
                e.printStackTrace();
        public static void readData(String line)
            if( line.substring(0,4).equalsIgnoreCase("* OK") )
                // connection ok, now authenticate
                System.out.println("** Connected to IMAP server");
                write("A001 LOGIN foo bar");
                currentState = 2;
            else
                // Connection failed, abort
                System.out.println("** Connection failed, aborting");
                close();
        // close the socket and all the streams
        public static void close()
            try
                System.out.println("** Closing all connections.");
                inStream.close();
                outStream.close();
                imap.close();
                reader.close();
            catch(IOException e)
                System.out.println("IOException has been caught");
                e.printStackTrace();
        // sent a command to the server
        public static void write(String cmd)
            try
                outStream.write(cmd);
                outStream.flush();
            catch(IOException e)
                System.out.println("IOException has been caught");
                e.printStackTrace();
            System.out.println("--> "+cmd);
        // print out every line received from the server
        public static void print(String rcvd)
            System.out.println("<-- "+rcvd);
    }Many thanks for any help!!
    Steven

    Are you sending a line terminating \n or \r\n or whatever the protocol requires...?

  • Dreamweaver CS3 bug with templates?

    Hello,
    I am having a very major problem with a template. I am on
    Dreamweaver CS3 and my template has been created in Dreamweaver 8
    and it says in parenthesis (xhtml) - even though all my pages from
    the template are html.
    When I now make even the most minor change (even adding one
    single letter) to my template or when I try to create a new page
    from that template, the resulting pages have missing images (my
    whole top banner), but the actual template looks perfect. You can
    actually seean example of a page on a test website at
    http://ww2.itrak.com/iTRAKnouveau/
    I seem to remember I actually had this problem once before
    and I did not have it in Dreamweaver 8 but I am not sure of my
    recollection.
    Unfortunately, this time I cannot access Dreamweaver 8
    anymore... I am really hoping someone can solve this one with me!!
    Christine

    nope
    Jo
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Sounds like it's not a DW problem after all....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "josie1one" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> There's this:
    >>
    >> body {
    >> background-color: #d3d5d6;
    >> margin-top: 0px;
    >> background-image: url(); <----------- no image
    defined
    >> background-repeat: repeat-x;
    >>
    >> and
    >>
    http://ww2.itrak.com/iTRAKnouveau/images/header_print.jpg
    >>
    http://ww2.itrak.com/iTRAKnouveau/images/header_itrack_4_01.jpg
    through
    >> to 4_24 don't appear to be on the server - Not
    Found. Can you check your
    >> site definition?
    >>
    >> --
    >> Jo
    >>
    >>
    >>
    >>
    >> "Strateege Health"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Hello,
    >>> I am having a very major problem with a
    template. I am on Dreamweaver
    >>> CS3 and
    >>> my template has been created in Dreamweaver 8
    and it says in parenthesis
    >>> (xhtml) - even though all my pages from the
    template are html.
    >>> When I now make even the most minor change (even
    adding one single
    >>> letter) to
    >>> my template or when I try to create a new page
    from that template, the
    >>> resulting pages have missing images (my whole
    top banner), but the
    >>> actual
    >>> template looks perfect. You can actually seean
    example of a page on a
    >>> test
    >>> website at
    http://ww2.itrak.com/iTRAKnouveau/
    >>> I seem to remember I actually had this problem
    once before and I did not
    >>> have
    >>> it in Dreamweaver 8 but I am not sure of my
    recollection.
    >>> Unfortunately, this time I cannot access
    Dreamweaver 8 anymore... I am
    >>> really
    >>> hoping someone can solve this one with me!!
    >>> Christine
    >>>
    >>
    >>
    >

  • If DW 2014.1 cc does not support database, binding, server behavior, and PHP/MySQL require it, but using Adobe Extensions Mngr IS NOT recommended, then WHAT TOOLS do we use to develop a database with DW?

    I'm using windows DW 2014.1 cc. I'm following lynda.com tutorials to build a website database with PHP and MySQL. I learned I have to download Adobe Extension Mngr to active DATABASE, BINDING, SERVER BEHAVIOR panels, which I've done. BUT NOW I'VE BEEN ADVISED NOT TO USE THESE TOOLS for new development. If this is the truly the case, then WHAT TOOLS DO I USE to develop a website that has a database?

    then WHAT TOOLS DO I USE to develop a website that has a database?
    Besides the tools you would already need for a system using server behaviors (web server, PHP, MySQL, phpMyAdmin) the only extra tool you need is your own brain.
    A lot of people are disappointed by the lack of database tools in DW now, but really it's much better this way. You can never achieve better than a rinky-dink dynamic website using server behaviors. The code Dreamweaver dynamic behaviors create is really terrible. (I'm not insulting the fine folks who wrote the feature. It's just a consequence of automated code.) You can write better, simpler, more maintainable code yourself, and over time you will improve. With server behaviors you cannot improve. you get stuck in database kindergarten.

  • DW CS6 Not allowed me to select again the + in the server behaviors

    I worked with server behaviors normally yesterday but today it has not allowed me to work with them.
    - I work with the tables in the database.
    - I checked the site definition and is correct.
    - I work with links normally.
    The system works normally, except the server behaviors.
    What should I do to display the + in server behaviors?

    Hi, Ben:
    The server is PHP and the document was opened with PHP.
    I work with WAMP and the DB is MySql,  I checked that It was active and was working properly.
    The connection to the DB was fine, also checked the site definition and it was good, I could work with everything in DW except the server behaviors. I turned off the system several times, because it could have been any open document, which avoiding the continuity of my work, but every time the problem was there.
    Today was concerned that the work I have to deliver is short in time and I have to say, by some miracle of God, the system is working well now, but I am very nervous because if the problem happens again, I do not know which is the solution.
    Thanks a lot.

  • Parse errors from server behaviors

    I have created an input form for a mysql/php database set up on my testing server with a set of fields in a repeat region. All the fields are properly displayed when I switch to LiveView or browser preview. I am, however, having the following problem with server behaviors:
    If I add “Display Total Records” at the bottom, it displays just fine, but if I try to add the behaviors for previous page, next page, starting record number or ending record number, I get this:
    Parse error: syntax error, unexpected ';' in C:\XAMPP\htdocs\LEAP\admin.php on line 81
    Lines 81-84  read:
    $totalPages_VolApp = ceil($totalRows_VolApp/$maxRows_VolApp = 10;
    $pageNum_VolApp = 0;
    if (isset($_GET['pageNum_VolApp'])) {
      $pageNum_VolApp = $_GET['pageNum_VolApp'];
    I also cannot switch the repeat region to “show all records.” This results in a similar syntax error.
    What is a parse error? What problem is indicated? thanks.

    What is a parse error? What problem is indicated? thanks.
    It's an error in code. The error is in the following line:
    $totalPages_VolApp = ceil($totalRows_VolApp/$maxRows_VolApp = 10;
    That line is nonsense in PHP terms. It has almost certainly been created as a result of not removing server behavior code correctly when making changes to a page. You can't edit PHP code simply by selecting dynamic text in Design view and deleting it. To remove a server behavior cleanly, you need to select its name in the Server Behaviors panel and click the minus button.
    The code you have posted here looks so badly corrupted, I suggest you start the page again.

  • Locked Regions & Server Behaviors

    Hi:
    Any help to resolve this problem
    making this change would require changing code that is locked
    by a template or a translator
    I use templates in all of my projects along with server
    behaviors, and i frequently get this error.
    I have worked around this by adding necessary recordset
    behaviors before applying template but sometimes you don't know
    always what you would be requiring at the end and even if i do know
    the Recordset pagination invokes this error which I actually use
    after applying template to my page.
    Sometimes i would apply a recordset in a temporary file and
    will copy the pertinent code from there to the page i am working
    on.
    I want an efficient approach to use server behaviors without
    any conflict with templates. I usually have simple templates with a
    single editable field for recordset display.
    Is it something wrong with the way I am creating template or
    what should be the approach to avoid this error. Further sometimes
    I do have server behaviors inside templates (not always).
    P.S. Post earlier to General Category but I believe this is
    the right one.

    The page validates without adding the SB?
    I can see nothing wrong with your markup as posted.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Saad Shams" <[email protected]> wrote in
    message
    news:[email protected]...
    > Still I am unable to track the problem. To avoid future
    problems, where
    > exactly
    > do you suggest me to place code within head section. I
    doubt that it may
    > happened due to code in head section at arbitrary
    places.
    >
    > I have checked with creating a simple template with few
    tables in it,
    > adding
    > server behaviors works fine, as a result of increase in
    design/code may be
    > due
    > to addition of code in head section, i believe it
    happens due to that.
    >
    > Here is a pattern of dreamweaver head section of a
    template, suggest me a
    > safest place within this region.
    >
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > </head>
    >
    > Well at this point, i added some SB and the error
    appears again on further
    > SBs, check it yourself.
    >
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > <?php mysql_select_db($database_connBalanaa,
    $connBalanaa);
    > $query_Recordset1 = "SELECT * FROM advertise";
    > $Recordset1 = mysql_query($query_Recordset1,
    $connBalanaa) or
    > die(mysql_error());
    > $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    > $totalRows_Recordset1 =
    mysql_num_rows($Recordset1);?>
    > </head>
    >
    > Can't add any further Recordset after that on CHILD
    Pages.
    >
    > Looking forward to your kind suggestions.
    >

  • Dreamwever CS5 ERROR server behavior panel cannot determine wheter "command" or "recordset (Query)"

    i get this error whenever i open pages created in CS4. ive tried deleting the cache file... deleting the entire configuration folder and letting DW re build it.. nothing... error still there. how can i turn it off? i also cant seem to find the "edit server behaviors" button.. double click? well DW freaks out with that aswell... yes i know i have some insanely hand edited code.. basically use DW as notepad replacement.. with extra features like having the option of "add recordset" then going and editing it to my liking.
    the error
    [quote]
    The server behavior panel cannot determine whether "command" or "recordset (Query)" is applied to your page. Please select edit Server Behaviors and change one of the two behaviors to ensure that each is uniquely identifiable.
    [/quote]
    this is a total show stopper for me.. im going to have to go back to a previous version cant click "ok" every time i open a page.. and every time i follow a include file.
    development ASP
    Dreamweaver CS5
    Question.. how to disable the error message from popping up? i'll take my chances with hand editing the recordset / command by hand if i need it changed.

    this is bleh... having to resort back to CS4..
    is there any way to legaly go back to cs4 dreamweaver but still use the other cs5 applications?

  • DW CS3 - Server Behaviors effects blind - it blinks when loading

    Hi,
    I use a window xp operating system.  I created a floating div on an html page, and inside the div I inserted a table with 2 columns.  In the left column I inserted a photo and in the right a link to 'enter' the site.  I gave the photo a server behavior effect to 'blind down' the photo on upload.  The issue is that when the page first uploads, the photo blinks for a split second, before it begins to start the 'blind down' effect.  It looks bad that when a user gets to the page for the first time that same photo blinks quickly before it starts the effect.  How do I stop it from blinking before it starts the effect?
    This is the link to the website.  Click on the 'showdown racing' box to see the effect blink :  http://mysticdesignworks.com/index.html
    Thanks!

    BiggestDave wrote:
    > Site definitions are setup as per instruction, however,
    when opening the
    > send.php or view.php pages, the server behavior is lost
    in the applications
    > tab. If I try to set them up on that tab again, it takes
    me to a new site def.
    > session.
    The video tutorial I have created at the following location
    shows how to
    define up a PHP site in Dreamweaver:
    http://experts.na3.acrobat.com/phplocalsitewin/
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Command Server Behavior in CS4 Troubled

    Does anyone know what happened to the Command server behavior in CS4.
    When I use MX 2004 to create an Update Command, I get the following code on the page:
    set Command1 = Server.CreateObject("ADODB.Command")
    Command1.ActiveConnection = MM_sportstest_STRING
    Command1.CommandText = "UPDATE board  SET name = 'test' WHERE name IS NULL"
    Command1.CommandType = 1
    Command1.CommandTimeout = 0
    Command1.Prepared = true
    Command1.Execute()
    When I use CS4 to create the same Update Command, I get the following code on the page:
    Dim Command1__@@varName@@
    Command1__@@varName@@ = "@@defaultValue@@"
    If (@@runtimeValue@@ <> "") Then
      Command1__@@varName@@ = @@runtimeValue@@
    End If
    Set Command1 = Server.CreateObject ("ADODB.Command")
    Command1.ActiveConnection = MM_sportstest_STRING
    Command1.CommandText = "UPDATE board  SET name = "test' WHERE name IS NULL"
    Command1.CommandType = 1
    Command1.CommandTimeout = 0
    Command1.Prepared = true
    Command1.Execute()
    CS4 does not even recognize the resulting code as a Command in the Server Behaviors window.  If I open both pages in MX 2004, the MX 2004 page is interpreted, but not the CS4 page.
    It looks like CS4 is not able to create Update Commands nor any other type of Command server behavior.  I am using ASP/VBScript.
    Does anyone have any insight to this.......or is it just a bug in CS4??
    Mike

    I'm having the same problem.  I cannot create any new commands, In addition, CS4 will not recognize any of the commands that were created from DW8 and prior versions.

  • PHP, ASP, CFM Server Behavior Code Output in DW 8- CS3- CS4

    Is there any major differences in the SB code output in CS4 vs CS3 or 8?  I am debating buying CS4, but have heard code is essentially the same output when using the PHP, CFM and ASP server behaviors.  I essentially only use DW for the pre-built SB dynamic functions as I write my own HTML and CSS. I can hand code if needed in DW8, but wanted to check with the experts on the code output of both versions.  Is there any major difference?

    Thanks David.  I may wait for CS5 then to see if any new features in Server Behaviors set of actions.  I should hand code more, but the DW server behaviors are great for a quick basic website.  I just worry they wont work completely with new versions of CFM and PHP to come.

  • Possible bug  with af:selectOneChoice (Server Exception during PPR, #1)

    Hi,
    I have a big problem and it goes like :
    I have a master-detail form (two very simple View Objects linked by a view link, usual stuff...) and I use popup windows for adding new detail records .
    On the popup window for inserting new detail records I have a return ('Cancel') button (with the standard fuctionality of giving up the inserting, closing popup etc..)
    In the same popup, I have some LOV-s as af:selectOneChoice.
    Everything works fine, as expected, except in the case when there are no existing detail records, and user tries to insert the first detail record
    (by calling CreateInsert operation), and then decides to cancel operation by clicking the Cancel button.
    Then, NullPointerException raises with following stackTrace:
    P.S. We are discovered that the problem is in the af:selectOneChoice, when there are no such one component in the popup,
    all works without problems. The problem raises in a lot of JSF pages which contains af:selectOneChoice
    So, stackTrace is:
    [2008-04-03T12:16:47.773+02:00] [adfinternal] [ERROR] [] [view.faces.config.rich.RegistrationConfigurator] [tid: 13] [ecid: 192.168.67.109:9382:1207217807679:36,0] [APP: current-workspace-app] Server Exception during PPR, #1[[
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding$1.size(FacesCtrlListBinding.java:115)
         at java.util.AbstractList$Itr.hasNext(AbstractList.java:416)
         at oracle.adfinternal.view.faces.renderkit.rich.SelectItemUtils.addSelectItems(SelectItemUtils.java:206)
         at oracle.adfinternal.view.faces.renderkit.rich.SelectItemUtils.getSelectItems(SelectItemUtils.java:77)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleSelectBaseRenderer.getSelectItems(SimpleSelectBaseRenderer.java:239)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleSelectBaseRenderer._renderContent(SimpleSelectBaseRenderer.java:192)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleSelectBaseRenderer.renderNonElementContent(SimpleSelectBaseRenderer.java:100)
         at oracle.adfinternal.view.faces.renderkit.rich.FormInputRenderer.encodeAllAsNonElement(FormInputRenderer.java:241)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleSelectOneChoiceRenderer.encodeAllAsNonElement(SimpleSelectOneChoiceRenderer.java:204)
         at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.encodeAll(FormElementRenderer.java:129)
         at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:846)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.renderFieldCellContents(LabeledInputRenderer.java:153)
         at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.renderFieldCell(LabelLayoutRenderer.java:495)
         at oracle.adfinternal.view.faces.renderkit.rich.LabelLayoutRenderer.encodeAll(LabelLayoutRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.encodeAll(LabeledInputRenderer.java:140)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeFormItem(PanelFormLayoutRenderer.java:958)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeFormColumns(PanelFormLayoutRenderer.java:831)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer._encodeChildren(PanelFormLayoutRenderer.java:326)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelFormLayoutRenderer.encodeAll(PanelFormLayoutRenderer.java:195)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeContent(PanelWindowRenderer.java:269)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelWindowRenderer.encodeAll(PanelWindowRenderer.java:190)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.PopupRenderer.encodeAll(PopupRenderer.java:225)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:136)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:287)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:304)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:374)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:815)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:208)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:733)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1271)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:753)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:244)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:175)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:174)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:619)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:241)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:201)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)If there are at least one detail record, all works as expected
    Any idea why this happens ? Sounds like a u bug to me....

    Hi,
    good news first: The behavior you describe doesn't reproduce in a later build that we use to verify TP4. I didn't test with TP3 but observed two wrong PPR references that I fixed before running the app
    the corrected PPR entries are
    partialTriggers=":::saveAndCreateOrderItemsBtn :::cancelInsertOrderItemsBtn">
    and
    partialTriggers="::ordersPanelCol:ordersTable">
    Also, on the panel Splitter I removed the inline style width:100% height:100% with AFVisualRoot as the style class property. Its a minor cosmetic correction that had nothing to do with the behavior
    Again, thanks for your cooperation. I really apreciate good testcases
    Frank

Maybe you are looking for

  • ORA-06564: object "ED"."BIN$eEXhW2fZlgDgQAoKUVFSiw==$0" does not exist

    Oracle 11.0.1.7: When I run streams remove procedure I keep getting the following: ERROR at line 1: ORA-06564: object "ED"."BIN$eEXhW2fZlgDgQAoKUVFSiw==$0" does not exist ORA-06512: at "SYS.DBMS_LOGREP_UTIL", line 82 ORA-06512: at "SYS.DBMS_LOGREP_UT

  • Not prompted to set Administrator password at logon after Sysprep

    As far as I know, the following are facts regarding the Administrator password on Windows 2008 R2: - By default the Administrator account is enabled and the password is blank, but you are forced to set a password at first logon after Windows installa

  • FCP 7 regarding compression

    I'm relatively new to FCP 7... I have a question about this part...if you look at the bottom right section...there was a file that i had to compress in order to get vimeo video up... but it was done compressing...it came out "failed." I was still abl

  • Creative Media Explo

    Recently I have returned several Zen Microphotos to the company, in return for yet another broken one. However, I have recieved one that would work if I had the correct sotware for it. My very first MicroPhoto was registered with the software, and no

  • Show only Organizer and Hide Subject in Roomailbox

    Dear Team, I have created a room mailbox for conference room,all the users are able to see the organizer name and subject of the meeting,i have got request from HR department saying users should only see the organizer name but not the subject name of