Created
February 6, 2012 00:30
-
-
Save tayfunoziserikan/1748569 to your computer and use it in GitHub Desktop.
ext js 4 dataview grouping
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ext.create('Ext.XTemplate', | |
| '<h1>Active Users</h1>', | |
| '<tpl for=".">', | |
| '<tpl if="active == true">', | |
| '<div class="users">', | |
| '<p>{name}</p>', | |
| '</div>', | |
| '</tpl>', | |
| '</tpl>', | |
| '<h1>Deactive Users</h1>', | |
| '<tpl for=".">', | |
| '<tpl if="active == false">', | |
| '<div class="users">', | |
| '<p>{name}</p>', | |
| '</div>', | |
| '</tpl>', | |
| '</tpl>' | |
| ); | |
| /* | |
| user data | |
| { | |
| "success":true, | |
| "data": [{ | |
| "id": 1, | |
| "email": "[email protected]", | |
| "name": "Sample User", | |
| "locale": "en", | |
| "time_zone": "Casablanca", | |
| "active": true | |
| },{ | |
| "id": 2, | |
| "email": "[email protected]", | |
| "name": "Sample User 1", | |
| "locale": "ru", | |
| "time_zone": "Casablanca1", | |
| "active": true | |
| },{ | |
| "id": 3, | |
| "email": "[email protected]", | |
| "name": "Sample User 2", | |
| "locale": "tr", | |
| "time_zone": "Casablanca", | |
| "active": false | |
| }] | |
| } | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment