Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/jen labels slds #226

Merged
merged 9 commits into from
Dec 5, 2016
Prev Previous commit
Next Next commit
Fixing rerender of number of contacts on readonly fields
  • Loading branch information
jjbennett committed Dec 1, 2016
commit d37db7c67a31321684d5e5e38de5f7b51c50e018
4 changes: 2 additions & 2 deletions src/pages/SendBulkEmail.page
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@
<apex:outputLabel value="{!$Label.labelMassEditVolunteersStatus}" for="idStatus" styleClass="slds-form-element__label" />
<div class="slds-form-element__control">
<apex:inputField id="idStatus" styleClass="slds-select slds-input" value="{!hourStatus.Status__c}">
<apex:actionSupport immediate="false" event="onchange" rerender="idNumContacts" action="{!StatusChanged}" status="loading"/>
<apex:actionSupport immediate="false" event="onchange" rerender="idNumContacts,idNumContactsRead" action="{!StatusChanged}" status="loading"/>
</apex:inputField>
</div>
</div>
<div class="slds-form-element slds-p-top--small slds-p-horizontal--medium">
<div class="slds-form-element__control">
<label class="slds-checkbox">
<apex:inputCheckbox id="idUniqueContacts" value="{!fEmailContactsOnlyOnce}" html-aria-describedby="{!$Component.vfForm.uniqueContactsHelpText}">
<apex:actionSupport immediate="false" event="onchange" rerender="idNumContacts" action="{!StatusChanged}" status="loading"/>
<apex:actionSupport immediate="false" event="onchange" rerender="idNumContacts,idNumContactsRead" action="{!StatusChanged}" status="loading"/>
</apex:inputCheckbox>
<span class="slds-checkbox--faux"></span>
<apex:outputLabel for="idUniqueContacts" styleClass="slds-form-element__label" value="{!$Label.labelMassEmailVolunteersUniqueContacts}"/>
Expand Down