Posts

Showing posts with the label tab in salesforce

Menu in Visualforce | Tab Panel

Image
Visual Force <apex:page sidebar="false" showHeader="false" controller="gesdatas"> <style> .menu { background-color:#000; width:100px; color:#fff; background-image:none; border:none; height:30px; } .zx { border:1px solid #f50; background-color:#909090; } .active { background-color:#000; } .notactive { background-color:#a07dff; } </style>      <apex:tabPanel tabClass="zx" selectedTab="active" inactiveTabClass="notactive" >      <apex:tab name="Home" label="Home" id="one" styleClass="menu" title="home">      <h1>this is title</h1>      <p>This is Menu in SalesforceDeveloperspoint</p>      <p>This is Menu in SalesforceDeveloperspoint</p>     <apex:pageBlock >     <apex:pageblockTable value="{!datas}" var="da">        <apex:column value="{!da.id}"/>         <apex:colu