You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
cptjack
Всем привет! В модели хранится массив, проход по массиву пытаюсь организовать следующим образом:
@{arrIndex = 0;}
for (var i = 0; i < parseInt('@listLength', 10) ; i++)
{
var myGeocoder = ymaps.geocode("Москва " + '@Model.orderList[arrIndex].AddressStreet' + " " + '@Model.orderList[arrIndex].AddressHome');
myGeocoder.then(function (res) { myMap.geoObjects.add(res.geoObjects); });
@{arrIndex = arrIndex + 1;}
}
но выполнение @{arrIndex = arrIndex + 1;} происходит всего 1 раз. Как избавиться от этой траблы?)
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.