Getting rid of highlight around the border when a TableView gains focus

Hello,
Is there a way remove the highlight around the border of a TableView when it gains focus?
Thanks.

The relevant css from caspian.css in /sdk/rt/lib/jfxrt.jar is:
/** Draws focus border around tableview */
.table-view:focused {
    -fx-background-color: -fx-focus-color,-fx-box-border,-fx-control-inner-background;
    -fx-background-insets: -1.4, 0, 1;
    -fx-background-radius: 1.4, 0, 0;
    /* There is some oddness if padding is in em values rather than pixels,
       in particular, the left border of the control doesn't show. */
    -fx-padding: 1; /* 0.083333em; */
}To get rid of the focus display, just define a custom css stylesheet for your app which overrides the table:focused pseudo-class, for example:
.table-view:focused { -fx-background-color: transparent,-fx-box-border,-fx-control-inner-background; }

Similar Messages

  • Help getting rid of borders around the background image created in Fireworks

    Hey could someone help me make the background of my website not have white edges around it? You can see it at the top and bottom.

    Answers to questions like these are contained in your code.  Screenshots show us the display but they don't show us why.
    Did you zero out the default browser margins and padding in your CSS code?
    Some people prefer to use a CSS Reset for this:
    Below is a quick & dirty CSS reset that removes margins and padding from everything.  The asterisk * is a universal selector.
    * {margin: 0; padding:0}
    Nancy O.

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store notice. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard (command-C).
    In the Finder, press the key combination command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • How do i get rid of my first apple id when i got the phone

    how do i get rid of my first apple id when i bought the phone

    I don't think this is the easiest way. Have you concidered creating a new account and just... ignoring the last one? If this idea is not to your liking, just simply ring up apple. From what I know, you cannot cancel and account, but, I think that apple might be able to.

  • Setting the border when JCombobox get focused

    Hello,
    Is it possible to set the border when the JCombobox get focused?
    In fact, I would like to hide the border at all, but remain the "setFocusable(true)"
    Thanks in advance.

    So why did you post your last three questions in the Swing forum, but then decide to post this "Swing related" question in the Java Programming forum?
    Is it possible to set the border when the JCombobox get focused?Try it!
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.

  • CS 4 InDesign 6.0.4 How do I get rid of it showing the X and Y's

    How do I get rid of it showing the X and Y positions when I move a box or something around? Thank you.

    Thank you, I don't know how some of these things are coming up and happening since I upgraded to OS 10.6

  • Can I get rid of parts of the JRE for my app?

    I am trying to figure out how to easily deploy a stand-alone desktop Swing application. It's more like Microsoft Word than the typical Swing business app that deals with networks and databases. I'd like to make this easily downloadable by regular people, like a 10-year old who has installed an IM client, or a 70-year old who has downloaded the latest version of a browser, i.e., just download an installation file and then click to install in the relatively standard manner in which Windows apps are installed.
    What I am definitely trying to avoid is making the user go to Sun's Java distribution website, which is written by computer geeks for computer geeks. If a potential user sees that, they'll get confused, give-up, and I'll have lost a potential user.. Since a Swing application that is developed and tested using an earlier version of the JRE won't necessarily work with a later version, I can't make the assumption that as long as the latest JRE is installed on the user machine, everything is fine. As far as I can tell, I need to download a self-contained version of the JRE that I developed with in order to guarantee that the app will run as expected. I also don't want the user to have to download a 15 Mb 1.5 JRE, or the purported 50 Mb 1.6 JRE just to be able to run my little program. (I'm really starting to see why there are no popular Java desktop apps.)
    So my question is - if I compile my application down into machine code from binary code, does anyone know if can I get away with running it with a stripped-down JRE? I'm wondering if I can get rid of parts of the JRE that deal with things like interpreting bytecode, networking or database access, none of which I need to worry about. Sun's legal department might not like this, but is this at all technically feasible? I'm actually happy to hear about any ideas regarding shrinking the size of the distribution. Thanks.

    I voted for the enhancement request. It is almost exactly what I am concerned with.
    I am a big fan of Excelsior Jet. I tried out the free version about a year-and-a-half ago, and was pretty happy with it. It was actually the only machine-code compiler I tried out of several that worked. If I ever get to the point where I can start selling my app, I expect that I'll use it. I've been checking the website every so often since then, and reading about the next version, where a JRE can be included in the distribution. That helped spark my original question. While the worry about making sure my application had the right JRE version will be solved, it still bugs me that I have to ship so much unnecessary JRE code. (I blame Sun for that, not Excelsior Jet.) I was wondering if it was at all technically feasible to strip out the unnecessary code, irrespective of the legal issues. When compiled to byte-code, my program is under 1 MB. When I compiled it to machine code under JDK 1.4, it was about 5 MB. I imagine that compiling to machine-code with the included 1.5 JRE, after compression, will result in a size in the 15-20 MB range. And this after refactoring my program to where it's about 1/3 it's original size. I'm really worried about the direction this is going, and I don't even want to think about what including the 1.6 JRE will require.
    Where did you read that I've been programming Java since '97. I was a contractor at Sun between 1995 and 1997, and started working on Java 1.0 apps back then, but I don't ever remember mentioning that. If you asked because you're thinking I should know more about JVM/JRE issues, you're probably right, but I focus almost exclusively on higher-level application and GUI/Graphics issues. The deep-down Java stuff makes me break out into a cold-sweat.

  • Before, when I typed an http address in my hotmail account, it would be highlighted; since I got firefox, it is NOT highlighted. How can I get firefox to highlight an http address when I type it?

    The above say it all:
    Before, when I typed an http address in my hotmail account, it would be highlighted; since I got firefox, it is NOT highlighted. How can I get firefox to highlight an http address when I type it?

    Do you mean to create a clickable hyperlink while composing a new mail?
    Just above the textarea that you use to enter the message text there is usually a button bar with buttons to add text formatting like Bold and Italic.<br />
    That toolbar may also have a button to turn a text link into a clickable hyperlink (look for a chain like button).<br />
    You can select the text and click that button to turn the link into a clickable hyperlink.<br />
    If you can't find the button then hover them all to check the tooltip of each.
    * Make Link - https://addons.mozilla.org/firefox/addon/make-link/

  • How can I print a booklet without a white outline around the border?

    How can I print a booklet without a white outline around the border? I'd like the front page to be covered entirely.

    You either need a borderless printer, or you have to print on oversize paper and trim off the bleed.

  • I have an IPone 4, there is an add video for Capital one that keeps coming up on its own... ive deleted my history and cookies and this video keeps taking over my phone. how do i get rid of it? the video is of a man with a puppet and the puppet is singing

    i have an IPone 4, there is an add video for Capital one that keeps coming up on its own... ive deleted my history and cookies and this video keeps taking over my phone. how do i get rid of it? the video is of a man with a puppet and the puppet is singing a song while he is checking his phone. how do i get rid of it????

    If it happens again the make sure that you aren't suppressing website colors.
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    *https://support.mozilla.org/kb/Options+window+-+Content+panel
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • How do I get rid of BTFON from the service provider as it takes over everything??

    How do I get rid of BTFON from the service provider as it takes over everything??

    No idea what BTFON is or what "service provider" you mean, or what you mean by saying that it "takes over everything".  Is this a wireless network that you wish to stop connecting to?  If so, open System Preferences, click Network, then select AirPort, then click the Advanced button, then select the AirPort tab.  In the list that appears, select BTFON and click the '-' button.
    If that's not what you're talking about, you'll need to be more specific.

  • How can i get my car to change the track when i am listening to the music on my phone through the line-in?

    how can i get my car to change the track when i am listening to the music on my phone through the line-in? is there a app i can download so it will recognize it? i have a vauxhal astra and the controls are on the steering wheel

    First question is how old is Astra and you are in UK ( well you must be to have a Vauxhall)
    Normally the Radio only has a line in socket  to allow sound
    You have two choices here either a simple cable with a 3.5mm Headphone plus at each end
    or a cable with the headphone plug to place in car's line in plug and a wide Apple socket to fit the base of your iPhone This allegedly gives better sound but  you have to control the iPhone for music selection
    The equipment you need to control the iPhone from the Steering Wheel controls ,which I suspect currently handles radio /Cd  tracks /stations ,is much more complicated it will have to be integrate with the Factory Fitted  radio
    and designed to manage the S/Wheel  controls and translate to the iPhone .
    Fitted into back of radio etc etc
    If car is a recent Vauxhall there may be a kit available from them .but will not be cheap
    Many imponderables you did not give much away in your OP

  • What can I get rid off to clear the most space on my iPhone 4?

    What can I get rid off to clear the most space on my iPhone 4?

    Photos and videos usually take a lot of space. You can import them from the Camera Roll to a computer and delete them all from the phone or keep some if desired. If you delete and later decide you want some of them back on the phone you can sync them back via iTunes. Instructions for importing from the phone to the computer: http://support.apple.com/kb/ht4083

  • HT4526 I have difficulty in hearing conversation around the table when many are speaking. Can I put my Iphone 4 3G in the centre of the table and tune it to my hearing aid to join in the converstion?

    I have difficulty in hearing conversation around the table when many are speaking. Can I put my Iphone 4 3G in the centre of the table and tune it to my hearing aid to join in the converstion?

    There are hearing aids that support a BlueTooth connection to a phone. However, to make that work, you'd need to put someone elses phone in the middle of the table, then call it from your phone which you had connected to your aids using BT. I can't imagine that the quality of a call over speaker phone would really be good enough to help, though.
    Best of luck.

Maybe you are looking for

  • Iphone 4 calendar problem

    hi! its my first day using my iphone4, and i have a little problem, please help me. i ve written some events in my calendar, and they have been deleted, just after i stepped to another month.so for example i wrote an event to dec 24th, and it stayed

  • Kernel panic (solved) -- VIA chip M/Board

    I am using a custom kernel but once in awhile I tried getting the official kernel (2.6.18.x) to work with mkinitcpio but no success. I tried all hints posted in forum related to "kernel panic". The error was always same: EIP:[<c024b42d>] acpi_hw_leve

  • Receiving Process

    Hello All, I am trying to integrate EBS with other applications to complete receiving process. I have brought in data into two interface tables rcv_transactions_interface and rcv_headers_interface. I want to know is there any import process that I ca

  • WLS 11g, define foreign JMS server

    Hi, I want to define JMS server on my server A and set on this A JMS server foreign destination to the JMS server B. On server A i defined: - JMS server and set target - JMS modules (set subdeployment, Connection Factory, Uniform Distributed Queue, J

  • Preload FileCache depricated in 8.52. what is his replacement/ alternative?

    Hi, I noticed that PreloadFileCache is deprecated in tools 8.52. We did make use and benefitted this feature uptill peopletools 8.50. Does anyone know what the replacement/ alternative is? Detlev