-
Notifications
You must be signed in to change notification settings - Fork 0
mycoding/Ext-Core-for-NodeJS
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Author is mycoding Account page on Sencha forum http://www.sencha.com/forum/member.php?135053-Mycoding email:[email protected] icq:395712335 Skype:MycodingExtJS ExtNodeJS - framework for NodeJS on base of Ext Core and several classes of ExtJS. It is in developing. At the moment it is possible to do Templating of pages, sending mails and some basic tricks. I will try to do some samples. Samples with explanation are here (in Russian) http://javascript.ru/blog/mycoding/Ext-Core-dlya-NodeJS **Templating** var Ext = require('./extnodejs.js').Ext; Ext.init(this); var data = { name: 'Jack Slocum', kids: [{ name: 'Sara Grace', age:3 },{ name: 'Zachary', age:2 },{ name: 'John James', age:0 }] }; var tpl = new Ext.XTemplate( '<p>Name: {name}</p>', '<p>Kids: ', '<tpl for="kids">', '<tpl if="age > 1">', '<p>{name}</p>', '<p>Dad: {parent.name}</p>', '</tpl>', '</tpl></p>' ); var html = tpl.applyTemplate(data); console.log(html); **Sending Email** var Ext = require('./extnodejs.js').Ext; Ext.init(this); new Ext.Mail({ to: "[email protected]", from: "[email protected]", subject: "Knock knock...", body: "Who's there?", success:function(){ console.log('Success'); }, failure:function(err){ console.log('Error:'+err); } }).send(); **Sending responce to url** //Test var Ext = require('./extnodejs.js').Ext; Ext.init(this); new Ext.Ajax({ url: 'http://moc-081.ru/json.php', method:'GET', params: { foo: 'bar' }, success: function(data){ var obj = Ext.decode(data); console.log(obj); }, failure: function(){ console.log('failure'); } }).request();
About
ExtCoreNodeJS
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published