Skip to content

Instantly share code, notes, and snippets.

View flexdevguy's full-sized avatar
🎯
Focusing

Gowtham Subbarayan flexdevguy

🎯
Focusing
View GitHub Profile
var obj = {
"containerIsArchived": "Null",
"containerOrderNo": "26",
"versionNum": "0",
"versionnum": "01",
"containerGlobalUniqueId": "Null",
"containerIsTenantBased": "true",
"containerCreatedBy": "user",
"containerIsDeleted": "false",
"containerTenantId": "292FEC76-5F1C-486F-85A5-09D88096F098",
@flexdevguy
flexdevguy / Xamarin.snippet
Created December 27, 2016 11:56
Visual Studio 2013 code snippets for Xamarin
<?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>
@flexdevguy
flexdevguy / KeyValue.js
Last active March 9, 2022 17:48
Extjs Key value json reader for store
/**
* @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) {
@flexdevguy
flexdevguy / CheckboxListSample.js
Created September 15, 2016 14:26
Extjs 6.0.2 ListView with Checkbox - Single and Multi selection
/**
* @class com.flexdevguy.views.CheckboxListSample
* @extends Ext.Container
* Description
*/
Ext.define('com.flexdevguy.views.CheckboxListSample', {
extend: 'Ext.Container',
title: 'ListView',
xtype: 'checkboxlistsample',
requires: [
@flexdevguy
flexdevguy / ValidationSample.js
Created September 15, 2016 08:40
Extjs Form Field Validation using View model links.
//--------------------------------------
// UI
//--------------------------------------
/**
* @class com.flexdevguy.view.FieldValidator
* @extends Ext.Component
* Form field validator
*/
Ext.define('com.flexdevguy.view.FieldValidator', {
@flexdevguy
flexdevguy / Main.js
Last active September 9, 2016 13:56
Extjs Card Layout Next Previous Navigation for Modern
/**
* 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',