Myfaces Styles problem in panelNavigation

Hi, I am using <x:panelNavigation id="nav"
styleClass="navigation"
itemClass="navitem" activeItemClass="navitemdd"
separatorClass="navseparator" ....
and I use <x:stylesheet path="/css/basic.css"/> to specificate the path to style file.
This works for jscookmenu but I am trying to change the styles for x:panelNavigation and I coudn't.
Any ideas??
Thanks.

hi Ceci, for panel navigation you have different attributes to put to set the styleclass, the attributes are: separatorClass="" separatorStyle="" style="" styleClass="".
Try them to check is you could put the style where you want. Also you could use <link> for the stylesheet, sometimes x:stylesheet doesnt work fine for every component (however, is right to put x:stylesheet)..
hope it helps..

Similar Messages

  • Document style Problem

    We have three issues when trying to implement a document-style service. I will
    document them all but I'd suggest you go through them all before attempting to
    answer any of them.
    We are trying to implement a service that has the following signature:
    public void echoDom(Document doc)
    We want the delivery of our message to be of style ("document"). Therefore, we
    modified our servicegen entry to include the style="document" under the service.
    It looks like the following:
    <servicegen
    destEar="${appDir}/dom.ear"
    warName="dom.war">
    <service
    javaClassComponents="examples.dom.EchoDom"
    targetNamespace="http://examples.org"
    serviceName="dom"
    serviceURI="/EchoDomService"
         generateTypes="True"
    expandMethods="True"
    style="document">
    <client
    packageName="examples.dom"
    clientJarName="client.jar"
    />
    </service>
    <classpath>
    <pathelement path="${temp_dir}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    1. FIRST PROBLEM:
    The first problem we're having is that it does not compile with the combination
    of our signature being of type void (as shown above) and the style="document"
    in build.xml.
    The error is the following:
    [servicegen] Generating service "dom" ...
    [servicegen] Generating XML types and serializers from java classes (examples.do
    m.EchoDom) ...
    [servicegen] weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[  void:
    null ]
    [servicegen] at weblogic.utils.Debug.assertion(Debug.java:84)
    [servicegen] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile
    (Compiler.java:111)
    [servicegen] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:88)
    [servicegen] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.a
    ddMapping(TypeMappingBuilderBase.java:183)
    [servicegen] at weblogic.ant.taskdefs.webservices.autotype.ComponentAutoTyper
    .mapComponent(ComponentAutoTyper.java:155)
    [servicegen] at weblogic.ant.taskdefs.webservices.autotype.JavaAutoTyper.run(
    JavaAutoTyper.java:80)
    [servicegen] at weblogic.ant.taskdefs.webservices.autotype.AutoTypeTask.execu
    te(AutoTypeTask.java:353)
    [servicegen] at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.g
    enerateService(ServiceGenTask.java:251)
    [servicegen] at weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.e
    xecute(ServiceGenTask.java:146)
    [servicegen] at org.apache.tools.ant.Task.perform(Task.java:217)
    [servicegen] at org.apache.tools.ant.Target.execute(Target.java:164)
    [servicegen] at org.apache.tools.ant.Target.performTasks(Target.java:182)
    [servicegen] at org.apache.tools.ant.Project.executeTarget(Project.java:601)
    [servicegen] at org.apache.tools.ant.Project.executeTargets(Project.java:560)
    [servicegen] at org.apache.tools.ant.Main.runBuild(Main.java:454)
    [servicegen] at org.apache.tools.ant.Main.start(Main.java:153)
    [servicegen] at org.apache.tools.ant.Main.main(Main.java:176)
    2. SECOND PROBLEM
    If we change the signature to become:
    public Document echoDom(Document doc)
    then the build works but when we try to test our service, it gives us the following:
    [java] java.rmi.RemoteException: web service invoke failed; nested exceptio
    n is:
    [java] javax.xml.soap.SOAPException: failed to serialize xml:weblogic.
    xml.schema.binding.SerializationException: type mapping lookup failure on class=
    class weblogic.apache.xerces.dom.DocumentImpl TypeMapping=TYPEMAPPING SIZE=6
    [java] ENTRY 1:
    [java] class: org.w3c.dom.Document
    [java] xsd_type: ['http://examples.org']:p3:echoDom
    [java] ser: weblogic.xml.schema.binding.internal.builtin.DocumentCode
    c@5973ea
    [java] deser: weblogic.xml.schema.binding.internal.builtin.DocumentCode
    c@49131c
    [java] ENTRY 2:
    [java] class: java.lang.Object
    [java] xsd_type: ['http://examples.org']:p1:echoDomResponse
    [java] ser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@
    5b99f
    [java] deser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@
    3. THIRD PROBLEM:
    Now, when we revert back to style="rpc" and everything works fine and dandy (although
    not as we want it because, as I mentioned above, we want a void signature and
    a document style), we get the following added tag around our body content, which
    we did not add ourselves, nor are we sure yet why it shows up:
    We pass it the following argument:
    <those dummy="hi">
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </those>
    We get the following (notice the <document> tag around it):
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Body>
    <m:echoDom xmlns:m="http://examples.org"
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <document>
    <those dummy="hi">
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </those>
    </document>
    </m:echoDom>
    </env:Body>
    </env:Envelope>
    4. PROBLEM FOUR (just remembered this one):
    If we use the standard test page (provided with WLS), with (3) above, it chops
    off the "those" and it still wraps it within this new <document> element as show
    below:
    <!--REQUEST.................-->
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Header>
    </env:Header>
    <env:Body>
    <m:echoDom xmlns:m="http://examples.org"
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <document>
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </document>
    </m:echoDom>
    </env:Body>
    </env:Envelope>
    We're not so worried about the fourth because it seems like a bug but the first
    three (especially the first) are most important. Any ideas would be appreciated.
    Thanks
    sami

    Ok I tried it out, DOM with document style web
    service is not working in WLS 7.0.2. I filed
    CR104719. Please contact support with this case
    number to get a patch.
    Sorry for the trouble.
    http://manojc.com
    "sami titi" <[email protected]> wrote in message
    news:[email protected]...
    >
    We're using WLS7 SP2, patch: CR102544_70sp2_v2.jar
    thanks
    "manoj cheenath" <[email protected]> wrote:
    Quick question, before i try this out.
    Which version of WLS? SP?
    http://manojc.com
    "sami titi" <[email protected]> wrote in message
    news:[email protected]...
    We have three issues when trying to implement a document-style service.I
    will
    document them all but I'd suggest you go through them all beforeattempting to
    answer any of them.
    We are trying to implement a service that has the following signature:
    public void echoDom(Document doc)
    We want the delivery of our message to be of style ("document").Therefore, we
    modified our servicegen entry to include the style="document" underthe
    service.
    It looks like the following:
    <servicegen
    destEar="${appDir}/dom.ear"
    warName="dom.war">
    <service
    javaClassComponents="examples.dom.EchoDom"
    targetNamespace="http://examples.org"
    serviceName="dom"
    serviceURI="/EchoDomService"
    generateTypes="True"
    expandMethods="True"
    style="document">
    <client
    packageName="examples.dom"
    clientJarName="client.jar"
    />
    </service>
    <classpath>
    <pathelement path="${temp_dir}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    1. FIRST PROBLEM:
    The first problem we're having is that it does not compile with thecombination
    of our signature being of type void (as shown above) and thestyle="document"
    in build.xml.
    The error is the following:
    [servicegen] Generating service "dom" ...
    [servicegen] Generating XML types and serializers from java classes(examples.do
    m.EchoDom) ...
    [servicegen] weblogic.utils.AssertionError: ***** ASSERTION FAILED*****[  void:
    null ]
    [servicegen] at weblogic.utils.Debug.assertion(Debug.java:84)
    [servicegen] atweblogic.xml.schema.binding.internal.codegen.Compiler.compile
    (Compiler.java:111)
    [servicegen] atweblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:88)
    [servicegen] atweblogic.xml.schema.binding.internal.TypeMappingBuilderBase.a
    ddMapping(TypeMappingBuilderBase.java:183)
    [servicegen] atweblogic.ant.taskdefs.webservices.autotype.ComponentAutoTyper
    mapComponent(ComponentAutoTyper.java:155)
    [servicegen] atweblogic.ant.taskdefs.webservices.autotype.JavaAutoTyper.run(
    JavaAutoTyper.java:80)
    [servicegen] atweblogic.ant.taskdefs.webservices.autotype.AutoTypeTask.execu
    te(AutoTypeTask.java:353)
    [servicegen] atweblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.g
    enerateService(ServiceGenTask.java:251)
    [servicegen] atweblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask.e
    xecute(ServiceGenTask.java:146)
    [servicegen] at org.apache.tools.ant.Task.perform(Task.java:217)
    [servicegen] at org.apache.tools.ant.Target.execute(Target.java:164)
    [servicegen] atorg.apache.tools.ant.Target.performTasks(Target.java:182)
    [servicegen] atorg.apache.tools.ant.Project.executeTarget(Project.java:601)
    [servicegen] atorg.apache.tools.ant.Project.executeTargets(Project.java:560)
    [servicegen] at org.apache.tools.ant.Main.runBuild(Main.java:454)
    [servicegen] at org.apache.tools.ant.Main.start(Main.java:153)
    [servicegen] at org.apache.tools.ant.Main.main(Main.java:176)
    2. SECOND PROBLEM
    If we change the signature to become:
    public Document echoDom(Document doc)
    then the build works but when we try to test our service, it givesus the
    following:
    [java] java.rmi.RemoteException: web service invoke failed; nestedexceptio
    n is:
    [java] javax.xml.soap.SOAPException: failed to serializexml:weblogic.
    xml.schema.binding.SerializationException: type mapping lookup failureon
    class=
    class weblogic.apache.xerces.dom.DocumentImpl TypeMapping=TYPEMAPPINGSIZE=6
    [java] ENTRY 1:
    [java] class: org.w3c.dom.Document
    [java] xsd_type: ['http://examples.org']:p3:echoDom
    [java] ser:weblogic.xml.schema.binding.internal.builtin.DocumentCode
    c@5973ea
    [java] deser:weblogic.xml.schema.binding.internal.builtin.DocumentCode
    c@49131c
    [java] ENTRY 2:
    [java] class: java.lang.Object
    [java] xsd_type: ['http://examples.org']:p1:echoDomResponse
    [java] ser:weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@
    5b99f
    [java] deser:weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@
    3. THIRD PROBLEM:
    Now, when we revert back to style="rpc" and everything works fine anddandy (although
    not as we want it because, as I mentioned above, we want a void
    signature
    and
    a document style), we get the following added tag around our body
    content,
    which
    we did not add ourselves, nor are we sure yet why it shows up:
    We pass it the following argument:
    <those dummy="hi">
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </those>
    We get the following (notice the <document> tag around it):
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Body>
    <m:echoDom xmlns:m="http://examples.org"
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <document>
    <those dummy="hi">
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </those>
    </document>
    </m:echoDom>
    </env:Body>
    </env:Envelope>
    4. PROBLEM FOUR (just remembered this one):
    If we use the standard test page (provided with WLS), with (3) above,it
    chops
    off the "those" and it still wraps it within this new <document>
    element
    as show
    below:
    <!--REQUEST.................-->
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Header>
    </env:Header>
    <env:Body>
    <m:echoDom xmlns:m="http://examples.org"
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <document>
    <this xmlns="mynamespace">
    <f:that xmlns:f="yournamespace">
    <or> a lot of random < </or>
    <f:the>
    </f:the>
    <f:other> foo bar blaz</f:other>
    </f:that>
    </this>
    </document>
    </m:echoDom>
    </env:Body>
    </env:Envelope>
    We're not so worried about the fourth because it seems like a bug butthe
    first
    three (especially the first) are most important. Any ideas would beappreciated.
    Thanks
    sami

  • Paragraph Style Problem

    I have the weirdest problem that I cannot yet understand. I have a 76-page book that has at TOC plus 10 chapters. The book was created last year in ID CS3, and everything worked fine. I have updated it into CS4, and everything appeared to be working normally until I discovered this problem. My master chapter for synchronizing is Chapter 2 in the book panel. All fonts are loaded and present.
    In the last chapter (Ch. 10), the paragraph styles don't work. They not only don't work, they change the text to something totally weird. For example, if I set a block of type in Times New Roman and pick, say, the #1 Head style, which is Hypatia Sans Pro Bold, it converts it to a completely different font or it chooses a font I'm not even using. If I set the type in another chapter and cut and paste it to Chapter 10, it pastes fine. If I try to restyle it, it goes weird on me.
    I have looked extensively at the styles, and they are all correct and the same as all the other chapters. However, when I try to apply them, a different change results. I have checked the Basic Paragraph Style; however, none of my styles are based on that because I checked that also.
    Keep in mind that the paragraph styles worked properly last year and are working properly in every other chapter. Synchronizing does not help.
    This may be a bug of some sort or it may be something I've overlooked. But I haven't made any huge structural changes to the chapter other than to add a couple of pages. I've tried restarting the program and the computer. The only thing I have not tried is to completely remake the chapter, which, of course, I don't really want to do.
    I'm just throwing this out there. I'm not sure there is an easy answer. Let me know what you think.

    Try moving the pages to a new file. That's not going to be as effective, probably, as copying all the elements into a new file, but it's faster.
    Also, make a new book with just the problem chapter and the source chapter and synch again, see if it works.
    Peter

  • [CS3 JS]  Exchange Character Style Problem!

    Hello experienced JS people,
    The situation is as follows -
    I have a document that MAY have the Character Style 'A'.
    If this were to be true - then I'd like to exchange it for Character Style 'B'.
    Sounds simple doesn't it.... It's KILLING ME!
    This must be possible? The problem is - I don't know how!
    My scripting lookes like this so far:
    > app.findTextPreferences.appliedCharacterStyle = "File name";
    app.changeTextPreferences.appliedCharacterStyle = "Document No";
    oneDoc.changeText();
    Help would be greatly welcomed....
    Thanks in advance,
    Lee

    I think the problem is in the word "MAY".
    You need to have a test for existence:
    var styletofind = app.activeDocument.characterStyles.item("File name");
    if (styletofind != null) {
      var styletochange = app.activeDocument.characterStyles.item("Document No");
      app.findTextPreferences.appliedCharacterStyle = styletofind;
      app.changeTextPreferences.appliedCharacterStyle = styletochange;
      oneDoc.changeText();
    But even this might not be enough if the character styles in question are in groups.
    Dave

  • Layout  and style problem

    HI
    I am building a new dashboard using one of the templates given in the program. Two things that are bugging and giving problems are with the styling in the spreadsheet. I formatted targeted cells in the spread sheet to use certain colors and font alignment in the cell's , but when i update the spread sheet in the dashboard, it does pull over the right cells with all the macro's but doesnt pull over the right styling. The text color is some thing else and it doesnt want to use the text alignment in the cells. I have to use certain colors because of the branding of the company. Please help
    Thanks

    HI
    The macros in my excel work sheet call information from my excel data sheet. These two sheets then give style and data information through to the dashboard for the spread sheets used to display some cell information. Must i change the targeted cells color through script or enforce the style with script ? Cause i used the standard excel cell properties to do the formatting and have never had any problems with it not styling the dashboard right in the past. Can it be that my macros on the cells cause the cell style information not to be given to the dashboard?
    Thanks

  • Smartform style  problem

    Hello friends,
         I am getting problem in smartforms style. i had created my own style for one of my Tax invoice form because i want fonts in smaller and for heading i want to increase font size. But when i am applying my own style to paragraph the changes are not accepted after SAVE & ACTIVATION. If any one know solution for this problem than please give reply as soon as possible.
    Thanx & Regards,
    Rahul Talele

    Hi,
    Once I came across the problem as yours.
    This happens becoz certain properties of the fonts when applied will override other formats.
    For eg. If u have chosen bold character format before, but when u want to change it to normal it will not change at all.
    In that case, I have deleted the text as a whole and applied normal format at first. Then I applied bold character format
    whereever applicable.
    Which style u applied to the header in your form? Is it Paragraph format or Character Format.
    Could u give more clear description?
    Regards
    Vadi

  • InDesign style problems on TOC

    I'm having problems with my paragraph styles.  I'm working on a large document with imported text.  About half way through, all of a sudden I couldn't get my styles to work correctly.  For example, I'd select body copy and instead it would format as a header.  I checked the styles and they were correct.  I read in a thread to try using alt+shift when selecting the style and that worked.  But now I'm trying to generate the TOC and I'm having the same problem.  Nothing works.  Plus the styling it is applying is inconsistent even with the same style selected.

    I think that you should try to post some screenshots; what you're describing makes no sense. If all TOC entries
    1) are marked with the same para style;
    2) have no character styles applied; and,
    3) have no overrides
    then they should look identical to one another.
    So, if you post a screenshot of your TOC with the Paragraph Style palette visible, and you can verify that your Character Styles palette is completely empty, then we might be able to diagnose your problem.
    The techniques I use to make sure that my styles have no overrides:
    a) I have "Clear Overrides" mapped to control-shift-numlock enter. So, I can select text and whack that key combo, and know that it is free of para style overrides.
    b) Then I can put my insertion point at the beginning of the first text box, and use control-shift-downarrow to select whole paragraphs at a time. When I do so, I can watch the para styles palette to see if the "+" appears indicating that I still have an override in that paragraph.
    c) I use styles in my TOC that have names that are similar to to the actual subheaders in the body text. So, "Semibold Subhead" gets added to the TOC, and is styled with "Semibold Subhead TOC" like so:

  • CS5 - Grep style problems

    Where I work the treatment of the type is to reduce the size of all-caps, a string of numbers, or a combination of the two. For years they've been doing it by setting up a Character Style for each Paragraph Style (e.g., "Body smaller" for "Body), and then also alternate Character Styles if the text already has a Character Style applied to it ("Body Red Italic smaller" for "Body Red Italic"). You can imagine this quickly becomes a lot of styles.
    So I thought with CS5 Grep styles I could set this up in the Paragraph Styles. I want the Grep style to apply a Character Style that is nothing but a Horizontal and Vertical scale of 95%.
    The types of things I'm wanting Grep to find are below. But I'm only wanting to apply the style to the letters and numbers and not the punctuation.
    AAA
    B23
    33,333
    4,444,444
    U.S.A.
    (ABC-1)
    I went at writing this a piece at time, so it is not very elegant. Here's what I have:
    \d{2,}|\u{2,}|\u+\d+|\d+\u+|\d+[[:punct:]]\d+|\u+[[:punct:]]\u+|\u+[[:punct:]]\d+|\d+[[:pu nct:]]\u+
    This does a pretty good job, with a couple of problems.
    1) It is "catching" (applying the character style) to the first punctuation if there is a single character before it (e.g. the first piece of punctuation in 4,444,444 and U.S.A.)
    2) It is not always "catching" instances where there are more than three sets of numbers/caps in an item (e.g. U.S.A., it doesn't style the "A"). I know Grep is probably just doing what I'm telling it to do, but I can't see how to fix it.
    I would appreciate any help anyone could give me.
    Thanks.
    Tom

    You can't do all this in one GREP style. The one you came up with is already difficult to read, so you can imagine what happens to its readability by the time you get it to work. Apart from that I don't think it's possible to do what you want in one expression.
    So you really need to split up your task into several chunks, all of which you can then add to the same paragraph style. Your expressions may be more efficient, but they're much eaier to understand and maintain. Here goes.
    The easy ones are AAA, B23, and (ABC-1), all of which are captured by this expression:
    \(?\u[-\u\d]+\)?
    U.S.A. is more tricky, and it needs to be split in two itself. The first part captures series capital+period, but not the last one:
    \u(?=\.\u)
    Capturing the last capital+period is interesting in that it requires a negative lookahead embedded in a positive lookahead, which I wouldn't have thought was possible, but it works:
    (?<=\.)\u(?=\.(?!\u))
    For the numbers you's do something similar.
    Peter

  • Map tags to style problem.

    Hello!
    I have a problem with indesign that i cannot understand. On the picture below, you can see my structure. PARAGRAPH is the tag of the text frame. Inside the text frame i have tagged the text. The things that should be paragraph style 1 (bröd) is tagged "PARAGRAPH1". The things that should be  paragraph style 2 (bröd_start) is tagged "PARAGRAPH2".
    I use map tags to style to map the different tags to a specific style. It looks like this:
    When I run the cursor over the text I can see the tags changing to the correct one in the tags panel. But the paragraph style is always "Bröd". It seems as if the tags to style is not applied!
    The reason that I want to to this is so I can manage first lines better. I map the first word of a "new" line to "Bröd_Start" so that the first line is aligned flush left. Like this:
    Anyone has any ideas why this is not working like it should?!
    Tank you!
    Regards,
    Lukas

    Hi,
    Thanks for sharing the document. I tried with your file and scrolling is working fine. I could choose and select the styles also.
    Did the bug happen after importing XML or before as well?
    Do you have other documents open while you are working on this document?
    Did you try cleaning your preferences and cache? If not, you can give this a try and let me know if the problem still remains.
    Regards,
    Pooja

  • Graphic style problem

    Copying an element  which has a graphic style applied  now breaks apart the style into individual elements if the style is applyed to text, the text is outlined too. This never use to happen. Have tryed changing the  paste board settting  but this changes nothing.
    Has anyone come across this and do you have a remedy

    Adobe CS6 16.2.1
    Any style including the ones i have create myself  any font which has a graphic style applied   This is a new problem to me,  never experienced it before   This  has be a persitant problem for a month or two  i have just worked arround it   but have found it irritating enough to ask the question.
    Working on a mac pro  in lion 10.7.5
    the Problem occurs once the  element with a style  has been copied if i paste (in the same doc or a new document ) what ever the element is broken appart  retains its look  but is nolonger a grahic style.  I can drag copy or duplicate  an element  with no problem.
    Hence the the experimenting with the paste board settings

  • Report - Style Problem

    Hello Guys,
    First of all, am in the process of learning cold-fusion coding.
    I have a doubt in reporting part of coldfusion code.
    I need to make a report style such as below
    A
    B
    C
    Pass
    x
    B
    x
    Fail
    A
    x
    C
    Pass
    A
    x
    x
    Pass
    Presently am able to get display data table like below:
    A
    B
    C
    Pass
    B
    Fail
    A
    C
    Pass
    A
    Pass
    here A,B,C are feed group;
    My coding specific to looping is below:
    <cfoutput query="PromotionInfo" group= RID> <tr>
    <cfoutput group="feed_group">
                   <cfif IsSimpleValue(Feed_Group) >
                              <td  nowrap><a href="#PromotionInfo.Report#" target="_blank">#PromotionInfo.feed_group#</a></td>
                        <cfelse>
                              <td><strong>N/A</strong></td>
                    </cfif>    
      </cfoutput>
    I tried for looping, still no sucess so far..
    Note: Problem here in looping is When I tried cfif/Cfloop condition's for every column-wise data,
    cfoutput for  PromotionInfo.feed_group gives ABC (joined values) not separately ie. for each cycle of loop the data queried are shown in one single row. Am not able to split it since they are not having any delimiters.
    Am not sure I gave the right picture of my problem, still expecting someone can help me..
    Thanks
    Keeran

    hi,
    i've tried to correct your code:
    -> v_year, v_low and v_high was not filled
    ...SELECTION-SCREEN : END OF BLOCK b_fa.
    PARAMETERS p_year LIKE anlc-gjahr DEFAULT sy-datum(4).
    *PARAMETERS : budat LIKE anek-budat.
    SET PF-STATUS '100'.
    v_year = p_year.
    v_year = v_year - 1.
    CONCATENATE v_year '0401' INTO v_low.
    CLEAR v_year.
    v_year = p_year.
    CONCATENATE v_year '0331' INTO v_high.
    SELECT bukrs anln1 anln2 aktiv txt50 zugdt menge meins anlkl
    FROM anla
    pls reward useful answers
    thx.
    Andreas

  • CSS Style Problem in some browsers

    I’m Using Dreamweaver Studio 8.0. on the PC.
    Some of my CSS Styles info does not work in some browsers.
    The “main_content” section of my site does not
    display properly in some browsers.
    Here is the CSS code:
    #main_content {
    position:absolute;
    left:134px;
    top:180px;
    width:651px;
    height:597px;
    z-index:6;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-left-style: none;
    border-top-color: #0000CC;
    border-right-color: #0000CC;
    border-bottom-color: #0000CC;
    border-left-color: #0000CC;
    border-right-style: solid;
    border-bottom-style: none;
    It works fine in FireFox 1.5 and Netscape 8. But in IE 6.0.2
    and Safari 2.0.3 the main content section:
    1. moves to the far left of the page (behind a left side
    image border)
    2. loses its width restriction and fills to the right
    whatever size monitor display it is on
    3. loses the solid right border of this section
    The “.copyright” info also does not display
    properly
    .copyright {
    font-size: 9px;
    background-color: #666666;
    color: #FFFFFF;
    Again, it works fine in FireFox 1.5 and Netscape 8. But in IE
    6.0.2 and Safari 2.0.3 the copyright section:
    1. does not change to the smaller font
    2. does not change font color
    3. has no background color
    Does anyone have any ideas?
    Thanks,
    David

    Here's something you need to know:
    There is no significant difference in the way that these
    browsers render
    valid CSS on pages with valid doctypes. Please post a link to
    your page so
    we can get at the bottom of this, and keep you from careering
    off the cliff
    edge that you are now teetering on! 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "DAFsr" <[email protected]> wrote in message
    news:enjt3a$orq$[email protected]..
    > FOUND A WORK AROUND!
    >
    > Many of the CCS styles are not being picked-up by IE
    & Safari. So I
    > placed
    > those codes that weren't being recognized back into the
    div tags of the
    > individual layers. I've got the positioning problem
    taken care of, now I
    > need
    > to figure out the best way to get the other conventions
    like heading type
    > size
    > and color to match in all browsers.
    >
    > Still don't understand why the CSS style sheet isn't
    working in IE &
    > Safari.
    > But I'm hopeful at this point I will at least be able to
    complete the site
    > and
    > get it to play okay in multiple browsers.
    >
    > If anyone has any other thoughts that might help me,
    feel free to post
    > away!
    >
    > Thanks,
    >
    > David
    >
    >

  • ID CC 2014 grep styles problem

    Have you noticed that the new ID CC 2014 version does not use grep-styles correctly? I have a quite complicated grep-styles system I have to use with my client. But now this new ID does not understand it at all. I have 5 greps and this poor new id understands only 3 first on stack, if even those. Old cc and CS6 did all of them correctly. It seems that quality of Adobe has been going down even more... This is not the only problem with these new rented products from Adobe nowadays. They are not even robust anymore.
    Example:
    Orginal data:
    to look like this:
    by using grep-styles like this:
    This used to work like a charm, but not anymore.

    It depends by order but for instance like this:

  • Opera in xmonad -- style problem

    I recently made the switch to xmonad and am loving it!
    The only problem so far that's left me scratching my head is Opera's (lack of) styling with this WM.
    Most of Opera uses its own default grey-ish theme without issue, but the toolbar is not styled by default. If I start Opera explicitly with the "-style ..." option, it appears fine. It also appears fine in KDEmod by default (i.e., without using the "-style ..." option).
    I've tried several builds--always with the same problem:
    9.63-1 (repos)
    9.60_2436-1 (KDEmod)
    10.00_4116-2 (AUR)
    These should be shared builds with the exception of 9.63-1, AFAIK.
    All my other KDE/Qt 4 apps are styled appropriately in xmonad.
    Ideas? Is anyone else experiencing this?

    Yes, I've done that already.
    I was more curious about why this is happening and whether anyone else is experiencing a similar problem with Opera + xmonad.

  • Page style problem!!

    some website still looks like NO page style even if I select Basic Page Style, and when I try to log in to 163 email, it always says that problems occur when loging in to the mail navigation bar and the page style is abnormal and I cannot open any links in the email page.

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

Maybe you are looking for

  • Error with ADC on Azure dcdiag report failed test Advertising

    ever since I built an ADC on azure for my domain I am getting the below errors on dcdiag Starting test: Advertising Warning: DsGetDcName returned information for \\V2DC.V2.COM, when we were trying to reach V2-ADC02. SERVER IS NOT RESPONDING or IS NOT

  • Oracle BI reporting facilities

    We are planning to migrate an existing Reporting Tool in Crystal Enterprise Edition 10 to a new tool and were suggested about Oracle BI framework which has such features. I am able to find out some funcationalities except for the main facilities list

  • How to connect to Time Capsule

    Hi, I lost my connection to my Time Capsule. In Airport Utilities everything seems fine, but via my MacBook, I can't find the Capsule. Please help med with troubleshooting! Kindest regards, Fredrik

  • Video review at Computex by Canada No.1 reviewer Linus tech tips

    Check out this review at MSI Computex booth. You can see our GT60 3K Edition, GS70, and GT70 Dragon Edition 2. https://www.youtube.com/watch?feature=player_embedded&v=hmCChbt06JM

  • HT1296 How do I get photos from my iPhone to my iMac ??

    When I plug my iPhone into the computer it comes up in iTunes but I don't know how to get the photos from my iPhone on to the computer ??