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

Добавлена возможность изменения запроса в событии sendBefore #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ jQuery Kladr
*kladr_close_before* поля ввода.
* **close** *= function () {}* - закрыт список объектов. Доступно как событие *kladr_close*
поля ввода.
* **sendBefore** *= function (query) {}* - возникает перед отправкой запроса к сервису.
В параметре передаётся объект запроса. Доступно как событие *kladr_send_before* поля ввода.
* **sendBefore** *= function (query) { return query; }* - возникает перед отправкой запроса к сервису.
В параметре передаётся объект запроса. Возможно изменение объекта перед отправкой запроса.
Доступно как событие *kladr_send_before* поля ввода.
* **send** *= function () {}* - отправлен запрос к сервису. Доступно как событие *kladr_send*
поля ввода.
* **receive** *= function () {}* - получен ответ от сервиса. Доступно как событие *kladr_receive*
Expand Down
15 changes: 10 additions & 5 deletions kladr/js/kladr.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@

openBefore: null, // Вызывается перед открытием выпадающего списка
closeBefore: null, // Вызывается перед закрытием выпадающего списка
sendBefore: null, // Вызывается перед отправкой запроса сервису
sendBefore: function (query) { // Вызывается перед отправкой запроса сервису
return query;
},
selectBefore: null, // Вызывается перед выбором объекта в списке
checkBefore: null, // Вызывается перед проверкой введённого пользователем объекта

Expand Down Expand Up @@ -726,7 +728,8 @@

var query = getQuery(name);

if (!trigger('send_before', query)) {
query = trigger('send_before', query);
if (!query) {
close();
return;
}
Expand Down Expand Up @@ -908,7 +911,8 @@
query.withParents = false;
query.limit = 10;

if (!trigger('send_before', query)) {
query = trigger('send_before', query);
if (!query) {
ret(null, false);
trigger('check', null);
return;
Expand Down Expand Up @@ -1005,7 +1009,8 @@
query.withParents = false;
query.limit = 10;

if (!trigger('send_before', query)) {
query = trigger('send_before', query);
if (!query) {
changeValue(null, query);
return controller;
}
Expand Down Expand Up @@ -1171,7 +1176,7 @@
$input.trigger('kladr_' + event, obj);

if ($.type(get(eventProp)) === 'function') {
return get(eventProp).call($input.get(0), obj) !== false;
return get(eventProp).call($input.get(0), obj);
}

return true;
Expand Down