Colin Ramsay thinks that JavaScript and C# can be scarily similar as he shows an ExtJS example:
var win = new Ext.Window({
title: 'Order Viewer', layout: 'border',
width: 500, height: 500,
modal: true, resizable: false, closable: false, draggable: false,
items: [ frm, lst ]
});
win.on('render', function() {
load(5);
});
win.show();
C#:
This works well for ExtJS since it is written in a style that leads itself to this similarity. Colin also points out ExtSharp, a project that lets you write your Ext application in C#:
If you have better solution, just tell me !

 
0 comments:
Post a Comment