-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from Adyen/develop
Release 6.5.0
- Loading branch information
Showing
27 changed files
with
662 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...outaddon/acceleratoraddon/web/webroot/WEB-INF/tags/responsive/billAddressFormSelector.tag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<%@ attribute name="supportedCountries" required="false" type="java.util.List" %> | ||
<%@ attribute name="regions" required="false" type="java.util.List" %> | ||
<%@ attribute name="country" required="false" type="java.lang.String" %> | ||
<%@ attribute name="tabindex" required="false" type="java.lang.String" %> | ||
<%@ taglib prefix="formElement" tagdir="/WEB-INF/tags/responsive/formElement" %> | ||
<%@ taglib prefix="address" tagdir="/WEB-INF/tags/addons/adyenv6b2ccheckoutaddon/responsive" %> | ||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> | ||
|
||
<div id="billingAdyenCountrySelector" data-address-code="${fn:escapeXml(cartData.deliveryAddress.id)}" data-country-iso-code="${fn:escapeXml(cartData.deliveryAddress.country.isocode)}" | ||
data-display-title="false" class="clearfix"> | ||
<formElement:formSelectBox idKey="address.country" | ||
labelKey="address.country" | ||
path="billingAddress.countryIsoCode" | ||
mandatory="true" | ||
skipBlank="false" | ||
skipBlankMessageKey="address.selectCountry" | ||
items="${supportedCountries}" | ||
itemValue="isocode" | ||
tabindex="${tabindex}" | ||
selectCSSClass="form-control"/> | ||
</div> | ||
|
||
<div id="adyenBillingAddressForm" class="billingAddressForm"> | ||
<address:billingAddressFormElements regions="${regions}" | ||
country="${country}" | ||
tabindex="${tabindex + 1}"/> | ||
</div> | ||
|
||
|
Oops, something went wrong.