Mobile.css and richmobile.css stylesheets in jDeveloper 11g release 1?

In reference to this blog post: [http://blogs.oracle.com/mobile/entry/new_adf_mobile_features_in]
Currently we're still working with jDeveloper 11g release 1, but I'm interested in taking advantage of the mobile styling. The blog post mentions the stylesheets are available for download from OTN but I was unable to find them.
Could someone provide a link for the stylesheets?
Thanks!

Thanks so much for the links :)
I should be able to work with those provided, however they're not the mobile and richmobile files that appear in release 2. Are those file available for download from anywhere?
As I said, I know they're not strictly necessary, but we will likely be moving to release 2 at some point during this project, and I'd like our mobile layouts to have their design configured consistently.

Similar Messages

  • Oracle JDeveloper 11g Release 2 (11.1.2.1.0) on HP UNIX  Release B.11.23

    Hi Friends,
    Please let us know wheteher Oracle JDeveloper 11g Release 2 (11.1.2.1.0) is certified / supported on HP UNIX (Itanium server) Release B.11.23
    (i could only see Other operating systems with Sun-certified JDK 1.6 Update 24 or later is supported on certifiction matrix in addition to windows/linux/mac)
    I don't find any installaer for thsi ? I could see only for windows/Linux and Generic. Do i ned to download generic one?
    I don't find Installation Document for this?
    Please provide me the same.
    Regards,
    DB

    Hi,
    don't know there is a certification for this platform. "Generic" however is the installer option for this platform. It requires you to have a certified Java SDK installed. JDeveloper runs on top of a JDK
    Frank

  • How to open and run existing project in jdeveloper 11g?

    I have downloaded a jsf project from a website. I want to run it. I am using jdeveloper. So I want to open that jsf project which is in my local drive in jdeveloper 11g and I want to run it.

    Hi,
    open JDeveloper and then point it to the ".jws" file of the application you downloaded
    Frank

  • How to work with Bangla in ADF (Jdeveloper 11g Release 2)

    Hi
    I am Jahid From Bangladesh. Recently I am working with ADF (Oracle Jdeveloper 11g). I am working with a project like newsroom service. I need to extract bangla and other language text from other site. So i need to work with Multiple language in ADF specially with Bangla. Can anybody help me specifically step by step. I am new in ADF just beginner.
    Thanks in advance.
    Jahid
    Analyst Programmer
    IBCS-PRIMAX (Bangladesh) Ltd.

    You application character set should be unicode
    this can help http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/af_global.htm#CHDGCAFI

  • Tutorial usage - JDeveloper 11g Release 2 on Windows Home Edition

    Hi,
    I have been running the tutorial - http://download.oracle.com/docs/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_1.html and I have gotten the samples to work but a strange phenomenon has occurred a couple of times. I run the program and all is fine. Then I close everything down and when I restart JDeveloper my CONNECTION code is no longer there. I can fix this by right-clicking Connections and re-adding the DB connection but this struck me as odd behavior.
    Is this a bug or am I doing something wrong.
    Thanks,
    Bob

    Thanks Frank!
    Since I was able to recreate the connection without affecting the program, its a good work around.
    I will be going through all of the tutorials, so, if I find anything else, is this the best place to report them?
    Thanks again,
    Bob

  • Error in my bean in jdeveloper 11g release 2

    hi i have this method ,am having error method getDBTransaction(). not found what could be the problem,i what this method in my bean
    protected void calproce(String stmt, Object[] bindVars) {
    PreparedStatement st;
    st = null;
    try {
    // 1. Create a JDBC PreparedStatement for
    st = getDBTransaction().createPreparedStatement("begin "+stmt+";end;",0);
    if (bindVars != null) {
    // 2. Loop over values for the bind variables passed in, if any
    for (int z = 0; z < bindVars.length; z++) {
    // 3. Set the value of each bind variable in the statement
    st.setObject(z + 1, bindVars[z]);
    // 4. Execute the statement
    st.executeUpdate();
    catch (SQLException e) {
    throw new JboException(e);
    finally {
    if (st != null) {
    try {
    // 5. Close the statement
    st.close();
    catch (SQLException e) {}
    Edited by: Tshifhiwa on 2012/05/03 1:35 PM
    Edited by: Tshifhiwa on 2012/05/03 11:09 PM

    yes i use ADF BC i have this class also,how can i link to my login button,mybe you can help me,so i must not use bean,now i undestand getDBTransaction is a method you call on an AM not on a VOso how can i use this method in impl class,i what when button press call the public void PerformSdmsLogon method
    package sms0000;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Fri Apr 27 16:50:46 CAT 2012
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class LogOnImpl extends ViewObjectImpl {
    * This is the default constructor (do not remove).
    public LogOnImpl() {
    * executeQueryForCollection - overridden for custom java data source support.
    protected void executeQueryForCollection(Object qc, Object[] params, int noUserParams) {
    super.executeQueryForCollection(qc, params, noUserParams);
    * hasNextForCollection - overridden for custom java data source support.
    protected boolean hasNextForCollection(Object qc) {
    boolean bRet = super.hasNextForCollection(qc);
    return bRet;
    * createRowFromResultSet - overridden for custom java data source support.
    protected ViewRowImpl createRowFromResultSet(Object qc, ResultSet resultSet) {
    ViewRowImpl value = super.createRowFromResultSet(qc, resultSet);
    return value;
    * getQueryHitCount - overridden for custom java data source support.
    public long getQueryHitCount(ViewRowSetImpl viewRowSet) {
    long value = super.getQueryHitCount(viewRowSet);
    return value;
    protected void callPerformSdmsLogon(String stmt, Object[] bindVars) {
    PreparedStatement st;
    st = null;
    try {
    // 1. Create a JDBC PreparedStatement for
    st = getDBTransaction().createPreparedStatement("begin "+stmt+";end;",0);
    if (bindVars != null) {
    // 2. Loop over values for the bind variables passed in, if any
    for (int z = 0; z < bindVars.length; z++) {
    // 3. Set the value of each bind variable in the statement
    st.setObject(z + 1, bindVars[z]);
    // 4. Execute the statement
    st.executeUpdate();
    catch (SQLException e) {
    throw new JboException(e);
    finally {
    if (st != null) {
    try {
    // 5. Close the statement
    st.close();
    catch (SQLException e) {}
    Edited by: Tshifhiwa on 2012/05/03 5:26 PM
    Edited by: Tshifhiwa on 2012/05/03 11:16 PM

  • Working with the CSS in JDeveloper 11g

    Hi All,
    I am working on the CSS of the JSF and the ADF Components in JDeveloper11g.
    When adding the components it is generating the css for those component dynamically .
    When seeing the CSS file Iam unable to understand for which component this particular css is getting affected.
    How can I get a clear Idea of how to work with the css of the JDeveloper 11g Components are there any jar files that are generating this css.
    Please help me out.
    Thanks
    Madhavi.

    Hi,
    the use of CSS hasn't change between JDeveloper 11 and 10.1.3. You have two options:
    1) create an external CSS file that uses ADF Faces skin selectors and configure it as a skin to ADF Faces
    2) Use the inlineStyle property of the components to customize the look and feel
    See 10.1.3 documentation:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html
    Frank

  • How to set File Encoding to UTF-8 On Save action in JDeveloper 11G R2?

    Hello,
    I am facing issue when I am modifying a File using JDeveloper 11G R2. JDeveloper is changing the Encoding of the File to System default Encoding (ANSI) instead of UTF-8. I have updated the Encoding to UTF-8 in "Tools | Preferences | Environment | Encoding" option and restarted the JDeveloper. I have also updated "Project Properties | Compiler | Character Encoding" option to UTF-8. None of them are working.
    I am using below version of JDeveloper,
    Oracle JDeveloper 11g Release 2 11.1.2.3.0
    Studio Edition Version 11.1.2.3.0
    Product Version: 11.1.2.3.39.62.76.1
    I created a file in UTF-8 Encoding. I opened it, do some changes and Save it.
    When I open the "Properties" tab using "Help | About" Menu, I can see that the Properties of JDeveloper are showing encoding as Cp1252. Is it related?
    Properties
    sun.jnu.encoding
    Cp1252
    file.encoding
    Cp1252
    Any idea how to make sure JDeveloper saves the File in UTF-8 always?
    - Sujay

    I have already done that. That is the first thing I did as mentioned in my Thread. I have also added below 2 options in jdev.conf and restarted JDeveloper, but that also did not work.
    AddVMOption -Dfile.encoding=UTF-8
    AddVMOption -Dsun.jnu.encoding=UTF-8
    - Sujay

  • Oracle JDeveloper 11g Handbook A Guide to Oracle Fusion Web Dev. (Tutorial)

    I am using Oracle JDeveloper 11g Release 2(11.1.2.1.0) with the above mentioned book. In the tutorial on page 639 of chapter 18 the instruction #11 says "... Select the searchEmployees-flow under the Web Content \ Page Flows node in the Application Navigator. Drag it onto the second facet of the af:panelSplitter that you had previously add to that page, and select *Region* from the context menu. ..." When I follow these instructions I get the following error:
    Cannot create a region from a task flow containing facelets fragments in a jspx page.
    I am quite frankly stuck and cannot proceed with the tutorial unless I can get past this error.
    Also, is it just me or is this text woefully out of date with the latest version of JDevelolper?
    Thanks

    jsf is the new extension that is using facelets as the underlying engine in JSF 2.0.
    That's what we recommend going forward.
    jspx is what was used in JSF 1.2 in JDeveloper 11.1.1.*
    We don't have a wizard that migrates jspx to jsf - so you can either create the new page from scratch or try and do some playing around with the header of the file to match the new format.

  • Where to put own JavaScript and CSS-Stylesheets in GlassFish ?

    Hi out there,
    we have some applications which are using external JavaScript libraries, CSS-Stylesheets and Images.
    On OHS we had a directory for those files which we aliases in dads.conf.
    Where do we have to put this directory when switching to GlassFish and Apex Listener ?
    Regards and thanks
    Markus

    Hi Markus,
    if you use the "regular" GlassFish, this shouldn't be a big issue. Just create a subdirectory in the GlassFish's docroot-directory for each alias you have now and copy the corresponding content into that directory. See "Copy Oracle Application Express Images" in the Listener documentation - the handling for other static content is similar to the handling for images.
    If you plan to test this with the Embedded Web Container (embedded GlassFish), this will not work that way, because you only have the fixed contexts for images, apex and the listener-internal functions.
    -Udo

  • Challenge popup menu,  css stylesheet and button in table component

    Hello, in my last post i put the code of an example of popup menu but the only thing that need to run was a cdata tag. But in the example i only can open and close the popup menu in the top and left location that previously set in the css stylesheet .
    1.- I need to create a popup menu that can be diplayed if i click on a button in a table component of creator
    2.- The menu must waits and let me select the opcion I choose with a click otherrewise
    3.- The menu must dissapear if i move the cursor mouse away of the menu,
    I really need somebody helps me faster as u can, and i apreciate ur help, tnks!

    The best thing to do would be to find an existing popup menu widget in a JavaScript library, like dojo (dojotoolkit.org). If you can't find an existing JavaScript widget that fulfills your needs, you can write your own. It won't be easy, but you can use Creator's Auto Complete Text Field's JavaScript as a model. If that is the case, look at both the JavaScript at http://sunapp2.whardy.com/AjaxSamples2/faces/static/META-INF/autocomplete/script.js and the HTML source of the page located at http://sunapp2.whardy.com/AjaxSamples2/faces/DemoAutoCompleteTextField.jsp which is a page that is part of the Creator AJAX component catalog (http://developers.sun.com/ajax/componentscatalog.jsp).

  • Loading an external CSS stylesheet

    I am new to Flash and trying to get an external CSS
    stylesheet to work correctly. I loaded the following sample code
    from the Adobe help files but the html text does not format
    correctly? If I add a StyleSheet object , then it will format just
    fine. The external CSS file is in the same directory as the SWF
    file and I'm not getting any error messages. Using IE7 and Flash
    Player 9.0.115....Any help would be much appreciated.

    you can use something like the following to make your code
    more eyeball friendly:

  • Can I apply one .css stylesheet to all of my linked word documents inside my RoboHelp8 HTML project?

    Hello all,
    I am on my fourthRoboHelp8 HTML project, after the other three crashed. I am a technical writer constructing my companies Policy and Procedures Guide. I am only 142 (word documents) and 9 (RoboHelp topics) into my project and there will be plenty more to come. I recently took Kevin Siegel's RoboHelp8 class where I determined that it would be best if I link all of my word documents inside of the Project Manager becuase I will be constantly updating these documents. I've searched around the Adobe Forums, talked to Kevin, and talked to my IT Department, but I cannot seem to find an answer for my problem.
    I have linked all of 142 word documents inside of the Project Manager, and all 142 word documents have their own .css stylesheet. I have assigned the default.css stylesheet (which I have assigned all of the proper formatting to headings 1-4 to match headings 1-4 inside of my Microsoft Word 2007 documents) under Project Settings under the Import tab. I also assigned this default.css stylesheet under WebHelp Pro. My understanding with applying the default.css stylesheet to these two places is that all of my word documents and topics should have this stylesheet applied to them.
    However, when I look at each individual linked word document the default stylesheet has not been assigned and the word document is still being dictated by its own stylesheet i.e. Credit.css. On my third project, before it crashed, I manually went through all 142 word documents in the Project Manager and assigned the default.css stylesheet to them. I did this by right clicking on the topic, under Appearance, I changed the stylesheet i.e. Credit.css to default.css and clicked apply. I was immediately prompted with the two options: "Preserve modifications to this file" or "Don't show me this message again." I tried both options. The first applied the default.css stylesheet and removed the Credit.css stylesheet, but when I made a change inside of my word document and updated it inside of the Project Manager none of my changes appeared. The second did not apply the default.css stylesheet and kept my Credit.css stylesheet applied to my word document. When I made a change inside of my word document and updated it inside of the Project Manager the change appeared.
    I talked about this to Kevin and he said that the individual stylesheet applied to each linked word document did not mean anything, essentially that by making the default.css stylesheet the dominant stylesheet under Project Settings under Import that the stylesheet would be applied to all of my linked word documents/topics. He also suggested that I make a change to the stylesheet like change the color of Heading 1 and link a new word document to see if it applied the changes. I tried doing this inside of my third project, but nothing changed.
    I would like to know if I can assign one stylesheet to all of my linked word documents before I get too far into the fourth project and have that project crash on me too. One of RoboHelp's appealing features is to apply one stylesheet to multiple topics, or in my case 142 word documents and 9 topics. I hope that I can apply one stylesheet to all of these linked word documents because having 142 individual stylesheets is unmanageable.
    Any help or suggestions would be greatly appreciated.
    Thank you,
    Roxxanne

    When a word document is imported into RoboHelp project, RoboHelp generates a separate stylesheet for each word document as each word document may have its own formatting styles. In a generic scenario, word documents may be brought from different sources and may have different styling. Hence, RoboHelp allows users to preserve different styling through sepearate stylesheets.
    However, for a different scenario like yours, RoboHelp allows users to override all the CSS and apply a single CSS to all the topics at the generation of output. As you have already mentioned that you have applied default.css in the WebHelp Pro SSL dialog, that should suffice and should meet your requirement of applying a single CSS to all the topics. You can verify the same at your end by linking few word files and generating the output with a single CSS applied in the SSL settings.
    Mayank

  • RoboHelp 10:Did Adobe change how RoboHelp 10 handles CSS stylesheets in the .htm files that are generated?

    I work on Java application that utilitzes the .chm and .jar file (which include the .htm files) to display our applications help documentation. We recently upgraded from RoboHelp 8 to RoboHelp 10. The .htm files that were generated with RoboHelp 8 display fine. However, the new .htm files generated by RoboHelp 10 seem to ignore the CSS stylesheets used. I compared one of the .htm files from RoboHelp 8 to the same .htm file in RoboHelp10. I did notice differences within the files. Can you tell me what the differences are, regarding the usage of CSS stylesheets, between RoboHelp 8 & RoboHelp 10?
    Thank you.

    You need to post a bug report to get Adobe's attention. This is a user to user forum. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    Not sure but I believe it may be a bug in the Microsoft Help Compiler over which Adobe have no control. Microsoft last updated in 2004. Good luck!
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Preview external css stylesheet

    I open two pages, both linked to the same external stylesheet
    .In design view, the first appears with the CSS stylesheet's specs,
    the other without. How do I set the second one so it appears too
    with the stylesheet specs?
    Thanks for the help.
    Mark

    Check and fix your link in the second page. There's something
    funky going on.

Maybe you are looking for

  • Audio doesn't work with Kanex iadapt 51 mini-displayport to HDMI adapter

    i am trying to connect my 2009 macbook pro to my HDTV using this adapter: http://kanexlive.com/products/item-id-3495.html which routes the audio from the headphone jack through the HDMI cable. i need to do this since the 2009 macbook pro doesn't supp

  • Field Catalogs in ALV

    Hi Friends, Please help me out, I am new to ABAP. Please anybody explain me the functionality of Field catalogs in ALVs? How many methods are there to pass data to ALVs, i.e., in how many ways? Hope u will help me.

  • Will the Iphone 5S transmit a digital signal to an Arcam DR Dock?

    I have a client who wants to use her Iphone 5S for music through her stereo system. She has a dedicated (DAC Bryston BDA2) I was going to get the Arcam DR Dock and run digital out to her Bryston. It sounds like the adapter for the Iphone 5S has a DAC

  • How to automatically subtotal data

    My spreadsheet has text data in columns A:D.  Data header row is 3.  Numerical values start in column E and may go out 2 months or 36 months.  I am currently manually formatting the reports.  I provide one report sorted  on Column A (Sales person Nam

  • Set up email sky

    Please if someone who may help may to set up Mail with another email address than @sky.com, under Sky Broadband. Cheers