[CLOSED] Ext.Net to ExtJS migration

  1. #1

    [CLOSED] Ext.Net to ExtJS migration

    Hi,
    For performance improvement on a page, we want to migrate existing EXT.NET UI into EXTJS.
    E.g:
    Sample EXT.NET UI on the current page
    <ext:Store runat="server" ID="storeContactType">
        <Model>
            <ext:Model ID="user" runat="server">
                <Fields>
                    <ext:ModelField Name="Value" type="string" />
                    <ext:ModelField Name="Display" type="string" />
                </Fields>
            </ext:Model>
        </Model>
    </ext:Store>
    Want to change the above existing code into EXTJS like below
    // Set up a model to use in our Store
     Ext.define('User', {
         extend: 'Ext.data.Model',
         fields: [
             {name: 'Value', type: 'string'},
             {name: 'Display',  type: 'string'}
         ]
     });
    //Assign the model to store
     var myStore = Ext.create('Ext.data.Store', {
         model: 'User',
         storeId: 'storeContactType',
         autoLoad: false
     });
    Right now we are generating EXTJS code manually. Is there a (online/visualstudio)tool which can take EXT.NET UI code and generates an equivalent EXTJS script?
  2. #2
    Is there a (online/visualstudio)tool which can take EXT.NET UI code and generates an equivalent EXTJS script?
    Ha, yes, it's called Ext.NET. Best we can suggest is to take a look at the extjs script generated by Ext.NET. The finished extjs rendered to the page by Ext.NET should be exactly (or close to) what you require if you want to manually create the .js.

    Hope this helps.
    Geoffrey McGill
    Founder
  3. #3
    Yes, that helped. Thank you.

Similar Threads

  1. Migration document from Ext.Net
    By arjunrvasisht in forum 2.x Help
    Replies: 1
    Last Post: Dec 18, 2014, 7:54 AM
  2. Update Ext.Net from extjs 1.3 to extjs 4.2
    By Roomy in forum 2.x Help
    Replies: 2
    Last Post: Jul 23, 2013, 10:12 AM
  3. Replies: 1
    Last Post: May 15, 2013, 11:03 PM
  4. [CLOSED] Migration version from Ext.Net v1 to v2 changes
    By ViDom in forum 2.x Legacy Premium Help
    Replies: 7
    Last Post: Apr 25, 2013, 12:37 PM
  5. [CLOSED] Ext.Net 2.2 Migration Error
    By Tarun_Chand in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Apr 15, 2013, 11:18 AM

Posting Permissions