Overriding implict style breaks ThemeResource references?

In a Windows 8.1 store app, when I define an implicit style, say for a TextBox, the light/dark theme changes I make to built-in ThemeResources seem to be ignored.
For instance,
I've set up a ThemeResource file for the Default (Dark) theme, and set the color of TextBoxBackgroundThemeBrush to Lime. 
I then copied the default TextBox template to two different resource dictionary files and made a change to the border color and width (for visual cues).  The files are identical except for defining an x:Key in the "explicit" theme file.
The three XAML files (my theme resource dictionary and the two style files are added to App.xaml as MergedDictionaries.
I added two textboxes to a vanilla page - one has the explicit style applied, one relies on the implicit style... the result is below:
Note that the Implicit Style has lost the Lime background, even though it refers to {ThemeResource TextBoxBackgroundThemeBrush} just like the explicit style.

Hi Jim,
Thanks for your repro, I can see the exactly behavior as you describe in your question.
However I think the behavior could be explained by the Lookup behavior for XAML resource references, you may find more information from here:
ResourceDictionary and XAML resource references.
If a resource isn't found in the initial scope, the scope expands. The lookup behavior continues on throughout the locations and scopes that a XAML resource could possibly be defined by an app or by the system.
When the TextBox is apply implicit style, the initial scope is system resource dictionary and there is the default setting for TextBoxBackgroundThemeBrush, then it take the default color. Again another small test, if we modify the implicit style by changing
the resource key name, also we change the name in DarkTheme.xaml
ImplicitTextBoxStyle.xaml:
<Style TargetType="TextBox">
<Setter Property="MinWidth" Value="{ThemeResource TextControlThemeMinWidth}" />
<Setter Property="MinHeight" Value="{ThemeResource TextControlThemeMinHeight}" />
<Setter Property="Foreground" Value="{ThemeResource TextBoxForegroundThemeBrush}" />
<Setter Property="Background" Value="{ThemeResource TextBoxBackgroundThemeBrush1}" />
DarkTheme.xaml:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Key="Default">
<SolidColorBrush x:Key="TextBoxBackgroundThemeBrush1" Color="Lime" />
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>
The error will be thrown while we tried to debug it, looks like the Resource cannot be found. Probably the expend is outward expansion but not downward expansion.
When the TextBox is apply explicit style, the initial scope is ResourceDictionary, and system will look into all the ResourceDictionaries to find the correct key, then it stop, Lime color will be displayed.
Note  It is a common practice to define all the immediate resources at the root level of a page, both to take advantage of this resource-lookup behavior and also as a convention of XAML markup style.
--James
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Style Breaks for Table of Contents

    I want to generate a Table of Contents from a "Harvard" style outline. The problem I am having is that the TOC pulls all the text from the list item rather than just the heading. So, the outline looks like this:
    I. Heading
       A. Subheading. Blah Blah Blah Blah...
       B. Subheading. Yada Yada Yada....
    When I generate the TOC, I want just:
    I. Heading
       A. Subheading.
       B. Subheading.
    I've tried to style the blah and yada using character styles but it doesn't seem to override the paragraph style. Word has a "style break" or some invisible code you can insert in the middle of a paragraph to switch styles. I think I could do something like this:
    I. Heading
       A. Subheading.
            Blah Blah Blah.
       B. Subheading.
            Yada Yada Yada.
    But I prefer the text relating to the heading to be in the same paragraph.
    Ideas? Cheers!

    Hi Vivek,
    If that is the case do some thing like :
    Create a repor (Main) with only employee names
    Create another report (Sub report) with all employee details
    Insert this sub report in your main report as Ondemand sub report beside your employee name with the name 'click here'
    Link both main and sub report using a common field
    Now when you click on On demand sub report it will execute the details. 
    It looks like your employee names report
    Thanks,
    Sastry

  • Clear or Override Forced Line Breaks?

    This is probably really simple, but I searched the help file and didn't find it.
    - How do you clear all forced line breaks in a paragraph?
    I'm editing text that we thought was fairly final, and I usually work in Preview mode as it's cleaner and easier to see what's going on. But I'm fearful of any forced line breaks that I may not know about that could mess up the paragraph flow after I make changes. The text is fully justified.
    I know I can work in Normal mode and turn on 'View Hidden Characters' to see them. But even with that, they can sometimes be small and hard to see depending on the complexity of the type and how zoomed-in I am.
    - Isn't there a simple key command to override forced line breaks?
    THANKS!

    OK. Thanks. I knew that would be an option, I just think I confused a couple other features with what I was hoping to do.
    I may have been confusing 'Clear Local Overrides' when updating a paragraph style, and the ability to have certain things highlighted (custom tracking/kerning, glyphs, etc.), with an ability to clear forced line breaks with a simple key-command or palette menu item.
    Thanks, though.

  • How can I get the link not to override my style sheet formatting?

    I have an html page with text that has a style sheet applied
    to it. When I insert a link into parts of the formatted text, the
    style sheet formatting is lost in the linked text (the text for
    mylars, shapes and number shapes becomes smaller: see code below).
    How can I get the link not to override my style sheet
    formatting?
    Here is the html code I am referring to:
    <span class="bodyheader20pt">Fall into winter's biggest
    celebration with our New Year's Day <a href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=A4&sc=184&PageNumbe r=1"
    style="text-decoration:none">mylars</a>, <a href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&sc=184&PageNumbe r=1"
    style="text-decoration:none">shapes</a>, and 2-0-0-9 <a
    href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&sc=166&PageNumbe r=1"
    style="text-decoration:none">number
    shapes</a>.</span>
    I am using Dreaweaver CS3 on a Mac running OSX
    10.4.11.

    Show us this rule --> bodyheader20pt?
    Also, having this in your three anchor tags -
    style="text-decoration:none" -
    will prevent your anchors from displaying any stylesheet
    style for
    text-decoration.
    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
    ==================
    "ellfwar" <[email protected]> wrote in
    message
    news:geqiph$foq$[email protected]..
    >I have an html page with text that has a style sheet
    applied to it. When I
    > insert a link into parts of the formatted text, the
    style sheet formatting
    > is
    > lost in the linked text (the text for mylars, shapes and
    number shapes
    > becomes
    > smaller: see code below).
    >
    > How can I get the link not to override my style sheet
    formatting?
    >
    > Here is the html code I am referring to:
    > <span class="bodyheader20pt">Fall into winter's
    biggest celebration with
    > our
    > New Year's Day <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=A4&
    > sc=184&PageNumber=1"
    style="text-decoration:none">mylars</a>, <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&
    > sc=184&PageNumber=1"
    style="text-decoration:none">shapes</a>, and 2-0-0-9
    > <a
    > href="
    http://www.usballoon.net/web/default.asp?pagename=mg_cls&mg=A9&mg2=&cl=L2&
    > sc=166&PageNumber=1"
    style="text-decoration:none">number
    > shapes</a>.</span>
    >
    > I am using Dreaweaver CS3 on a Mac running OSX 10.4.11.
    >

  • When adding columns, why do I get overrides on style?

    Hi all,
    When I'm adding columns in a certain document I end up with the new columns having overrides on them. How can I avoid this?
    The columns I added are seen in the middle.
    As you can see the they all get a "shift down" by -22 pt.
    I use this shift down on some other place in the document, but the table columns are clean from that kind of override, and just by selecting a column and adding 4 new columns "to the right" of that column, I would expect the new ones to get the exact same properties as the one selected.
    Can anyone try to explain what might be wrong with my document or way of working?
    Adding info: It seems there's something in the styles - many properties on them... This has noting to do with cells specifically. Just adding a textbox results renders the text this way as well, with the baseline shift (only no override symbol).
    Best regards,
    Andreas

    Ah... now I get it. The default styles of the document were set to a specific paragraph style and another character style.
    Setting the defaults to [Basic Paragraph] and None respectively seems to put everything in order.
    (You set a default by clicking outside the document so that nothing is selected, and then you select the styles [Basic paragraph] and None)
    Case closed.

  • [JS CS3] JS method for Object Styles Break Link to Style

    I have pages full of objects that are assigned the pesky "Basic Graphics Frame" object style. I need to do the equivalent of choosing "Break Link to Style" in the Object Styles panel on all the objects in many files.
    I haven't been able to find anything equivalent to the "Break Link to Style" functionality in looking through the Object Browser. Finding all objects with [Basic Graphics Frame] object style and applying an object style of [None] doesn't do the same result. Any ideas?

    hi:
    //FindObjectPreference
    myDoc = app.documents[0];
    app.findObjectPreferences = NothingEnum.nothing;
    app.changeObjectPreferences = NothingEnum.nothing;
    app.findChangeObjectOptions.properties =
      objectType: ObjectTypes.allFramesType, //graphicFramesType, textFramesType, unassignedFramesType
      includeFootnotes: true,
      includeHiddenLayers: true,
      includeLockedLayersForFind: true,
      includeLockedStoriesForFind: true,
      includeMasterPages:true
    //var graphicOStyleName = "[Normal Graphics Frame]";
    app.findObjectPreferences.appliedObjectStyles = myDoc.objectStyles.item(1);
    var dstStyle = myDoc.objectStyles.item(0);
    var founds = myDoc.findObject(0);
    var foundsLen = founds.length, i, found;
    for(i = 0; foundsLen > i ; i++){
      //app.select(founds[i]); alert(founds[i].appliedObjectStyle.name);
      founds[i].applyObjectStyle(dstStyle, false, false);
    <pre>
    jxswm

  • Need to override CSS style for link

    I've set up a page with an external style sheet. I have a
    link within a heading that I want to look different from my CSS
    link style (I want it to match the heading). Is there a way to
    override the basic style? I tried setting up a class and that
    didn't work. Any suggestions would be greatly appreciated

    Clearly there is a typo there. It should be either this -
    .heading a:link {
    (leading dot for heading - no SPACE after the colon)
    or this -
    #heading a:link {
    depending on whether there is a custom class or an ID
    selector being used to
    identify the container for the link.
    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
    ==================
    "Katsuey" <[email protected]> wrote in message
    news:f1rf6c$h92$[email protected]..
    >> I've set up a page with an external style sheet. I
    have a link within a
    >> heading that I want to look different from my CSS
    link style (I want it
    >> to
    >> match the heading). Is there a way to override the
    basic style? I tried
    >> setting up a class and that didn't work. Any
    suggestions would be
    >> greatly
    >> appreciated
    >
    > Yes, give that heading a different style such as:
    >
    > heading a: link{
    > color: red;
    > }
    >
    > Where as all other links might be:
    > a:link {
    > color: blue;
    > }
    >

  • Overrides on Styles for Imported files

    I am importing word docs into InDesign to apply formatting and layout but it is applying overrides to the styles. Is there a way to import without overrides?

    If you're doing a lot of this kind of thing it might be worth you looking at Anne-Marie Concepcion's excellent online tutorial, "Using Word and InDesign Together".
    http://www.lynda.com/InDesign-tutorials/Using-Word-InDesign-Together/122930-2.html
    Derek

  • Make paragraph style not override character style?

    Hi.
    Is there any way to make a paragraph style NOT override a character style?
    For example, I write a lot of scientific reports in Pages and then I use subscript and superscript often and so I have made a character style for that. But if I want to perhaps change the spacing between paragraphs in my body style. I select a paragraph, change the settings that I want and then I right click on the paragraph style and choose "redefine style from selection". Then I select all of that style and choose "revert to defined style" to get the updated paragraph spacing. But what this does is that it overrides all of the character styles so that everything in sub/superscript, bold, italic etc get back to the style. This is really bugging me out.
    For the character styles you can select what attributes you want them to affect, is there any way to do this with paragraph styles as well? Or maybe some of you have got a good way to make it work.
    Thanks in advance.

    When you redefine the paragraph style, all paragraphs using that style will display the new style properties, unless you've overriden them. Presumably this is why you choose "revert to defined style", so that other paragraphs that you've stylistically modified take on the proper paragraph style properties. If not, why revert at all?
    Instead of using revert, why not re-apply the paragraph style (just click on the selected style in the drawer, or pick the selected item from the pop-up menu). It will discard your unwanted paragraph style overrides, and preserve the character styles.

  • How to break Circular References.

    I have on GUI class containing many components like Button, Combo Box, TextArea etc. And I have an other class ActionHandler which implements ActionListener,ItemListener and keyListener. GUI class has reference of ActionHandler class for handling events corresponding to the components in it and in ActionHandler class i need reference of GUI class for any modification/changes in the different GUI Components, based on the event generated.
    This results in circular referencing between the two classes. How to avoid this situation.

    I don't think circular references are necessarilly a bad thing. However I generally put the GUI listners etc. inside the GUI class to which they relate, so they naturally have access to the GUI class without an explict pointer. More often than not these listener objects are tiny anonymous classes which do little more than call a private method in theGUI class.

  • Override oracle styles?

    Hi All,
    I have noticed that when placing an out-of-the-box portlet on my page, it takes on the page style. BUT the customize pages and everything else associated with the portlet still retain the Oracle style. It looks like I've navigated to a completely different site!
    Do you know of any way to change the styles of the out-of-the-box portlets to match the chosen page style?
    Thank you in advance!
    Lisa

    Hi,
    Yes you can in pretty much the same way as with 11g except that some important features won't work, the most notable one being -tr-inhibit. See
    Selectors:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html
    How to:
    http://www.oracle.com/technology/products/jdev/101/howtos/adfskins/index.html
    Regards,
    ~ Simon

  • Overrided Paragraph Styles: Three different states instead of logical two.

    Hi there,
    I am curious to find out why there are three states of paragraph style instead of two:
    State 1: Clear paragraph style: Everything understandable. Style is applied to paragraph. No conflicts.
    State 2: Paragraph with applied Paragraph Style has been infected by some additional changes. There is 2× "+" sign beside name of the Style and beside name of Style in the header of the Paragraph Styles Palette. All clear to me so far.
    State 3: Paragraph with applied Paragraph Style has been infected by some additional changes. There is just 1× "+" in the header of the Paragraph Styles Palette.Confusion.
    So my question is: What difference is between States 2 and 3?
    Thank you in advance!

    You are right, it is not. But with trying around I detected another bug with fonts and styles. Which I have reported.
    @ChristianAaltonen
    Can you provide us a link to such a document, so we can investigate it?
    Thanks
    Willi

  • A bug in MergedDictionaries and ThemeDictionaries.

    Hi everyone. I found a bug when developing in .NET for WinRT with XAML. To reproduce the bug, follow these steps:
    (1) Create an empty Windows Store app with XAML, call it "ReproduceDictIssue".
    (2) Place the following AppBarButton on the main page so that you can see the effect of other steps:
    <AppBarButton Icon="Accept"/>
    (3) Run the app to see a dark themed app page with a white AppBarButton. Close the app.
    (4) Replace App.xaml with the following code: (If you didn't name the project as ReproduceDictIssue, you might want to change the corresponding part so that the code works correctly for you)
    <Application
    x:Class="ReproduceDictIssue.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:ReproduceDictIssue"
    RequestedTheme="Dark">
    <Application.Resources>
    <ResourceDictionary>
    <ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Dark">
    <SolidColorBrush x:Key="AppBarItemForegroundThemeBrush" Color="Red"/>
    </ResourceDictionary>
    </ResourceDictionary.ThemeDictionaries>
    </ResourceDictionary>
    </Application.Resources>
    </Application>
    (5) Run the app, now the app bar button is red. NOTE that the "Accept" (tick) icon is also red. Close the app.
    (6) Replace the App.xaml with the following code:
    <Application
    x:Class="ReproduceDictIssue.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:ReproduceDictIssue"
    RequestedTheme="Dark">
    <Application.Resources>
    <ResourceDictionary>
    <ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Dark">
    <SolidColorBrush x:Key="AppBarItemForegroundThemeBrush" Color="Red"/>
    </ResourceDictionary>
    </ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary/>
    </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
    </Application.Resources>
    </Application>
    That is, merge a dictionary to it.
    (7) Run the app. No difference here. Close the app.
    (8) Replace App.xaml with the following code:
    <Application
    x:Class="ReproduceDictIssue.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:ReproduceDictIssue"
    RequestedTheme="Dark">
    <Application.Resources>
    <ResourceDictionary>
    <ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Dark">
    <SolidColorBrush x:Key="AppBarItemForegroundThemeBrush" Color="Red"/>
    </ResourceDictionary>
    </ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary/>
    </ResourceDictionary.MergedDictionaries>
    <Style TargetType="AppBarButton">
    <Setter Property="Foreground" Value="{ThemeResource AppBarItemForegroundThemeBrush}"/>
    </Style>
    </ResourceDictionary>
    </Application.Resources>
    </Application>
    That is, add a default AppBarButton style to it.
    (9) Run the app. NOTE that the "Accept" (tick) icon is now WHITE, which is indeed the unoverriden value. Close the app.
    (10) Remove this line:
    <Setter Property="Foreground" Value="{ThemeResource AppBarItemForegroundThemeBrush}"/>
    (11) Run the app. Now the color is correct again. Close the app.
    (12) Add the line back:
    <Setter Property="Foreground" Value="{ThemeResource AppBarItemForegroundThemeBrush}"/>
    And remove this line (this line is in the ResourceDictionary.MergedDictionaries):
    <ResourceDictionary/>
    (13) Run the app. The color is still correct. Close the app.
    (14) Replace App.xaml with the following code:
    <Application
    x:Class="ReproduceDictIssue.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:ReproduceDictIssue"
    RequestedTheme="Dark">
    <Application.Resources>
    <ResourceDictionary>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary>
    <ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Dark">
    <SolidColorBrush x:Key="AppBarItemForegroundThemeBrush" Color="Red"/>
    </ResourceDictionary>
    </ResourceDictionary.ThemeDictionaries>
    </ResourceDictionary>
    <!-- <ResourceDictionary/> -->
    </ResourceDictionary.MergedDictionaries>
    <Style TargetType="AppBarButton">
    <Setter Property="Foreground" Value="{ThemeResource AppBarItemForegroundThemeBrush}"/>
    </Style>
    </ResourceDictionary>
    </Application.Resources>
    </Application>
    That is, move the theme dictionary into the merged dictionary.
    (15) Run the app. The color is still correct. Close the app.
    (16) Now uncomment this line:
    <!-- <ResourceDictionary/> -->
    (17) Run the app. The color of "Accept" (tick) icon is white again.
    Conclusion: there is a problem in theme resource look-up. For a Style's Setter, the look-up might be in the following order:
    Last meged dictionary -> second last -> ... -> first merged dictionary -> specific theme dictionary(like Light/Dark/HighContrastWhite) -> general theme dictionary(like Default) -> programmer-specified
    entries -> system entries.
    Note that the bold part is recursive. Due to this behaviour, the following dictionary:
    <ResourceDictionary>
    <ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Dark"> <!-- 2 -->
    <SolidColorBrush x:Key="AppBarItemForegroundThemeBrush" Color="Red"/>
    </ResourceDictionary>
    </ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary/> <!-- 1 -->
    </ResourceDictionary.MergedDictionaries>
    <!-- 3 -->
    <Style TargetType="AppBarButton">
    <Setter Property="Foreground" Value="{ThemeResource AppBarItemForegroundThemeBrush}"/>
    </Style>
    </ResourceDictionary>
    resolves the ThemeResource AppBarItemForegroundThemeBrush in the following steps:
    It first asks dictionary 1 to resolved ThemeResource AppBarItemForegroundThemeBrush.
    Dictionray 1 has no merged dictionaries, and has no theme dictionaries. It looks at programmer-specified entries, which is empty. So it asks for system entries. Note that dictionary 1
    does not have AppBarItemForegroundThemeBrush overriden, so it returns the system default value for dark theme, which is white.
    The large dictionary now finishes the look-up with the value returned from dictionary 1, which is white.
    In that process dictionary 2 is never asked to look up AppBarItemForegroundThemeBrush.
    We might find that this process' behaviour is out of most people's expectation. ResourceDictionary should
    suppress system default resources when doing a look-up that is in a larger dictionary's recursive part. Actually
    IT DOES. The proof is that if the resource is not in a Setter, it has the expected behaviour. Like in a control template or anything.
    You might have noticed that the circle of the app bar button is pink and if the setter is removed, the color of "Accept" (tick) icon is correct. That'll be the proof.
    Thanks for reading this bug report. I hope someone from Microsoft can follow this bug and remove the bug in future releases of .NET for WinRT with XAML. Thanks again, everyone.

    Looks like the same issue for this thread:
    https://social.msdn.microsoft.com/Forums/en-US/85a36b0a-9a19-4921-8dac-3a906067ee1b/overriding-implict-style-breaks-themeresource-references?forum=winappswithcsharp
    You have Failed this City --Arrow :)
    yes exactly! A workaround is to completely override the template so that it uses a custom resouce key, which does not fail since no system default resource is included.

  • Inline style - decimal value for dimension break designer

    Hi all.
    I'm using JDeveloper 11.1.2.1 & ADF.
    Just to let you know that decimal value in dimension css selectors (like width...) added using inline style break UI designer.
    af:tree table -> nodeStamp facet -> column -> inlineStyle -> width:305.0px break UI designer.
    Replacing 305.0px with 305px makes everything work Ok.
    .0 part in inline style was added by JDeveloper 11.1.1.5, while JDeveloper 11.1.2.1 doesn't add decimal part.
    Regards.

    Frank, this is i minor issue but it took me 1hour to find what breaks UI designer.
    What I did is just migrated adf application from JDeveloper 11.1.1.5 to 11.1.2.1.
    In JDeveloper 11.1.1.5, when you enter width using property inspector -> style -> layout -> dimension -> width property, let say 305 and select pixel in side drop down list, what you get as result is inlineStyle property like this:
    inlineStyle="width:305.0px"
    Frank Nimphius wrote:How would 305.2 pixel look like ?You should ask Oracle to answer this question.
    Thank you for your reply.

  • CS2 4.0.5. Sometimes cannot clear local overrides in paragraph styles

    Sometimes, when I'm tweaking a text design using local characteristics to override the style sheet, if I want to revert to the original I try Option-clicking the relevant style in the list of Paragraph Style Sheets, but nothing happens - and the override button at the bottom of the Para Style Sheets tab is greyed out.
    Has anyone experienced this?
    I don't have any Character Styles applied, so it can't be that.
    I like to avoid having + symbols hanging off my style sheets so I know that my styling is consistent throughout the whole document, so this problem is a bit of a spanner ...

    There is a bug in CS2 where it doesn't necessarily always get rid of the "+" character even when all overrides have been cleared. Try collapsing the palette (if it is docked to the side of the screen) or just closing and re-opening it. After doing this, the plusses should be accurate again.

Maybe you are looking for

  • How to do job_submit on a program which calls a custom FM?

    Hi all, I am doing a job_open, job_submit and job_close to submit a FM in background. Now, how do I do a job_submit for a program which contains the FM that doing the real processing? Details: Program ZNSC_WRAP_RMD contains call function "YXAPY_REVIE

  • How can i find the serial number for an ipod classic

    I dont have the original packaging or the reciept, It wont connect to itunes or my laptop and all that shows on the ipod's screen is a red circle with a cross inside it. I have tried to reset it but have not been able to. Any help would be much appre

  • Cd rom boot problems with MEGA 180

    I recently recieved my MEGA 180 and have been unable to successfully install an OS because when I boot from CD, the computer freezes at various stages of installation. The point at which it freezes varies between the point at which the CD is initiali

  • Firefox 28 has double of all bookmarks, deleting one deletes both

    I have "Bookmarks Toolbar" and "Bookmarks Menu" both listed twice in my side bar (what appears when you hit "cntrl-b" and I cannot delete the duplicates, it deletes both versions. I have uninstalled and re-installed FF, and also tried resetting all s

  • Transferring iPhoto Library from 10.3 to 10.8

    My folks recently upgraded from an eMac running 10.3 / Whatever Cat to an iMac running 10.8 / Mountain Lion.  I have transferred the old iPhoto Library to the new computer, and renamed it slightly (but did not replace or throw away the new iPhoto Lib