Posts

Showing posts with the label salesforce operators

Operators in Salesforce

<apex:page > <apex:form id="frm"> <apex:sectionHeader title="Operators" subtitle="calc"/>     <apex:pageBlock id="pb" title="calc">         <apex:pageBlockSection columns="6" id="pbs">             <apex:inputText id="first"/>             <apex:selectList id="ope" size="1" onchange="addi()">                 <apex:selectOption itemLabel="+" itemValue="+"></apex:selectOption>                 <apex:selectOption itemLabel="-" itemValue="-"></apex:selectOption>                 <apex:selectOption itemLabel="*" itemValue="*"></apex:selectOption>                 <apex:selectOption itemLabel="/" itemValue="/"></apex:selectOption>             </apex:selectList>             <apex:inputText id="second"/&g