You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Bernd Bohmann (JIRA)" <de...@myfaces.apache.org> on 2008/05/14 10:17:55 UTC

[jira] Reopened: (TOBAGO-546) selectOneChoice should support coloring and images

     [ https://issues.apache.org/jira/browse/TOBAGO-546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bernd Bohmann reopened TOBAGO-546:
----------------------------------


> selectOneChoice should support coloring and images
> --------------------------------------------------
>
>                 Key: TOBAGO-546
>                 URL: https://issues.apache.org/jira/browse/TOBAGO-546
>             Project: MyFaces Tobago
>          Issue Type: Improvement
>          Components: Core, Themes
>    Affects Versions: 1.0.12
>            Reporter: Rainer Rohloff
>            Assignee: Bernd Bohmann
>             Fix For: 1.0.13
>
>
> Example:
> <html>
> <style>
> option.information, select.information {
> 	background-position:left middle;
> 	background-repeat:no-repeat;
> 	padding-left:17px;
> 	background-image: url(./information.gif);
> 	color: yellow;
> 	vertical-align:middle;
> }
> option.hinweis, select.hinweis {
> 	background-position:left middle;
> 	background-repeat:no-repeat;
> 	padding-left:17px;
> 	background-image: url(./hinweis.gif);
> 	color:blue;
> 	vertical-align:middle;
> }
> </style>
> <body>
> <select size="1" class="hinweis">
>   <option class="information" id="eintrag1">Eintrag 1
>   <option class="hinweis" id="eintrag2" >Eintrag 2
>   <option class="hinweis" id="eintrag3" >Eintrag 3
>   <option class="information" id="eintrag4" >Eintrag 4
>   <option class="information" id="eintrag5" >Eintrag 5
> </select>
> </body>
> </html>
> The API from SelectItem must then support markup:
> public SelectItem(Object value,
>                   String label,
>                   String description,
>                   String image,
>                   String markup)
> if "image" is set, then <option > can be rendered as 
>   <option class="hinweis" style="background-image=url('<image>')">Eintrag 3
> restrictions:
> * MS IE does not rendert the pictures - however the different colors.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.