How to set my own Default Css.

Hi,
I'm able to Change the CSS on selection of SelectOneChoice and binding to value to adf config file.
but initialy getting the ADF default CSS,How can set my one of my CSS file as Default.
IDE: JDeveloper 10.1.3.2
Please Suggest me.
Thanking You,
Bandaru.

Hi,
not really clear what you want to achieve. To change the look and feel of the application to not use ADF browser look and feel you need to write your own skin. See the developer guides for what skinning is and what it does
If what you mean is how-to switch the default skin upon start-up then this needs to be configured e.g. in a session variable (or wherever you read the current skin name from), which can be done e.g. in a servlet filter.
Frank

Similar Messages

  • How can i set my own default page when i enter my url

    whenever i key in my url, the index.html appears... how can i set my own default page instead?? thank u

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <welcome-fiile-list>
    <welcome-file>over.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    please see the above.
    i have saved my jsp files in the root dir of webapps. in c:/tomcat/webapps/root/web_inf/web.xml , the content of this web.xml is as shown above.... but it still dont work .... how i can i rectify this problem.
    really thanks a lot

  • How to set my own gui status when i use selection-screen

    how to set my own gui status when i use selection-screen command
    and
    how to set the names in the application tool bar when function keys are created

    Make sure that you do this in event "AT SELECTION-SCREEN OUTPUT".
    Run Txn ABAPDOCU and check 'DEMO_SEL_SCREEN_STATUS' for sample.
    Also check out following discussion -
    Selection Screen PF-STATUS
    Cheers,
    Sanjeev

  • HT201684 In Yosemite this no longer works, has anyone figured this out? How to set a custom default umask for all applications?

    In Yosemite this no longer works, has anyone figured this out? How to set a custom default umask for all applications?
    I've tried everything to get a custom umask set for all apps. It just seems impossible...
    Is there a replacement for launchd-user.conf?

    Please file a bug report: https://bugreport.apple.com
    I am sure this is something that got lost, like environment variables, in the Yosemite/iOS merger.

  • How to set my own Ranges in Charts

    Hi-
    I've just started playing with making charts in Numbers.
    When I select some cells and then ask Numbers to produce a chart it does so and sets it's own values for the Y-Axis.
    How can I set MY OWN values for the upper and lower limits (ie. 0 at the bottom, and, say, 1000 at the top, and not the 200 at the bottom and 800 at the top that it is has put in automatically.)
    Thanks!

    Hi Andrew,
    Here is a Scatter Plot. Data must be in Body Cells, not Header Columns or Header Rows.
    Click on the graph and Format Panel > Axis > Value (Y)
    Set Max and Min to what you want. You can also change the number of steps if you don't like the default.
    The procedure is slightly different for a Category Chart (all the other types except Bubble Chart).
    Good ideas in New From Template Chooser > Charting Basics.
    Regards,
    Ian.

  • How to set video size default for exporting?

    Hi,
    I use quicktime conversion to export video out of FCP. My question is how to set a default video size. Under the options I can change the video size to NTSC 720:480 4:3 (and other choices). How do I set that as the default? Everytime I close out of FCP, the setting revert back to compressor native, which is what I dont want.
    If anyone knows, please email me at [email protected]
    Thanks
    Greg

    You can't. Use Compressor and build a droplet to the exact specification you want, especially if you're going to be doing that format often.

  • HOW TO SET A ITEM DEFAULT VALUE  to today

    I have a item using select list and I like to set this item default value as
    today's date , such as "select to_char(sysdate,'YYYY-MM-DD') from dual"
    HTMLDB failed recongnize the default value, or throw error Error ERR-9132 Error in PLSQL expression for item default code, ...". I have tried each of 3 avaialable Default Value Types
    Per http://forums.oracle.com/forums/thread.jspa?messageID=443287, it is used to be doable, but the default value type (sql) is no longer avaialble in HTMLDB 2.0
    I would appreaciate it very much if anyone has successfully done this before, either set to today or current month

    Ching - Did you try a PL/SQL Expression using to_char(sysdate,'YYYY-MM-DD')?
    There have been no changes to the item default types available in HTML DB. The thread you referenced is for Oracle Portal, a separate and unrelated product.
    Scott

  • How to Set my own Character Set in DBMS_LOB Package

    Hello All
    A Very Good Morning.
    I am using DBMS_LOB.CONVERTTOCLOB To convert data in BLOB to CLOB.
    My Database Character set is AL32UTF8.
    I want to change that one to WE8ISO8859P15.
    In DBMS_LOB.CONVERTTOCLOB package there is a parameter BLOB_CSID.
    In the Documentation it is said that I can set this value to a desired Character set.
    But the value should be of Integer Type.
    How to set the Character Set conversion.
    Regards
    Madhu K

    To get the id you looking for run:
    select * from V$NLS_VALID_VALUES where parameter='CHARACTERSET';make sure your characterset is in there and then run:
    select NLS_CHARSET_ID('WE8ISO8859P15') from dual;This is the id or number you want to pass into the DBMS_LOB.CONVERTTOCLOB.

  • HOW TO SET MY OWN PF-STATUS

    HI ALL,
    My requirement is i have to set my own pf-staus.
    when i am using the function module RS_SET_SELSCREEN_STATUS it is not showing any pf-stus here.
    i am sending code below. nay body can change the code and resend it to me.
    selection-screen: begin of block b1.
    parameters : p_appln type zuser_secobjects-appln.
    parameters : p_user type zuser_secobjects-appln_user,
      if sy-dynnr eq 1000.
        call function 'RS_SET_SELSCREEN_STATUS'
             exporting
                  p_status  = 'SELK'
             tables
                  p_exclude = exclude
             exceptions
                  others    = 1.
      endif.
    thanks,
    maheedhar.

    hi,
    Try with the code below..
    Ensure that you have activated the pf-status of the program.
    report  z_13317_sdn.
    selection-screen: begin of block b1.
    parameters : p_appln type mara-matnr.
    parameters : p_user type marc-werks.
    selection-screen: end of block b1.
    data: begin of exclude occurs 0,
            func(10) type c,
          end of exclude.
    At selection-screen output.
    *    set pf-status 'SELK'.      <-- Comment this line
    if sy-dynnr eq '1000'.
    call function 'RS_SET_SELSCREEN_STATUS'
    exporting
    p_status = 'SELK'
    tables
    p_exclude = exclude
    exceptions
    others = 1.
    endif.
    Regards
    Sailaja.

  • How to set Firefox as default browser in Mac OS X via console

    I would like to set Firefox as default browser via the command line in Mac OS X. The goal is to enforce Firefox as default browser for all users of a Mac OS X system by means of a login script. I am also looking for a way to add Firefox to the user's dock from a login script.

    Launch Safari and open its preferences. You set the default browser there.
    Not very logical is it? I think a Microsoft plant came up with that one.
    John

  • How to set the system default file character encoding to UTF-8?

    Hi all. This is driving me nuts, on both my Windows box and Snow Leopard; I figure much more chance of finding the answer for OS X.
    My language and locale are set to Australian English. $LANG=en_AU.UTF-8
    However, as I believe is expected, OS X (and Windows for that matter) will create files by default with character encoding of Cp1252 (Latin-1). That is, the FILE encoding in the file metadata - the Byte Order Mark I believe. The file itself, not the characters written to it.
    This, in a word, bites. I don't want to be restricted to only ASCII by default, and it is causing me problems with certain software (a Firefox plugin) that creates text files, passing in UTF-8 encoded content, which is then mangled because the file encoding itself is still Cp1252. (I know, I've tested this by changing the file encoding manually and having it overwritten again by the plugin: works correctly.)
    As a simple example, just `touch somefile` from terminal creates a file in Cp1252 -- I'm obtaining that info by opening in jEdit by the way (anyone know of something better?).
    In other locales that are not English-based, I believe the default file encoding is UTF-8. But surely this can be controlled independently? There must be a system configuration value somewhere that specifies file encoding default. Can someone please tell me what it is?
    Thanks!

    However, as I believe is expected, OS X (and Windows for that matter) will create files by default with character encoding of Cp1252 (Latin-1). That is, the FILE encoding in the file metadata - the Byte Order Mark I believe. The file itself, not the characters written to it.
    Apps like TextEdit and Mail have settings that let you determine the encoding of text produced. The default would normally depend on the character content of the file, ranging from ASCII for basic English to Windows Latin-1 (Win 1252) or ISO Latin -1 (ISO 8859-1) to UTF-8 for other content.
    Win 1252 is not ASCII, but has twice the number of characters in the latter.
    Byte Order Mark is something totally different --it's a particular character used to signal certain encodings.
    http://en.wikipedia.org/wiki/Byteordermark
    As a simple example, just `touch somefile` from terminal creates a file in Cp1252 -- I'm obtaining that info by opening in jEdit by the way (anyone know of something better?).
    For what Terminal does and how to change it, it might best to post in the Unix forum:
    http://discussions.apple.com/forum.jspa?forumID=735
    For problems with a FireFox plugin, it might be good to ask on their own forums as well.

  • How to set my own icon for java frame ??

    I create a java class it extends JFrame. I want to change default icon on the left_top corner and using my own icon. It is a --.gif file. How to do it. When I try to modify it using setIconImage( Image image), I met problem. I cann't new Image("--.gif"). I don't know how to create a Image object using a string(file name). I try to use ImageIcon , but it is not image obj. Thanks. Gary

    According to the documentation setIconImage does the following: Sets the image to be displayed in the minimized icon for this frame. Not all platforms support the concept of minimizing a window.
    So,
    1) It does not change the icon in the top-left corner
    2) It does not work on all platforms.

  • Acer e700 acer nav how to set it as default naviation app

    Hello, How do I set the acer nav app as the default navigation app on my e700? Now google maps is always used and I really do not like it.  It always send me in weird routes and some how I am always driving a bit next to the roads.  My phone is on kitkat 4.4 and rooted if that is any help.    

    I often use an app called "All Motorhome Parkings" on the play store. Here you can locate a location you can go with your motor home and touch "route". It gives me 4 opens. 1: navigation (grayed out) 2: Sygic (which I do not have) 3: maps 4: Other When choosing "other" instead of maps it still opens Maps for navigation. The same goes for an app called "markplaats" a sort of ebay for the netherlands. (I think ebay even owns it) You can locate where the product you want to buy is located and tap a route button. When I touch the route button I get a pop up asking me how to open it. Chrome or Maps are the only options. Now maybe Igo (which I also have) might be an "alien" app but the Acer Nav app is installed by default on the phone. Why can I not choose this one for my navigation app. Now I always have to go through a lot of trouble not to use google for navigation and launch the app manually and enter the address. This seems very very very old fashioned and feels like some sort of sabotage from google to force people to use maps instead of somethings else. But surely more people have this problem or I am just not seeing how to fix this.         

  • How to set grayscale as default setting?

    I am trying to set my printer's (Brother MFC 9450 CDN) settings in the application print dialogue to grayscale and toner save mode as default/standard values, so that I would have to explicitly turn on color printing if required.
    The only way to do that which I have discovered so far would be by creating a new printing preset. But then each time I open the print dialogue again, the preset jumps back to "standard" and I have to choose the grayscale preset each time I print something.
    So is there a way of either modifying the "standard" preset or choosing a new preset as default preset? Any other solution?
    Any help much appreciated!

    When I select on 'Print' and click on the Presets, I can select Save, Save As, Rename, or Delete.
    Mine defaults to the last setting used. Although I don't have a Brother printer, it works the same way for any of the 3 printers I have installed, two USB and one wireless.
    (I'm on 10.6.4 now, but I don't think that setting changed from 10.5.8, because I just updated to Snow Leopard last week.)
    But just rename 'Standard' to something else, like 'Original Standard' (in case you want to get it back for some reason).
    In any case, if yours always defaults to 'Standard', then rename your 'Grayscale' setting to 'Standard'
    Let me know how that works.

  • How to set PDF file default display size through Report Writter 6i

    Anyone could help me, how to setup default display (magnification i.e 100% or 80%) for a pdf file generated by report writter 6i.
    Thanks
    Raj

    hi,
    regarding report, there is a dedicated report forum. you should post there.
    but answer for your question is form is nothing to do with the pdf generation. you can call the report from the as usual.
    In the report you should set the properties like
    destype to 'file'
    desname to 'path with file name'
    desformat to 'pdf'

