ons-lazy-repeat で itemのidを編集したい
下記の※の箇所でidの値を編集したいのですが、記述方法がわかりません。
よろしくお願いします。
function funcRepeat($scope){
$scope.RepeatDelegate = {
configureItemScope: function(index, itemScope) {
itemScope.a = "a";
itemScope.b = "b";
※ここでid="xxx"の値を編集したい
}
};
};
<script>
ons.bootstrap()
.controller('RepeatController', funcRepeat);
</script>
<ons-list id="questionlist" ng-controller="RepeatController">
<ons-list-item id="xxx" class="list-item" ons-lazy-repeat="RepeatDelegate">
{{ a }}
{{ b }}
</ons-list-item>
</ons-list>