Question about struts inside javascript variable

Hi, actually i'm using a struts + javascript to create HTML code that i use inside a popup window...
My (working) code is:
          idoc="";
          /* var cols = parent.document.getElementById('rowA').getElementsByTagName('THEAD')[0].getElementsByTagName('TH'); */
          var idoc='<html:form styleId="InsertNewItem" action="/nw/insertnewitem.do?target='+parent.newPop.action+'">';
          idoc+='<TABLE><TBODY>';
          var hiddenForm = getParentObj('hidden_data_form');
          var cols = hiddenForm.getElementsByTagName('INPUT');
          var test;
          test="cippa";
          for(k = 0; k < cols.length; k++) {     
               if(cols[k].id.substring(0,3) == "hh_")
                    idoc += "<TR><TD>";
                    idoc += cols[k].id.substring(3);
                    idoc += "</TD><TD>";
                    idoc += '<html:text property="'+cols[k].id+'" value=""/>';
                    idoc += "</TD></TR>";
          idoc+='</TBODY></TABLE>';
          idoc+='</html:form>';
          var towr = document.getElementById("subwin_body");
          towr.innerHTML = idoc;
The problem is when i try to add a <html:select> to the code, more precisely i added just before the end of the table these lines:
          idoc += "<TR><TD>Ditta:";
          idoc += "</TD><TD>";
          idoc += '<html:select property="ditta_id">';
          idoc += '<html:options collection="sel_ditta_list" labelProperty="label" property="value"/>';
          idoc += '</html:select>';
          idoc += "</TD></TR>";          
... but i cannot get it to work because struts seems to make some mistake with quotes and in javascript console window i get this error:
Error: unterminated string literal
File source: http://localhost:8180/nw/jsp/insertNewItemOperatore.jsp
Row: 121, Column: 10
Source Code:
idoc += '<option value="1">1</option>
(note the missing ending single-quote)
I can't understand why because with <html:text> field the same "trick" works fine... any ideas?
Thanks in advance
Luca
Message was edited by:
spallared

can you post all of your source code for the .jsp and then try running the page and once it fails do a View Source and then paste in all the generated code so that we can look at that as well.
i'm not totally positive but i have a pretty good feeling what is going wrong. the struts optionsCollection tag will render a bunch of <option> elements but print a newline after each one, which means you probably end up with something like
var whatever = '<option ...>.........<option>
<option ...>.........<option>
<option ...>.........<option>
<option ...>.........<option>';
correct? if so, that is not valid javascript.
Message was edited by:
den2681

Similar Messages

  • Question about NAT Inside Source, Inside Destination, and Outside Source

    I read the Cisco command references about "ip nat inside source", "inside destination", and "outside source", but couldn't have a clear understanding of how to associate the commands with "ip nat inside" and ip nat outside" configured for interfaces.
    Does "ip nat inside source ..." translation only happen on the interface configured as "ip nat inside"?
    Since NAT is a bidirectional action, what's the difference between "ip nat inside cource ..." and "ip nat inside destination ..."?
    I've never used "ip nat outside source ...". In what cases would it be needed?
    On an interface where there are NAT translation and also other actions such as policy map or IP Sec crypto map, would NAT happen before or after other actions?
    Thanks for help with any questions.
    Gary

    Hi Gary,
    The following documents may help you to understand some of the terminology:
    http://www.cisco.com/en/US/customer/tech/tk648/tk361/technologies_tech_note09186a0080094831.shtml
    http://www.cisco.com/en/US/customer/tech/tk648/tk361/technologies_tech_note09186a0080094837.shtml
    Also, the following document has a clear explanation of the order of operations when using NAT:
    http://www.cisco.com/en/US/customer/tech/tk648/tk361/technologies_tech_note09186a0080133ddd.shtml
    Hope that helps - pls rate the post if it does.
    Paresh

  • Question about expressions inside AE

    I don't even know what to search for on google to find the answer. So after an hour trial and error inside AE and failure in google search, I'm coming here to seek help.
    I have a plugin (RedGiant Sound Keys) that is giving values as keyframes for every frame. And the values go like: 0, 4, 7, 3, 5, 0, 0, 5, 6 ....
    In other words, they fluctuate between zero and, say, 10.
    I want another layer to get this value, but add it to itself every frame. I used to do QBasic programming and it was very simple there. Just something like x = x + (value from the Sound Key plugin)
    But I don't know how to do this in AE.
    Right now I have this:
    x = (thisComp.layer("sound").effect("Sound Keys")("Output 1") * 0.5);
    x;
    What I really want is:
    x = x + (thisComp.layer("sound").effect("Sound Keys")("Output 1") * 0.5);
    x;
    But it doesn't work.
    Can someone help me please?

    AE does not store persistent temporal variables. you have to accumulate them manually and write your own loops.
    Expression Speed and Frequency Control
    Soundkeys has an accumulate mode built-in, also, so rather than put up with complex expressions, simply use a duplicate instance of the effect and tweak the values.
    Mylenium

  • Question about struts-config.xml

    Hi,
    In the struts-config.xml,
    What is the difference about "redirect="true" and redirect="false" ?
    thanks,
    happybaobao

    Hello,
    redirect = truemeans that the ActionForward () statement in your execute method of the Action class will perform a response.sendRedirect. You can see that the URL is getting altered in the clients browser
    redirect = false means the vice-versa.
    I would recommend that you go through the Struts official site and see the DTD specifications in the URL
    http://struts.apache.org/dtds/struts-config_1_2.dtd
    for more details.
    Thanks and regards,
    Pazhanikanthan. P

  • Question about functions methods and variables

    Sorry but i couldn't figure out a better title.
    When does a method alter the variables it gets directly and when does a method just alter a clone of the variables it gets?
    How about a funcion?
    for example:
    public void (int i)
    i = 4;
    sometimes this method alters the integer which was given to it directly and sometimes it automatically creates a clone of the integer and alters that one. I just can't figure out why a method would do the first or the second.
    Im trying to achieve the direct changeing of the given variable without creating an unessecary clone.
    Thank You

    Comp-Freak wrote:
    Sorry but i couldn't figure out a better title.
    When does a method alter the variables it gets directly and when does a method just alter a clone of the variables it gets?
    How about a funcion?
    for example:
    public void (int i)
    i = 4;
    sometimes this method alters the integer which was given to it directly and sometimes it automatically creates a clone of the integer and alters that one. I just can't figure out why a method would do the first or the second.
    Im trying to achieve the direct changeing of the given variable without creating an unessecary clone.
    Thank YouThats quite all right about the title, trust me we get much worse titles on this forum. Most of the time to the effect of "Plz urgentlly!!!!111one"
    In Java, all variables passed into methods are passed by value, which means that if I pass an int variable to a method, that methods argument will always be a seperate variable. There is no way to pass variables by reference so that you are altering the original variable you passed in.
    It actually works the same way for reference variables that point to a particular object.
    public Object o = new Object();
    methodOne(o);
    public void methodOne(Object oArg) {
      o == oArg;  //true
    }It is essentially the same in this case, there are two seperate reference variables here, o and oArg is created once the method is called. There is only one Object created however and both reference variables point to it, so an == check will verify this that it is true.

  • Question about struts

    HI
    i just ask,
    if i want to connect struts using Mysql. apart from web.xml and struts-config.xml
    any other xml file i have to configure.
    pls any one can guide me.

    This is not the right forum to ask this question.
    Anyway if you use tomcat then you can provide the connection settings in the context.xml file under the META-INF directory of your application.
    For more information refer to
    http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html
    (Presuming you are using tomcat for deployment of your web-app)

  • Basic question about Struts

    Hello,
    I am going through the struts sample application (struts-example.war) and I am trying to understand the firtst global forward. Here it is:
        <forward   name="logoff"               path="/logoff.do"/>How does the application knows that "logoff.do" is mapped to the logon.jsp page?
    Can anyone answer this question please?
    Thanks in advance,
    Julien.

    Thanks for your reply ADCWorks,
    What I don't understand is that I have disabled the local forward for the logoff action (the struts-config.xml is included here). How does Struts know that the logoff.do is mapped to logon.jsp? I doubt it is hard-coded in the servlet...
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
              "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
              "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <!--
         This is the Struts configuration file for the example application,
         using the proposed new syntax.
    -->
    <struts-config>
    <!-- ========== Data Source Configuration =============================== -->
    <!--
    <data-sources>
       <data-source>
         <set-property property="autoCommit"
                          value="false"/>
         <set-property property="description"
                          value="Example Data Source Configuration"/>
         <set-property property="driverClass"
                          value="org.postgresql.Driver"/>
         <set-property property="maxCount"
                          value="4"/>
         <set-property property="minCount"
                          value="2"/>
         <set-property property="password"
                          value="mypassword"/>
         <set-property property="url"
                          value="jdbc:postgresql://localhost/mydatabase"/>
         <set-property property="user"
                          value="myusername"/>
       </data-source>
    </data-sources>
    -->
      <!-- ========== Form Bean Definitions =================================== -->
      <form-beans>
        <!-- Logon form bean -->
        <form-bean       name="logonForm"
                         type="org.apache.struts.validator.DynaValidatorForm">
          <form-property name="username" type="java.lang.String"/>
          <form-property name="password" type="java.lang.String"/>
        </form-bean>
        <!-- Registration form bean -->
        <form-bean      name="registrationForm"
                        type="org.apache.struts.webapp.example.RegistrationForm"/>
        <!-- Subscription form bean -->
        <form-bean      name="subscriptionForm"
                        type="org.apache.struts.webapp.example.SubscriptionForm"/>
      </form-beans>
      <!-- ========== Global Forward Definitions ============================== -->
      <global-forwards>
        <forward   name="logoff"               path="/logoff.do"/>
        <forward   name="logon"                path="/logon.jsp"/>
        <forward   name="registration"         path="/registration.jsp"/>
        <forward   name="success"              path="/mainMenu.jsp"/>
      </global-forwards>
      <!-- ========== Action Mapping Definitions ============================== -->
      <action-mappings>
        <!-- Edit user registration -->
        <action    path="/editRegistration"
                   type="org.apache.struts.webapp.example.EditRegistrationAction"
              attribute="registrationForm"
                  scope="request"
               validate="false">
          <forward name="success"              path="/registration.jsp"/>
        </action>
        <!-- Edit mail subscription -->
        <action    path="/editSubscription"
                   type="org.apache.struts.webapp.example.EditSubscriptionAction"
              attribute="subscriptionForm"
                  scope="request"
               validate="false">
          <forward name="failure"              path="/mainMenu.jsp"/>
          <forward name="success"              path="/subscription.jsp"/>
        </action>
        <!-- Process a user logoff -->
        <action    path="/logoff"
                   type="org.apache.struts.webapp.example.LogoffAction">
          <!--forward name="success"              path="/index.jsp"/-->
        </action>
        <!-- Process a user logon -->
        <action    path="/logon"
                   type="org.apache.struts.webapp.example.LogonAction"
                   name="logonForm"
                  scope="session"
                  input="logon">
          <exception
                    key="expired.password"
                   type="org.apache.struts.webapp.example.ExpiredPasswordException"
                   path="/changePassword.jsp"/>
        </action>
        <!-- Save user registration -->
        <action    path="/saveRegistration"
                   type="org.apache.struts.webapp.example.SaveRegistrationAction"
                   name="registrationForm"
                  scope="request"
                  input="registration"/>
        <!-- Save mail subscription -->
        <action    path="/saveSubscription"
                   type="org.apache.struts.webapp.example.SaveSubscriptionAction"
                   name="subscriptionForm"
                  scope="request"
                  input="subscription">
          <forward name="subscription"    path="/subscription.jsp"/>
          <forward name="success"         path="/editRegistration.do?action=Edit"/>
        </action>
        <!-- Display the "walking tour" documentation -->
        <action    path="/tour"
                forward="/tour.htm">
        </action>
      </action-mappings>
      <!-- ========== Controller Configuration ================================ -->
      <controller>
        <!-- The "input" parameter on "action" elements is the name of a
             local or global "forward" rather than a module-relative path -->
        <set-property property="inputForward" value="true"/>
      </controller>
      <!-- ========== Message Resources Definitions =========================== -->
      <message-resources
        parameter="org.apache.struts.webapp.example.ApplicationResources"/>
      <message-resources
        parameter="org.apache.struts.webapp.example.AlternateApplicationResources"
        key="alternate">
      </message-resources>
      <!-- ========== Plug Ins Configuration ================================== -->
      <plug-in className="org.apache.struts.plugins.ModuleConfigVerifier"/>
      <plug-in className="org.apache.struts.webapp.example.memory.MemoryDatabasePlugIn">
        <set-property property="pathname" value="/WEB-INF/database.xml"/>
      </plug-in>
      <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
        <set-property property="pathnames"
                         value="/WEB-INF/validator-rules.xml,
                                /WEB-INF/validation.xml"/>
      </plug-in>
    </struts-config>

  • Question about Struts and ActionForm

    Hi,
    I've a LoginForm class that extends ActionForm and the login.jsp page accepts 2 fields - "username" and "password" and there are corresponding setters and getters in LoginForm.java. As part of moving this to container managed security (using login modules), I want to change the field names to j_username and j_security. I made the change to the login.jsp page and also to the getters and setters (made them getJ_username, getJ_password) but I keep getting the "getter is not defined" struts related error. any thoughts?

    You would need to follow naming convention. It should be
    userName,
    I never tried with underscore, try j_userName (caps N). I don't think it will work.

  • Question about Struts and ActionForward

    Hi all.
    I'm having a problem regarding the use of DataAction and DataPage
    Imagine this scenario:
    1 - I have a simple web application. Its context root is http://host:port/. This web application has one jsp page called page1.jsp.
    2 - On struts configuration, I drop a DataAction called action1 and a DataPage called page1, wich holds page1.jsp, into the diagram, and link the DataAction to the DataPage using a Forward.
    3 - I start the application by clicking on the DataAction action1.
    4 - The application shows page1.jsp in the browser, because of the forward component that links de DataAction to the DataPage, but on the address bar of the browser the url is: http://host:port/action1.do. Here is the problem. I expected that I should see http://host:port/page1.do.
    5 - Because of this problem, if I refresh the page using the browser, the DataAction is executed again, but it can't. I thought the forward mechanism between a DataAction and a DataPage would cause some kind of url redirection to the browser.
    I'm using Internet Explorer to do these tests.
    Do you guys know how can I solve this problem?

    Hi fred... thanks for your post....
    Well, I'm in trouble then......
    I know that JHeadStart has the capability to detect if user have used the back or forward buttons from the browser......... If I could detect when the refresh command is used, it would solve the problem.
    I'm used to create DataAction to call some common methods from the ApplicationModule, so I can centralize code by providing different forwards to many DataPages.
    Does anyone have a best practice on how to use DataActions in conjunction with DataPages?
    Regards.

  • Question about size of ints in Xcode

    Hello. I have a a few quick questions about declaring and defining variables and about their size and so forth. The book I'm reading at the moment, "Learn C on the Mac", says the following in reference to the difference between declaring and defining a variable:
    A variable declaration is any statement that specifies a variables name and type. The line *int myInt;* certainly does that. A variable definition is a declaration that causes memory to be allocated for the variable. Since the previous statement does cause memory to be allocated for myInt, it does qualify as a definition.
    I always thought a definition of a variable was a statement that assigned a value to a variable. If a basic declaration like "int myInt;" does allocate memory for the variable and therefore is a definition, can anyone give me an example of a declaration that does not allocate memory for the variable and therefore is not a definition?
    The book goes on, a page or so late, to say this:
    Since myInt was declared to be of type int, and since Xcode is currently set to use 4-byte ints, 4 bytes of memory were reserved for myInt. Since we haven't placed a value in those 4 bytes yet, they could contain any value at all. Some compilers place a value of 0 in a newly allocated variable, but others do not. The key is not to depend on a variable being preset to some specific value. If you want a variable to contain a specific value, assign the value to the variable yourself.
    First, I know that an int can be different sizes (either 4 bytes or 8 bytes, I think), but what does this depend on? I thought it depended on the compiler, but the above quote makes it sound like it depends on the IDE, Xcode. Which is it?
    Second, it said that Xcode is currently set to use 4-byte ints. Does this mean that there is a setting that the user can change to make ints a different size (like 8 bytes), or does it mean that the creators of Xcode currently have it set to use 4-byte ints?
    Third, for the part about some compilers giving a newly allocated variable a value of 0, does this apply to Xcode or any of its compilers? I assume not, but I wanted to check.
    Thanks for all the help, and have a great weekend!

    Tron55555 wrote:
    I always thought a definition of a variable was a statement that assigned a value to a variable. If a basic declaration like "int myInt;" does allocate memory for the variable and therefore is a definition, can anyone give me an example of a declaration that does not allocate memory for the variable and therefore is not a definition?
    I always like to think of a "declaration" to be something that makes no changes to the actual code, but just provides visibility so that compilation and/or linking will succeed. The "definition" allocates space.
    You can declare a function to establish it in the namespace for the compiler to find but the linker needs an actual definition somewhere to link against. With a variable, you could also declare a variable as "extern int myvar;". The actual definition "int myvar;" would be somewhere else.
    According to that book, both "extern int myvar;" and "int myvar;" are declarations, but only the latter is a definition. That is a valid way to look at it. Both statements 'delcare' something to the compiler, but on the second one 'define's some actual data.
    First, I know that an int can be different sizes (either 4 bytes or 8 bytes, I think), but what does this depend on? I thought it depended on the compiler, but the above quote makes it sound like it depends on the IDE, Xcode. Which is it?
    An "int" is supposed to be a processor's "native" size and the most efficient data type to use. A compiler may or may not be able to change that, depending on the target and the compiler. If a compiler supports that option and Xcode supports that compiler and that option, then Xcode can control it, via the compiler.
    Second, it said that Xcode is currently set to use 4-byte ints. Does this mean that there is a setting that the user can change to make ints a different size (like 8 bytes), or does it mean that the creators of Xcode currently have it set to use 4-byte ints?
    I think that "setting" is just not specifying any option to explicitly set the size. You can use "-m32" or "-m64" to control this, but I wouldn't recommend it. Let Xcode handle those low-level details.
    Third, for the part about some compilers giving a newly allocated variable a value of 0, does this apply to Xcode or any of its compilers? I assume not, but I wanted to check.
    I don't know for sure. Why would you ask? Are you thinking of including 45 lines of macro declarations 3 levels deep to initialize values based on whether or not a particular compiler/target supports automatic initialization? Xcode current supports GCC 3.3, GCC 4.0, GCC 4.2, LLVM GCC, CLang, and Intel's compiler for building PPC, i386, and x86_64 code in both debug and release, with a large number of optimization options. It doesn't matter what compiler you use or what it's behavior is - initialize your variables in C.

  • Question about variable declaration

    Hi all,
    I have a (in fact, two) question(s) about the declaration of variables inside of time-critical code, like render loops or similars.
    Does it really matter to use
    for (int k=0; k<1000; k++)
         for (int l=0; l<1000; l++)instead of
    int k;
    int l;
    for (k=0; k<1000; k++)
         for (l=0; l<1000; l++)concerning the speed of the app? What about doing this with non-basic types -> Objects, like to say Strings ?
    And are there any resources where I can find out more about that and other things like that ?
    Uhm, now it became three q's... Sorry to bother you ;-)
    Skippy

    whoo, maybe I got something totally wrong here.
    Does this mean that
    Image blah;
    for (int i=0; i<100; i++) blah = getImage("test"+i+".gif");will clean up a lot, because there are non-referenced Images and Strings?
    Hmm, anyone told me that
    for (int i = 0; i<100; i++)
    String test = "test"+i;
    System.out.println(test);
    }is disastrous code.
    Damn, ever thought to be a good Java programmer, but every day I get new thoughts I cannot solve these days...
    grmph
    Skippy

  • Passing struts-tag value to java / javascript variable in JSP

    Hello all,
    Im trying to pass the value got from the struts-tag to the java variable in the Jsp. However Im not able to get the o/p. Can u guys help me on this pls...
    <logic:notEmpty name="TreeBean" property="list">
        <logic:iterate id="Type" name="TreeBean" property="list" indexId="i">
         <br/><bean:write name="Type" />
        </logic:iterate>
    </logic:notEmpty>Here the list can be populated in the jsp page. However i want the values into jsp list. Im not able to populate the same..
    <% List jspList = null;
    %> I want the values into the jspList variable for further processing. Can u guz pls help me on this....

    Which do you want it in?
    A java variable for use in <% scriptlet code %> or a javascript variable for use on the client end?
    scriptlet:
    <jsp:useBean id="TreeBean" type="java.util.List" class="java.util.ArrayList" scope="?????" />
    Having scriptlet code on the page is considered bad coding style.
    What is it you are trying to accomplish by making the value accessible?
    What are you trying to do in java / javascript that can't be done with JSP tags?

  • Hi, I have quick question about use of USEBEAN tag in SP2. When I specify a scope of SESSION for the java bean, it does not keep the values that I set for variable in the bean persistent.Thanks,Sonny

     

    Make sure that your bean is implementing the serializable interface and that
    you are accessing the bean from the session with the same name.
    Bryan
    "Sandeep Suri" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I have quick question about use of USEBEAN tag in SP2. When I
    specify a scope of SESSION for the java bean, it does not keep the
    values that I set for variable in the bean persistent.Thanks,Sonny
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Question about session variables and binding

    Hi All,
    I'm a newbie with Application Express. I've gone through several tutorials and a book, and now I'm actually getting started with apex. My first adventure is a tiny little form, where all you do is fill it out and it sends an email. Pretty simple.
    And, i have it working just fine - but I have a question about something I don't quite understand. Basically, I am generating the email text in a page process. And some of the form fields work fine if i reference them as *:ACCT_NAME*, but some give me the dreaded "not all variables bound" error. For the ones that give me the error, I can reference them like V('ACCT_NAME').
    So, as a newbie, I'm a little confused. When is it appropriate to use the V function, and when it is appropriate to use binding? Why would one of the fields work with binding but not another from the same form?
    Thanks for any clarification you can offer,
    Lisa

    Lisa,
    A bind variable is a place holder variable available in an environment.It is used quite frequently(outside Apex Context) in SQL and PLSQL scripts and especially in Dynamic SQL statements.Many times using a bind variable gives better performance. In the Apex environment,page items and many other variables related to the session are available as bind variables and hence their value can be referred in SQL,PLSQL contexts as :VARIABLE_NAME.
    Now V() function is an apex specific function which returns the value of an apex session variable outside the apex environment. So as Machaan pointed out, it is used in
    procedures and triggers that gets called from within an apex session. This is required since the bind variables themselves are not directly available in the SQL environment but their values from the corresponding session can be accessed by this apex built-in function.
    The length of any Bind variable name is limited to 30 characters, this is a limitation inherited from Oracle SQL itself and hence session variables(page or application items) whose name has a length which exceeds 30 characters cannot be used as the :ITEM_NAME format. In such cases you would have to use the v() method again. This might be happening in your case.

  • Question about Local Variables (Multiple answers welcomed!)

    A couple of questions about Local Variables
    1. Programmers always say: “Do not abuse of Local Variables”. I’d like to know, when and where Local variable are most efficiently used?
    2. If I have to create a couple of local variables, is there anyway to “clone” them without going through the repetitive “create/local variables” mouse click each time? (When I try to copy and paste, it creates a new variables instead of the one that I am trying to reproduce)
    3. Which is faster in execution: Updating a variable through a) writing to property node/value or b) through local variable
    Everyone’s input is welcomed, so if this question is already answered, please
    feel free to add additional comments/answers!

    1. Use Local Variables in user interface code and no where else. The only exception is using a local variable of a cluster output to define the datatype for a bundle by name node.
    2. You can drag copy them then right click to get to a menu of all the currently defined controls and indicators on the VI.
    3. B. The problem with A is that it forces a thread switch to the user interface thread--which can take time if you aren't already in it, and it's a very convoluted process under the hood. NI's advice never update indicator values through a property node unless you absolutely, positively can't figure out some other way of doing it.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Maybe you are looking for

  • Camera raw images change colour in adobe bridge

    I have photoshop CS4 and import my camera raw images into Adobe Bridge.  When I view the thumbnails in bridge my raw images look vibrant and exactly like they appear on the camera but when I go to open them in camera raw edit they change colour and l

  • ITunes LP not working

    So yesterday, I bought the deadmau5's 4x4=12 deluxe version, it comes with an iTunes LP, everything seems to be fine, I mean, the files, everything downloaded correctly, but when I try to play the LP the screen just stays black, and nothing happens.

  • How to get Sales rep information for each customer

    Hi For each record in ra_customers, I want to find associated Sales rep for each customer. Can some one please tell me what table stores this information? Thanks Aali

  • Web Elements 2.4 - Encoding Values

    I am using web elements 2.4 on XIR2. I have some cascading dropdown boxes populated with dynamic values from a subreport. This all works fine. However, some of the data has ampersand's in it such as 'B&P Level' Looking at the opendocument URL that th

  • Hi, I  have Adobe CS6 Illkistrator and need to upgare to latest version...

    Hi, I  have Adobe CS6 Illistrator and need to upgrade to latest version... I've downloaded 16.0.3 _X64  but fails (update Adobe app  manager) I've Downloaded  ApplicationManager8.0_all.exe  which took me to a cloud login. WTF all I  want is the lates