Maybe you are looking for

  • How can you get your data back on i tunes

    Hi i am Justin, I have i phone and i have i tunes here is my problom. last night i formatted my HP windows 7 computer and i backed up my pictures and backed up i tunes witch i thoght i did becasue i backed it up on my external 500 MB hard drive and w

  • Error message - need urgent Help

    Hi, I need some help from you guys, because, when I run my project and try to execute some action, I always get this error message in the Embedded OC4J Server: forward:WEB-INF/page/S2EpisodiosTable not found on action:/S2EpisodiosTable Here is part o

  • My Iphones can not be read in itunes....tells me to restore iphone

    iPhone 4S and 5S does not work in itunes.  It works, then it doesn't work.  The 5S is brand new.  I restored my iphone 4S it worked, but the next day it didn't. I tried everything and can not get itunes to read our phones......is there a problem with

  • Add an option to replace the current slideshow content

    Currently, the content of a slideshow is only replaced when going straight from the sample images. Would it be possible to add a checkbox to force the new content to replace the current images, rather than append them? This would be really helpful wh

  • How to extract a subsstring in a shell script

    Hi, I need to extract a substring from a string in a shell script. Ideally using a regular expression, but a certain position (character n through n+4) would work in this case, too. I am fairly familiar with regular expressions, I just don't know the