You need to sign in to do that
Don't have an account?

apex:support not working in IE
Hi,
I had implemeted an onchange functionality on a apex:inputField textbox, it worked perfectly fine in Firefox but is not working in IE version 6.0
Here is the piece of code
Can anyone please help me in solving this?
Thanks
Jina
I had implemeted an onchange functionality on a apex:inputField textbox, it worked perfectly fine in Firefox but is not working in IE version 6.0
Here is the piece of code
Code:
<p> <span style="padding :23px;"/> Contract Duration : <span style="padding :12px;"/> <apex:outputPanel > <apex:inputField id="duration" value="{!contract.ContractTerm}"/><span style="padding:2px;"/><apex:outputLabel value="Months"/> <apex:actionSupport event="onchange" action="{!calEndDate}" rerender="endDt"/> </apex:outputPanel></p> <p> <span style="padding :21px;"/> Contract End Date :<span style="padding :14px;"/> <apex:outputField id="endDt" value="{!contract.END_DT__c}"/></p> Controller /* This method calculates the End Date depending on the Contract Effective Date and Contract Duration */ public PageReference calEndDate() { Date dat = getContract().StartDate; Integer months = getContract().ContractTerm; if(dat != null && months != null) { contract.END_DT__c = dat.addMonths(months); } return null; }
Can anyone please help me in solving this?
Thanks
Jina
Message Edited by dchasman on 06-24-2008 09:28 AM