I all, I'm new to the ADF language and after a long search and failed tries, I have to ask how can I change a button layout - background, border, ... - using the CSS and the property "styleClass" of the ADF?

In my .jspx I have something like:

<af:commandButton action="#{backing_test.echoAction}" id="echo1"  text="Save 1" styleClass="commandButton.buttonSaveTest" />

The thing is, after opening firebug, I found out that instead of a regular button, I have an image!

Thanks for you help!

link|improve this question
Are you using ADF 10g or 11g? – Mark Robinson Nov 12 '10 at 18:00
You might be interested in this stack-exchange proposal. It's almost ready to begin beta, just needs a few more. – Victor T. Jan 19 '11 at 4:49
feedback

1 Answer

You can't rely on what generated HTML you'll get for a specific component in ADF. The best way to get your own look and feel is to implement your own 'skin', which extends one of those already provided by ADF (eg, 'blafplus', or 'fusion', the new default). You then CSS selectors for the component you want, eg

af|inputText::content {
         background-color: red;
}

Check out the following link to learn about skinning http://download.oracle.com/docs/cd/E17904_01/web.1111/b31973/af_skin.htm#BAJFEFCJ

The hosted demo is an excellent way of finding out how to skin specific components. Eg, for your command button, check out:

http://jdevadf.oracle.com/adf-richclient-demo/faces/components/skinningKeys/commandButton.jspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.