By Vitaliy on September 20, 2015.
Today I've published new version of site with Bootstrap styles. Do you like it?Also I moved the execution of ExtJs demos to an iframe. Now it has no impact to other website styles.
By Vitaliy on July 11, 2015.
Today I have added "I like this" and "I dislike this" buttons for posts.
Also there is "Post views count" icon for each post.
By Vitaliy on July 03, 2015. ExtJS 5.0.0
This bug can be fixed by single css line: .x-form-text { display: inline; }
Js Code
Ext.onReady(function () {
Ext.widget({
title: 'Form',
xtype: 'form',
width: 400,
frame: true,
bodyPadding: 10,
items: [{
fieldLabel: 'Bug field',
xtype: 'textfield'
}, {
fieldLabel: 'Fixed field',
xtype: 'textfield',
fieldCls: 'fixed'
}],
renderTo: 'output'
});
});
By Vitaliy on September 26, 2014. ExtJS 5.0.0
Js Code
//app/view/login/Login.js
Ext.define("App.view.login.Login", {
extend: 'Ext.window.Window',
xtype: 'login',
requires: [
'App.view.login.LoginController',
'Ext.form.Panel'
],
controller: 'login',
bodyPadding: 10,
title: 'Login Window',
closable: false,
autoShow: true,
items: {
xtype: 'form',
reference: 'form',
items: [{
xtype: 'textfield',
name: 'username',
fieldLabel: 'Username',
allowBlank: false
}, {
xtype: 'textfield',
name: 'password',
inputType: 'password',
fieldLabel: 'Password',
allowBlank: false
}, {
xtype: 'displayfield',
hideEmptyLabel: false,
value: 'Enter any non-blank password'
}],
buttons: [{
text: 'Login',
formBind: true,
listeners: {
click: 'onLoginClick'
}
}]
}
});
By Vitaliy on September 25, 2014. ExtJS 5.0.0
See code below
Js Code
{
fieldLabel: 'Birthday',
bind: '{birthday:date("d.m.Y")}'
}