ExtJs Simple Data Writer
Ext.data.SimpleWriter facilitates create, update, and destroy (CRUD) actions between an Ext.data.Store and a server-side framework, like it would done using a default html form, e.g. Ext.data.SimpleWriter sends request as arrays.
To understand why and where Ext.override can be useful you can read this post which I liked most Ext.override – Monkey Patching Ext JS.
The problem that I’ve encountered is in closing all other menus when you click on Ext.form.DateField’s trigger button. Let’s see why it is happening. Continue reading »
This post is not about URL Rewriting. It is mostly about how to post mod rewrite sources on your blog. My blog is working on SyntaxHighlighter Evolved by Aleksey Gorbachev highlighter so I’ve wrote a simple extension for it. Continue reading »
After some researches, my friend posted a review for some Js frameworks (JavaScript UI framework comparison or Why I choose ExtJS & JQuery) we started to write out project mainly on ExtJs. So the first thing that needed very much and couldn’t find anywhere was the simplest combobox which default value I would gave from XML. At the process I found that Ext.data.XmlStore doesn’t have any parameter which shows is it loaded already or not. So the first I’ve extended it for my needs (taking namespace Ext.ux for example). Continue reading »
After installing Red5 you will have HTTP server on port 5080 (it is the default value, but you can change it during install). You can find there sample named Publisher. It uses Red5 sample application oflaDemo. In this post I’ll tell you how to write something simple like that sample. Continue reading »
First I’ve encountered this problem some days ago. In fact, this is not a problem. You just need too understand the situation. The stage property is an instance of Stage class and every Stage object has it, but only when it is added to stage with addChild() method. It means that we need to listen when has been added to stage our object. Continue reading »