Direkt zum Hauptbereich

Posts

Es werden Posts vom Mai, 2014 angezeigt.

CSS Switch in Visualforce Page

Es ist schon erstaunlich, was man alles mit CSS und ohne Einsatz von JavaScript und Grafiken erreichen kann. Das folgende Beispiel zeigt einen Switch eingebaut in eine Visualforce Seite. Auszug aus Visualforce Page -------------------------------------- <!-- BUTTONS --> < div style =" border : 0px solid blue ; width : 100% ; text-align : center ;" >   <!-********************************-->    <!-- SWITCH -->   <!-********************************-->    < apex:actionRegion >       < apex:outputPanel styleclass = "rss" rendered = "true" >          < input type = "checkbox" id = "inputVersion" class = "inputVersion" checked = "checked" />                < label for = "inputVersion" id = "swtitchLabel" >                   < i ></ i >                </ label >                 < apex:ac