|
Lines 14-20
Link Here
|
| 14 |
$("#contactname, #contactfirstname") |
14 |
$("#contactname, #contactfirstname") |
| 15 |
.each(function () { this.type = 'text' }) |
15 |
.each(function () { this.type = 'text' }) |
| 16 |
.parent().find('span').remove(); |
16 |
.parent().find('span').remove(); |
| 17 |
$("#guarantorsearch").val("Set to Patron"); |
17 |
$("#guarantorsearch").val(_("Set to Patron")); |
| 18 |
}); |
18 |
}); |
| 19 |
$("#select_city").change(function(){ |
19 |
$("#select_city").change(function(){ |
| 20 |
var myRegEx=new RegExp(/(.*)\|(.*)\|(.*)\|(.*)/); |
20 |
var myRegEx=new RegExp(/(.*)\|(.*)\|(.*)\|(.*)/); |
|
Lines 129-135
Link Here
|
| 129 |
form.country.value = borrower.country; |
129 |
form.country.value = borrower.country; |
| 130 |
form.branchcode.value = borrower.branchcode; |
130 |
form.branchcode.value = borrower.branchcode; |
| 131 |
|
131 |
|
| 132 |
form.guarantorsearch.value = 'Change'; |
132 |
form.guarantorsearch.value = _("Change"); |
| 133 |
|
133 |
|
| 134 |
return 0; |
134 |
return 0; |
| 135 |
} |
135 |
} |
| 136 |
- |
|
|