Showing my own styleClass in Property inspector styleClass combo

I have created my own styleSheets with my own new class and I'd like to select it in the styleClass combo into Property inspector. Is there any way of achieving it?
Thanks
Carlos

When i add css styles for entities such as <button>, urls do not become context aware!! i.e. the url is not changed to include the application's name, which results in images not displaying.
Is this a case of discrimination between adf css definitions and html css definitions?
Here is a snip of my .css file (which is defined in my adf-faces-skins.xml)
-----------start---------------
button.update {
content:url(/skins/myskin/images/update.png);
background-repeat: no-repeat;
background-position: center left;
padding-left: 15px;
-----------end---------------
After i run my application my css file is generated named "myskin-desktop-10_1_3_1_0-en-gecko.css" and displays the following for this button...
-----------start---------------
button.update,button.x8w {content:url(/skins/myskin/images/update.png); background-repeat: no-repeat; background-position: center left; padding-left: 15px;}
-----------end---------------
As you can see, the url points to /skins/myskin/images/update.png not /myapp/skins/myskin/images/update.png.
How can i make my css definitions context aware?

Similar Messages

  • Show/Hide/Set Link in Property Inspector?

    I know that CS 4 is still in beta, but I must be missing
    something: I =
    can't find the ability for me to select something on-screen
    and be able =
    to "set" it's link I either typing a filename or by
    "dragging" a pointer =
    to a filename in the files box? Where is it?
    Thanks.
    Ross

    Ross,
    > I know that CS 4 is still in beta, but I must be missing
    something: I can't find the ability for me to select something
    on-screen and be able to "set" it's link I either typing a filename
    or by "dragging" a pointer to a filename in the files box? Where is
    it?
    The PI in DW CS4 has 2 "tabs". One for HTML and one for CSS.
    There are
    buttons on the left to choose the tabs. Choose the HTML tab
    for the link
    field.
    HTH,
    Randy

  • Output text show Null when access value through property inspector in ADF

    Hi,
    we declare two UIComponents one is Deptno which is InputComboBoxListofValues and othre is Dname as output text.
    we create ManagedBean called "deptBean"(which is in BackingBeanScope) and create a method inside bean "deptnoChanged".
    ValueChangeListener of Deptno pointing to deptnoChanged method of deptBean.
    Inside deptBean we declare a variable private String departmentName which are having setter and getters.
    we can Initialize departmentName based on valueChangeEvent in bean level
    for example:
    if (deptno=10)
    setdepartmentName("Accounts");
    else
    setdepartmentName("Sales");
    Now we Can Access the Value of departmentName.
    The UIComponent(output text field) such as Dname in JSP Page we set value (in property Inspector)
    _#{backingBeanScope.deptBean.departmentName}_
    when we execte the JSP Page Dname show Null as output. but output we expect as Accounts or Sales only.
    Please help us, how to resolve the problem
    Thanks,
    kumar.

    when we execte the JSP Page Dname show Null as output. but output we expect as Accounts or Sales only.The value to be got while debugging should be via EL expressions and stored somewhere.
    If the value Dname is bound to the backing bean then you can view its value in the property inspector using
    #{<BeanScope>.<BeanName>.value} or the like

  • API to show Property Help in Property Inspector of JDeveloper

    Hi,
    We are writing the product based on JDeveloper/FCP platform.
    There is the need to provide either tooltip or some kind of help
    for each property in Property Inspector. What kind of API should
    we use to achieve that? In XML Schema extension I see the
    following Property Help:
    We'd like to achieve the same functionality.
    Thanks in advance!

    User, tell us your jdev version, please!
    Not sure what you try to do, but you can look into the extension sdk. See https://www.google.de/url?sa=t&source=web&rct=j&ei=cCs3VdvlKpPKaNbogaAN&url=http://www.oracle.com/technetwork/topics/ind…
    Which has samples too.
    Timo

  • Help! Can't paste into code view or property inspector

    I'm experiencing a weird and extremely annoying bug in Dreamweaver CS6 -- I can't paste text from outside apps into DW's code view or into the property inspector (such as URLs).
    Pasting doesn't work no matter the method: Ctrl + V, right-clicking or using the Edit menu. Pasting works normally in every other program. If I copy within Dreawmweaver, pasting works fine.
    Does anyone have a solution for this? I'm running Win 8 and DW 12.1 through Creative Cloud. Searching the forums, I see others have reported the same issue. Some have been able to fix it by deleting the configuration file; that didn't fix the issue for me. I'd like to try reinstalling DW, but the Adobe Application Manager doesn't seem to allow that.
    I began noticing this bug about two weeks ago. That might have been about the same time I updated to 12.1. Can anyone help?
    Thanks,
    Cory K.

    Adding to my last post, I used a clipboard format inspector called nclip (http://code.google.com/p/nclip/) to see if I could find a pattern between "what works" and "what doesn't".
    There are two cases where I'm seeing paste-into-Dreamweaver CS6 fail:
    Paste into Code View fails, but Paste into Design View works!
    Paste into either Code View or Design View fails
    I went through the list of programs that worked and didn't worked, using nclip to show what clipboard formats were being saved from each working and non-working source. It appears that DreamWeaver CS6 as of January 9, 2013 doesn't accept the most basic text clipboard formats:
    CF_UNICODETEXT
    CF_TEXT
    CF-OEMTEXT
    CF_LOCALE
    If these are the only clipboard formats used by an app (for example, Window's venerable Notepad.exe), Dreamweaver doesn't appear to handle them. Most programmer-style text editors output just these formats, because they are presumed to be understood any application that handles text. These fail for both pasting into codeview and design view.
    Interestingly, Chrome browser fails the code view test, but it does work in design view! It outputs the four clipboard types above, plus one more:
    Custom Format: HTML Format
    Hypothesis 1: Any application that puts HTML Format on the clipboard will paste into design view, but not necessarily code view.
    Next, Visual Studio 2010 and Sticky Notes, which doesn't include HTML Format as a clip type, works for both code view and design view. They both output this type in addition to the basics:
    Custom Format: Rich Text Format
    Two programs that output Rich Text Format without HTML Format are Sticky Notes and WordPad. These both work with Code View and Design View. From these limited tests on my system, it appears that for Dreamweaver to accept a text paste from an outside program into Code View, that program must output Rich Text Format to the clipboard. Otherwise, it fails. Dreamweaver will accept HTML Format, but only in Design View. Firefox is an exception in that it don't export Rich Text Format, but still works with Code View. It might use OLE, though (Chrome doesn't seem to use OLE, and it breaks in code view).
    Hypothesis 2: Any application that puts Rich Text Format on the clipboard will paste into design view AND code view.
    If Dreamweaver is really ignoring the basic text clipboard formats, and it's not just my system configuration, then this is a bug. Probably something that got overlooked in testing.
    To reproduce on Dreamweaver 12.1 build 5966:
    Try copy/pasting text from Notepad.exe into Dreamweaver Code View (DWCV). This fails for me.
    Try copy/pasting text from WordPad.exe into DWCV. This works!
    Try copy/pasting text from Internet Explorer 9 or Firefox into DWCV. This works!
    Try copy/pasting text from Chrome. This fails to paste into Code View, but does paste into Design View
    The Code View workaround:
    Use Firefox or Internet Explorer for your browser if you're copy/pasting source code.
    If you're working from another text editor, try copy/pasting into intermediate programs Sticky Notes or WordPad, then copy/paste from there into Dreamweaver.
    So that is my experience on Windows 7 64-bit. Anyone else experiencing the same thing?

  • Property inspector not working correctly

    The property inspector in CS3 is not working correctly. When
    I select text or any other object the property inspector does not
    change for that object. But when I right mouse click on the
    selected object it does. Do I need to change a setting?
    Thanks!

    Yes, me too. I can't find an answer to this anywhere.
    If I right-click or double-click on an item the property
    inspector shows it, but if I single click, nothing happens. It's
    bad for productivity.

  • Adding a custom field to the property inspector in JDev 10.1.3

    Hello All
    I have a requirement where i have to add some custom entries to the property inspector.Say if we choose a text field in html there will be some standard values in property inspector.Now i want to add my own custom entry always on selection of text field.
    Or i am developing a custom editor and i always want property inspector to display some values on certain selections.
    I already went through the code samples provided for jdev 10.1.3 but i couldnt find one for property inspcetor.I also went through the oracle.ide.* packages.Could someone provide me a class or method from where i can start ???
    Thanks in advance !!!

    I was able to find the ide.jar file which contains all the necessary oracle.ide.* class files.
    I had another query....basically there are 2 kinds of packages of the form javax.ide.* and oracle.ide.*
    So suppose im faced with the situation of say adding menu items and defining actions on them then i guess it can be done in 2 ways using classes in javax.ide or oracle.ide.Can you elaborate how i should choose between these 2 packages.
    Is it if im using the <jdeveloper-hook> i shud use oracle.ide.* and the regular jsr 198 schema then the javax.ide.*
    Kindly clarify !!!! Thanks in advance

  • Property inspector not displaying properties

    Trivial problem: DAK why DW8 (8.0.2) Property inspector
    sometimes displays just "Div ID, Class and an Edit CSS button" when
    within a DIV? When in Code view in a correctly functioning
    page, most of the code will have detailed HTML properties displayed
    as usual. But in one section - which has multiple nested DIVs with
    some other HTML inside, Property inspector displays only the DIV
    details instead of the other HTML details - as if it were still
    inspecting the DIV tag itself instead of being within the DIV?
    The page validates with no errors and the DIVs are closed
    with </div> in the right places.

    Yes, me too. I can't find an answer to this anywhere.
    If I right-click or double-click on an item the property
    inspector shows it, but if I single click, nothing happens. It's
    bad for productivity.

  • Property inspector not working in fireworks

    Hi folks,
    I am using Fireworks CS 5.1 on a MAC Pro. I haven't used Fireworks in ages but I can't for the life of me figure out where the Property Inspector has gone. I'm creating a very simple button. I put a simple line of text on my page, a box and a line. I have selected each one and then clicked the Windows menu and clicked Properties. The Properties box appears but it has nothing in it. Doesn't seem to matter what I click on there are no properties showing up.
    Any ideas?
    Thanks
    Sylvia

    A lot of glitches in Fireworks can be solved by deleting the preferences file. First you will have to make sure your Library folder is viewable and you are accessing the root folder on your hard drive. In recent releases of Mac OS, it is hidden by default.
    First, show your Hard Drive by following these directions:
    In the Finder, choose Preferences from the Finder menu.
    Click the General icon on the toolbar.
    Select "Hard disks" in the "Show these items on the desktop:" section.
    Close the Finder Preferences window.
    Next, you'll have to unhide the library folder by following these instructions:
    In the Finder, choose View > Show View Options (or press Command-J).
    Near the bottom of the resulting View-Options palette is a setting called Show Library Folder. Enable this option. Your Library folder is immediately visible.
    In that folder, find the Preferences folder. Then in the preferences folder, find the file with this name (or similar): "com.adobe.Fireworks.12.0.0.plist" and delete it.
    Restart your machine and Fireworks and your problem may be solved.

  • Font change in property inspector

    Good day all
    I would like to change the font used in Dreamweaver MX's
    windows, such as the property inspector. For example when a layout
    table is selected the font used in the property inspector to
    indicate width, height, cell pad, cell space etc appears pixelated
    making it difficult to read, for a beginner like me. I have tried
    altering the PC's screen resolution but it makes no difference and
    It is only the floating windows, such as the property inspector and
    objects window, that the problem shows itself- the rest of the
    Dreamweaver window, such as the menus, appear ok.
    Does anybody know how to change it???
    Many thanks in advance
    Chris

    > So if the body of my div called content is 10pt by
    default
    One should never use points on the web. Points are intended
    for use on
    printed output, not on pixel based screens.
    > but I want to change one line to 14pt, i would
    > highlight the line and then click the new css rule
    button and then create
    > a
    > class called 14pt?
    It depends very much on precisely what you mean in the above.
    I will assume
    that when you say 'one line' you mean 'one paragraph'. to do
    that, you
    would create a rule like this -
    #content p.special { font-size:16px; }
    and then apply the 'special' class to the paragraph in
    question by selecting
    it with the tag selector, right clicking to get the context
    menu, and using
    "Set class to -> special".
    Or, you could click in the paragraph tag in question and use
    the 'Style'
    selector on the Property inspector to select "special".
    If, instead, you meant one line within a paragraph, then you
    would have to
    select that text, and surround it with a span tag (using
    Ctrl-t). Apply the
    'special' class to the span tag, and adjust your rule like
    this -
    #content span.special { font-size:16px; }
    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
    ==================
    "Johnny the boy" <[email protected]> wrote
    in message
    news:foqbsv$nkf$[email protected]..
    >I am a confused.
    >
    > You say for me to use CSS rules instead. So if the body
    of my div called
    > content is 10pt by default but I want to change one line
    to 14pt, i would
    > highlight the line and then click the new css rule
    button and then create
    > a
    > class called 14pt?
    >
    >
    >

  • Property Inspector is empty

    Using JDev 10.1.2.1.0 (Build 1913) on XP. When I view the Property Inspector, it's empty. Not just the values, but the entire window. The name of the selected object is in the title bar, and the 7 icons are present, but there is no information in the body of the window, neither property names nor values. The only time I see anything in the body is when I click on a 'Package' name in the Navigator window, and then I see one line that always says 'defaultPackage' on the left, and the name of the package on the right. Any other type of object (specifically, I'm trying to view the properties of a Crosstab as described in Oracle's BI Beans OBE Lesson) comes up totally blank. The objects exist, they're visible on the screen, but nothing at all in the Property Inspector.
    Any ideas?

    My bad. I figured out what was missing.
    Right-clicked on the Property Inspector window, and saw that 'Read-Only Properties' and 'Write-Only Properties' were both unselected. Once I selected them, all of the properties showed up. (Read-Only's greyed out, of course).
    Thanks for the tip.

  • Property inspector cut off [was: CS4 help]

    Hello all,
    I just got a new computer with windows vista 64 bit.  With this new computer, I got a new CS4 package.  In dreamweaver, the properties pannel on the bottom of the screen cuts off and does not show all the stuff that it used to.  For example, I can see the word Target, but there is not dropdown box for me to select which target I want to select.  Is there a way to fix this so everything is viewable?
    Thanks
    [Message was edited by a moderator to make subject line more meaningful]

    You're welcome.  You might want to mark this thread as answered for the benefit of others with the same question.  And in the future, please try to use a more descriptive subject line for their benefit as well.  I'm going to edit your post accordingly....
    Hmm - well, I can't.  Too bad.  Who would search for a Property inspector answer with CS4/help in their search phrase?
    Message was edited by: Murray *ACE*
    [Another moderator says: It's easy to edit the subject line if you know how. ]

  • Property Inspector bug?

    There is a problem when property inspector is in bottom panel container of JDev.
    It doesn't show properties of some components.
    For example when I work with af:outputText on jspx page or invokeAction in pageDefinition file...

    Hi,
    yes I have the same "error" (Studio Edition Version 11.1.1.1.0, Build JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407).
    In some situations the property-inspector is empty and show only the background-color.
    I did not have the mistake in older releases.
    My Workaround: I add the property-inspector in the right-panel near the default component-palette.

  • Property inspector how-to

    Hello,
    I want to implement a "property inspector" (maybe this expression is not the best) in my application to make the GUI more user friendly.
    I mean the components like these:
    http://www.developmentontheedge.com/beanexplorer_inspector.shtml
    or (it is written in delphi):
    http://www.bergsoft.net/index.php?section=components&page=inspector.screenshots
    Unfortunately I didn't find a good tutorial how to implement my own component and didn't find any free component.
    Does anybody know a good source how to implement such component?
    Thanks!

    user518778 - since you are an internal Oracle user please use the internal email list jdev_us to post your questions.

  • Property Inspector missing sprites tab. (Dir 11.5, OSX 10.8)

    Property Inspector showing only Behaviors tab in Dir 11.5 and OSX 10.8.2.  PI had tabs for Sprite, Behavior, Filter, Member etc in OSX 10.6.8 (and B4).  How do I get those tabs back?

    I know this is an old question, but did you ever find a solution? I'm having the same probelm with Director 11.5 and OSX 10.8.2. The Property Inspector is blank - no tabs for Movie, Sprite, etc...

Maybe you are looking for

  • Wine is taking ages to load

    Wine is taking ages to load in my machine. When i run winecfg, for exemple, it takes about 10min to show me a window. $ winecfg wine: creating configuration directory '~/.wine'... Failed to open the service control manager. -> hangs here for about 10

  • Not able to create New Transformation file in BPC

    I am getting error in BPC 10.0 when creating new transformation file from the EPM tab in Excel. When i click on create New transformation then some garbage value appear on the Excel cells. Problem with Authorization is not the case as i have checked

  • Connecting TV to imac

    Can anyone tell me which cable and which adapter I need to connect to a Panasonic TX37P plasma TV? The TV has HDMI ports? Cheers for any advice. Chris

  • How to replace cluster element in an array?

    hi, I have understood preferable choice is to initialise array first and replace elements in an array instead of inserting new element in an array e.g. in a while loop. So I started to this evaluate since I have an application where I want to read lo

  • LVM questions regarding performance

    Over the holidays, I'll be redoing my server (running Arch) using LVM.  The situation is this: I have two internal HDDs (80GB apiece) on the IDE bus, and an external USB2.0 drive sitting around not being used. The current install is also partitioned