/**
|
* Created by johnny on 15/2/21.
|
*/
|
function countryCustomFilter(itemLabel, filterValue) {
|
if (itemLabel == null || filterValue == null) {
|
return false;
|
}
|
if (itemLabel.toLowerCase().indexOf(filterValue.toLowerCase()) > -1) {
|
return true;
|
}
|
return false;
|
}
|
|
function openwin(url) {
|
var a = document.createElement("a");
|
a.setAttribute("href", url);
|
a.setAttribute("target", "_blank");
|
document.body.appendChild(a);
|
a.click();
|
}
|