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
| /** | |
| * This class is the main view for the application. It is specified in app.js as the | |
| * "mainView" property. That setting causes an instance of this class to be created and | |
| * added to the Viewport container. | |
| * | |
| * TODO - Replace this content of this view to suite the needs of your application. | |
| */ | |
| Ext.define('CardLayoutSample.view.main.Main', { | |
| extend: 'Ext.tab.Panel', | |
| xtype: 'mainView', |
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
| //-------------------------------------- | |
| // UI | |
| //-------------------------------------- | |
| /** | |
| * @class com.flexdevguy.view.FieldValidator | |
| * @extends Ext.Component | |
| * Form field validator | |
| */ | |
| Ext.define('com.flexdevguy.view.FieldValidator', { |
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
| /** | |
| * @class com.flexdevguy.views.CheckboxListSample | |
| * @extends Ext.Container | |
| * Description | |
| */ | |
| Ext.define('com.flexdevguy.views.CheckboxListSample', { | |
| extend: 'Ext.Container', | |
| title: 'ListView', | |
| xtype: 'checkboxlistsample', | |
| requires: [ |
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
| /** | |
| * @class com.flexdevguy.data.reader.KeyValue | |
| * @extends Ext.data.reader.Json | |
| * Key value json reader for store | |
| */ | |
| Ext.define('com.flexdevguy.data.reader.KeyValue', { | |
| extend: 'Ext.data.reader.Json', | |
| alias : 'reader.keyvalue', | |
| getRoot: function(data) { |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <!-- Label --> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| <SnippetType>SurroundsWith</SnippetType> | |
| </SnippetTypes> |
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
| var obj = { | |
| "containerIsArchived": "Null", | |
| "containerOrderNo": "26", | |
| "versionNum": "0", | |
| "versionnum": "01", | |
| "containerGlobalUniqueId": "Null", | |
| "containerIsTenantBased": "true", | |
| "containerCreatedBy": "user", | |
| "containerIsDeleted": "false", | |
| "containerTenantId": "292FEC76-5F1C-486F-85A5-09D88096F098", |