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

Как использовать функции valueFormat и labelFormat? #61

Open
krogal1985 opened this issue Aug 22, 2018 · 1 comment

Comments

@krogal1985
Copy link

krogal1985 commented Aug 22, 2018

default
При вводе одной строкой и выбранном городе необходимо выводить только улицы и дома, а вывод выполняется с индексом, регионом и городом есть ли способ отсечь? Как использовать функции valueFormat и labelFormat?

@krogal1985 krogal1985 changed the title RfrlabelFormat Как использовать функции valueFormat и labelFormat? Aug 22, 2018
@xsen
Copy link

xsen commented Feb 19, 2019

как то так
`
labelFormat: function (obj, query) {
if ( obj.parents )
{
let result = [];

                    obj.parents.forEach(function (item) {
                        if (  item.contentType != 'region' && item.contentType != 'cityOwner' && item.contentType != 'city' )
                        {
                            result.push(item);
                        }
                    });

                    result.push(obj);

                    return $.kladr.buildAddress(result);
                }
                return (obj.typeShort ? obj.typeShort + '. ' : '') + obj.name;
            }

`

еще вместо $.kladr.buildAddress я написал свою

`
buildAddress: function (objs) {
var lastIds = [],
address = '',
zip = '';

            $.each(objs, function (i, obj) {
                var name = '',
                    type = '',
                    j;

                if ($.type(obj) === 'object') {
                    for (j = 0; j < lastIds.length; j++) {
                        if (lastIds[j] == obj.id) {
                            return;
                        }
                    }

                    lastIds.push(obj.id);

                    name = obj.name;
                    type = obj.typeShort + '. ';
                    zip = obj.zip || zip;
                }
                else {
                    name = obj;
                }

                if (address) address += ', ';
                address += type + name;
            });

            return address;
        }

`

не уверен, что все сделал правильно, но работает как нужно.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants