content top

Sencha Touch Extjs List, Sheet, Form and ajaxStore Tutorial

Today, We get little extra free time. So we decide to post (Extjs MVC List,Sheet,Form and ajax Store Tutorial) on our aswedo.net blog. In this post, we will carry u with Tutorial howthrough: Using Ext.List Using Ext.form.Form and Ext.Sheet Using ajax to Retrieve/Update/Delete/Insert data with PHP/MySQL Firstly, I will let you see the screenshot. If so, you can guess what it is! Item List Screenshot Add New Item...

Read More

Using Sencha Touch Ajax and PHP Send/Get json String (encode decode)

For this post, I will carry you walkthrough: (1) Extjs Ajax usage (2) Extjs/PHP decode/encode json (2.1) PHP Output json object (json encode) (2.2) Extjs json decode (2.3) Send json to server (2.4) PHP Receive json data (1)Extjs Ajax usage useful properties and function. method The default HTTP method to be used for requests. Note that this is case-sensitive and should be all caps (defaults to undefined; if not set but params are...

Read More

Extjs constructor and initComponent

The constructor is typically used to, among other things: pre-process the config object that’s passed when you Ext.create the object. declare events that you plan to fire set up instance level variables, do anything that’s needed to get the object set up as a basic object initComponent is usually used to, among other things: set up internal event listeners (things you want to know about for your own purposes, as opposed to...

Read More

Extjs NestedList Tutorial ( eazy way for nested )

Today, I got a idea to post Nestedlist tutorial under 15mins. Here is Preview ==> Firstly, we need three different files will host the pieces of our application: sencha-touch.css sencha-touch-debug.js app.js index.html If u don’t know where download link is for sencha touch.(“sencha-touch-debug.js” and “sencha-touch.css”) here is link Sencha Ok let’s go to index.html. what will happen in...

Read More

HTML5 SQLITE (JavaScript and SQLITE)

HTML5 supports client database (local storage – SQLITE). In this session, I will carry u walkthrough on how to: Create/Connect Database (SQLITE) Insert Record Retrieve Record (1) Create/Connect Database (SQLITE) To create a new database or to open a connection to an existing database you need to use the window.openDatabase method. var db = window.openDatabase(name, version, displayName, size); name – name of the...

Read More
content top