Thursday, October 27, 2011

Multiple Widget Effects in Ext GWT


Technology blog from Bangladesh

Multiple widgets effect in Ext Google web toolkit like Slide In and Slide Out Effects,Fade In and Fade Out Effects,Move Effects,Blink Effects,Reset Effects.

How this effects works here is video preview for you


Slide In and Slide Out Effects 
It like a combo box drop down menu behaviour


Fade In and Fade Out Effects

Fade In Will be open in from transparent to original widget and Fade out opposite to that
Move Effects

Keeps the widget move on the vertical direction
Blink Effects

Makes user highlighting like css blink
Reset Effects
 
Bring it back to the Original posistion

Resizable and Dragable widget Ext GWT


Technology blog from Bangladesh

Create Resizable and Dragable widget using Ext Google web toolkit.

Creating resizable widget is always useful for end user to play with widgets like our iGoogle and My Yahoo is all dragable and resizable widget allows user to customize by themselevs.

Real rendering widget before enduser customization

resizable widget
After user customization widgets looks like this.
Ext GWT Resized widget

Here is a sample code for you

Tool Tips using Ext Gwt - Sample Code


Technology blog from Bangladesh

Tool Tips is a used to provide the help information to make the user friendly for the end user We have different kinds of Tool tips in Ext Google web toolkit.
Tool TIps 2 Ext GWT 2.2.5 Explorer

  1. Basic - Only simple information displayed only if you hover your mouse to that button
  2. Closable - information displayed on your mouse hover with closable x button appear on the above of the information message and message will not closed until you click the x button
  3. Mouse Tracking - Where you mouse moves the message will move 
  4. Anchor - Its same like basic information but your message will provide an anchor to the information menu to the selected widget
  5. Custom - You can create it with your wish

Tool Tips Ext GWT 2.2.5 Explorer

Direct Drag, Proxy Drag and Constraint with EXT GWT


Technology blog from Bangladesh

Create Direct Drag ,Proxy Drag and Constraints with Ext Google web toolkit

Direct Drag: Its always be on the top of any widget and you can place this widget any where of the screen Proxy Drag: Its always beneath of any widget and you can place this widget any where of the screen Constraints: Its Vertical only you can drag and drop but cannot perform horizontal drag and drop


Direct and Proxy Drag Ext GWT 2.2.5 Explorer
Here is a sample code for you

Date Picker In Ext GWT Sample Code


Technology blog from Bangladesh

Create a Date Picker with Ext Google Web Toolkit . This Date picker come with very stylish and user friendly

Date Picker in Ext GWT

Monday, October 24, 2011

MySQL Tutorial Free - Index Page


Technology blog from Bangladesh

DBMS is known as Data Base Management System is used to store and retrieve the data.There are millions of application are running on the internet its all
depend on the database.

There are different kind of database are available on the internet and each database has it own unique specialization in that few are most popular like
SQL, MySQL, SQLite, PostgreSQL, Microsoft Access, SQL Server, FileMaker,DB2, Oracle and DBASE.

This Blog is going to give you the full tutorial on Mysql because its an open source database and it also performance good.

What Mysql can do for you?
 
  1. Execute queries against a database
  2. Retrieve data from a database
  3. Insert records in a database
  4. Update records in a database
  5. Delete records from a database
  6. Create new databases
  7. Create new tables in a database
  8. Create stored procedures in a database
  9. Create views in a database
  10. Set permissions on tables, procedures, and views









Creating a database query in Mysql


Technology blog from Bangladesh

CREATE and DATABASE is in build command for creating database and demo is database name and semicolon specifies the termination of the query line;

CREATE DATABASE demo;

After executing this query your database will be created to check whether your database is created or not

To check that type


SHOW DATABASES;

this will show what are all the databases have been created in your system.

After execution of creating database what kind of database will bee created.
Database charset - UTF8 and Database collation is utf8_general_ci this charset and collation will helps you to insert, update and delete the multilingual format of database