| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- App.View = (function(lng, App, undefined) {
- lng.View.Template.create('pending-tmp',
- '<li id="{{id}}">\
- <a href="#">\
- <span class="icon check"></span>\
- <strong>{{name}}</strong>\
- <small>{{description}}</small>\
- </a>\
- </li>'
- );
- lng.View.Template.create('list-tmp',
- '<li id="{{id}}">\
- <a href="#">\
- <span class="icon folder"></span>\
- <strong>{{name}}</strong>\
- <small>{{description}}</small>\
- </a>\
- </li>'
- );
- var todo = function(id) {
- lng.Data.Sql.select('todo', {id:id}, function(result){
- if (result){
- var data = result;
- lng.Data.Cache.set('current_todo', data);
- $('#txtEditName').val(data.name);
- $('#txtEditDescription').val(data.description);
- $('#txtEditName').val(data.name);
- lng.Router.section('view');
- }
- });
- };
- var returnToMain = function(message, icon) {
- lng.Sugar.Growl.notify(message, 'Tap to close', icon, 'error', 5);
- //lng.Sugar.Growl.show(message, icon, true);
- App.Data.refresh();
- setTimeout(function() {
- lng.Router.back();
- lng.Sugar.Growl.hide();
- }, 1000);
- };
- var list = function(container, template, rows) {
- lng.View.Template.List.create({
- container_id: container,
- template_id: template,
- data: rows
- });
- };
- return{
- todo: todo,
- returnToMain: returnToMain,
- list: list
- }
- })(LUNGO, App);
|