I don't understand why it's not working do you have an idea why orderBy'-nbtickets' not working ?
<ul ng-repeat="item in customarray | orderBy:'-nbtickets' track by $index">
<li ui-sref="app.usersingle({id:item[0].id,iterate:1})" class="row organization">
<div class="col-md-2 classement text-center">{{$index+1}}</div>
<div class="name col-md-4 text-center">{{item[0].username}}</div>
<div class="col-md-2 total text-center">{{item[0].nbtickets}}</div>
<div class="col-md-2 maintenance text-center">{{item[0].tickmaintenance}}</div>
<div class="col-md-2 assistance text-center">{{item[0].tickassistance}}</div>
</li>
</ul>
in my controler i just do that:
$scope.customarray = data;
Here the array i display it by doing {{item}}(parse of my array which is preatty big)
[
{"username":"Eugenie Martin","tickassistance":4,"tickbug":0,"tickmaintenance":3,"nbtickets":7,"id":660302971,"tickets":[{"date":"2015-09-29T07:12:14Z","titre":"Changement date de clôture dossier Barbe Alain","status":"closed","tag":"maintenance"},
{"date":"2015-09-04T09:45:20Z","titre":"43325- NH DISTRIBUTION","status":"closed","tag":"assistance"},
{"date":"2015-08-20T06:18:04Z","titre":"TR: EURL NH DISTRIBUTION vous a envoyé un message depuis sa plateforme","status":"closed","tag":"assistance"},{"date":"2015-02-25T16:00:46Z","titre":"Votre demande au support sans suite","status":"closed","tag":"assistance"},
{"date":"2015-01-12T06:48:35Z","titre":"Bonjour,\n\nle cabinet AUFICOM aura un stand lors du...","status":"closed","tag":"assistance"},
{"date":"2014-12-18T09:48:38Z","titre":"ISACOMPTA","status":"closed","tag":"maintenance"},{"date":"2014-12-15T14:08:08Z","titre":"changement date de clôture","status":"closed","tag":"maintenance"}],
"monthly":[{"now11":0,"assist":0,"maint":0},
{"now10":0,"assist":0,"maint":0},
{"now9":1,"assist":1,"maint":0},
{"now8":2,"assist":1,"maint":1},
{"now7":0,"assist":0,"maint":0},
{"now6":0,"assist":0,"maint":0},
{"now5":0,"assist":0,"maint":0},
{"now4":0,"assist":0,"maint":0},
{"now3":0,"assist":0,"maint":0},
{"now2":0,"assist":0,"maint":0},
{"now1":0,"assist":0,"maint":0},
{"now":0,"assist":0,"maint":0}]},
[{"date":"2015-09-29T07:12:14Z","titre":"Changement date de clôture dossier Barbe Alain","status":"closed","tag":"maintenance","id":660302971,"name":"Eugenie Martin"},
{"date":"2015-09-04T09:45:20Z","titre":"43325- NH DISTRIBUTION","status":"closed","tag":"assistance","id":660302971,"name":"Eugenie Martin"},
{"date":"2015-08-20T06:18:04Z","titre":"TR: EURL NH DISTRIBUTION vous a envoyé un message depuis sa plateforme","status":"closed","tag":"assistance","id":660302971,"name":"Eugenie Martin"},
{"date":"2015-02-25T16:00:46Z","titre":"Votre demande au support sans suite","status":"closed","tag":"assistance","id":660302971,"name":"Eugenie Martin"},
{"date":"2015-01-12T06:48:35Z","titre":"Bonjour,\n\nle cabinet AUFICOM aura un stand lors du...","status":"closed","tag":"assistance","id":660302971,"name":"Eugenie Martin"},
{"date":"2014-12-18T09:48:38Z","titre":"ISACOMPTA","status":"closed","tag":"maintenance","id":660302971,"name":"Eugenie Martin"},
{"date":"2014-12-15T14:08:08Z","titre":"changement date de clôture","status":"closed","tag":"maintenance","id":660302971,"name":"Eugenie Martin"}]
];
Have you tried?
<ul ng-repeat="item in customarray | orderBy:'nbtickets':true track by $index">
There is a reverse option in angular orderBy which is the :true part above.
Have you tried orderBy:-item[0].nbtickets ?
i try to access items on my array, let me explain :
it returns me very good values when I print in my page twig
{{statistics}}
i have this result :
[{"today":[1,0],"lastmonth":[2,1],"todayWomen":[1,0],"lastmonthWomen":[2,1],"todayMen":[0,0],"lastmonthMen":[0,0],"todayUnique":[1,0],"lastmonthUnique":[1,1],"todayWomenUnique":[1,0],"lastmonthWomenUnique":[1,1],"todayMenUnique":[0,0],"lastmonthMenUnique":[0,0]}]
in my app.js
var statistics = [];
$http.get('/ajax/statistics').success(function(data){
angular.forEach(data, function(value,key){
if (value != "ok") {
statistics.push(value);
};
});
$scope.statistics = statistics
});
but when i try to access item by item with ng-repeat and $index it appears to me only the index elements 0
{% verbatim %}
{{statistics}}
<div ng-repeat="stat in statistics">
<h3>Les visites globales de l'établissement n° : {{$index}} !!</h3>
<li> Nombre de personnes qui ont visité aujourd'hui est : {{stat.today[$index]}} </li>
</div>
{% endverbatim %}
when i try with hard code it's ok
{% verbatim %}
{{statistics}}
<div ng-repeat="stat in statistics">
<h3>Les visites globales de l'établissement n° : {{1 or 0}} !!</h3>
<li> Nombre de personnes qui ont visité aujourd'hui est : {{stat.today[1 or 0]}} </li>
</div>
{% endverbatim %}
any help please
Can you provide an working example?
I tested a similar example out in plunkr, and it seems to work. Could not reproduce.
http://plnkr.co/edit/uPuD6xyVvpiSJJQUf9aS?p=preview
Using {{stat.today[$index]}}
EDIT 1:
Here is only 1 iteration, still works http://plnkr.co/edit/v81Gp5rmE3rVGQB1d1WK?p=preview
EDIT 2: Elements in array, here you go http://plnkr.co/edit/QiSoWPIzZj62E2jYdD9G?p=preview
I need to use a ng-repeat directive into an ui-gmap-window item but it does not work.
<ui-gmap-google-map center="search.map.center" zoom="search.map.zoom" draggable="true" >
<ui-gmap-marker ng-repeat="position in search.positions" idKey="position.name" coords='position.coords' options="title='{{position.name}}'" >
<ui-gmap-window ng-show="position.show" onclick="position.show = !position.show" closeClick="'closeClick'" ng-cloak isIconVisibleOnClick='true' >
<div ng-controller="InfoWindowInMarkerController">
<h4>{{position.name}}</h4>
<div ng-if="! position.isGroup">
<!-- code that display the information of a unique member -->
</div>
<div ng-else>
<p>{{position.isGroup ? "Veuillez voir ci-dessous les personnes associées en utilisant les filtres de recherche pour limiter à la ville souhaitée" : ""}}</p>
<!-- below the ng-repeat that didn't work -->
<div ng-repeat="p in position.persons">{{p}}</div>
<br><br><br><br>
<br>
</div>
</div>
</ui-gmap-window>
<!--<marker-label content="position.name" anchor="22 0" class="marker-labels"/>-->
</ui-gmap-marker>
Could you please tell me how to do ?
Please find below a link to the plunker that illustrate my problem :
http://plnkr.co/edit/EinFCPEsdhS94ssPHEF2?p=preview
Thanks in advance.
Sorry for the english, i'm french student :(
I would like create a comment system with AngularJS for a project.
I would like recover a value of an object who is in ng-repeat loop.
JSON : https://drive.google.com/file/d/0Bzj557dnogzOd0ZUMnZ1cWZLSFU/edit?usp=sharing
HTML :
<section ng-controller='AnnouncesCtrl' ng-show='!showActions' ng-swipe-left='showActions=true'>
<header class='header'>
<span class="return"><a href='#newAnnounce'>8</span>
</header>
<div class='loader' ng-show='loader'></div>
<section class='panel'>
<div ng-repeat='a in dept.announce' class='announces'>
<span class='title'>{{a.name}}</span>
<br/>
<span class="date">{{a.date}}</span>
<hr>
<span class="msg">{{a.desc}}</span>
<hr>
<div class="showrep" ng-click="show=true" ng-show='!show'>Montrer les réponses</div>
<div class="allrep" ng-show="show" ng-repeat='answer in a.answers'>{{answer}}<br/></div>
<div class="formrep">
<form ng-submit='addComments()'>
<input type='text' placeholder='Écrire une réponse'><input type='submit' ng-click='a.btn={{a.id}}' value='Répondre'>
</form>
</div>
</div>
</section>
JS :
function AnnouncesCtrl($scope,$http,$rootScope,$location){
$scope.getInfos=function(){
var dept="http://agence-pandor.fr/getAnnounces/index.php";
$scope.loader=true;
$http.get(dept)
.success(deptSuccess)
.error(function(){
$scope.loader=false;
alert('Impossible de récupérer le numéro étudiant. Veuillez vous reconnecter');
$location.url("/connexion"); // On redirige
})
}
deptSuccess=function(response){
$scope.loader=false;
$scope.dept=response;
}
$scope.getInfos();
$scope.addComments=function(){
alert($scope.dept.announce.btn);
}
}
Screenshot :
https://drive.google.com/file/d/0Bzj557dnogzOUDlfNWR3eEthQzA/edit?usp=sharing
I don't quite understand what your project is about (I don't know French). You are iterating over the array "announce" which is supposedly a property of "dept". When you type:
ng-repeat = 'a in dept.announce'
you are creating a temporary variable "a" in the scope that is meant for ng-repeat (like counter variable in a for loop).
If "btn" is supposed to be a unique value, then use:
ng-click = "btn = a.id"
or if "btn" is specific to each value of "a in announce", use:
ng-click = "btn[$index] = a.id";
You can get the value of btn in your JS file by using $scope.btn
I need help with skeleton # http://www.slutatnian.se/skolor/nosnas/
On the site there is a picture that is below the code and that works fine when im on a computer. But if im using a mobile device the picture will get on the bottom off the screen, and i want the picture to be after "Nösnäsgymnasiumet" on a mobile device but how do i do that?
(Don't mind the hotpink, im using it the see the columns)
here is the html code.
<div class ="container">
<div class="nosnastitel">
<div class="eleven columns offset by one alpha" style="background-color:hotpink">
<h3>Nösnäsgymnasiumet.</h3>
</div>
</div>
<div class="six columns offset-by-one " style="background-color:hotpink">
<div class="infonosnas">
<h4> Om Nösnäsgymnasiet </h4>
<h5> Utbildning för dig </h5>
<p> Nösnäsgymnasiet är en skola med stort utbildningsutbud, många möjligheter, kompetens och engagemang. Vi har som målsättning att du som elev skall känna dig trygg på vår skola och få en utbildning som ger dig en bra start för framtiden. </p>
<br/>
<h5> Gemenskap och trivsel </h5>
<p> Här finns något för alla!
Vi har ett stort utbud av högskoleförberedande program, yrkesprogram, introduktionsprogram, lärlingsutbildning och gymnasiesärskola.
Hos oss kan du förbereda dig för högskolestudier eller yrkesliv, utveckla dina estetiska förmågor eller inrikta dig inom bland annat ekonomi, data, teknik och media. </p>
<br />
<h5>Många valmöjligheter </h5>
<p>Nära hav och natur
Skolan ligger på det vackra västkusten i lummig grönska och med utsikt över Hakefjorden. Ett stenkast bort finns salta bad, naturstigar och friskvårdsanläggning med simhall och idrottsplats. </p>
<p>I skolans centrala del ligger administrationen och elevbiblioteket som är öppet varje dag. Det finns också ett elevcafé och två skolmatsalar. Med några minuters promenadväg från Stenungsunds centrum har du snabb tillgång till buss och tåg. </p>
</div>
</div>
<div class="four columns offset-by-five omega">
<div class="nosnasbild">
<img src="skola2.jpg" alt="nosnasbild" /> </a>
</div>
</div>
</div>
Solved it by adding two of the same picture but with different classes. After that I used I added
.nosnasbild img{
display: none;
}
in the CSS.
And the other I used as media query, and used
.nosnaspic img{
display: none;
}
It's not the most optimal solution but it works fine.