Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
bydooweedoo committed Jan 18, 2011
1 parent 61648fe commit d0a8056
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions README.md
Expand Up @@ -3,16 +3,46 @@ Ext.ux.AwesomeCombo

Features
--------
>Enable multi-selection (with configuration enableMultiSelection: true)
>Enable tooltip selection (with enableTooltip: true)
>Custom tooltip template (with tooltipTpl: new Ext.XTemplate())
>Clear button available by default
>Many new events
>
- Enable multi-selection (with configuration enableMultiSelection: true)
- Enable tooltip selection (with enableTooltip: true)
- Custom tooltip template (with tooltipTpl: new Ext.XTemplate())
- Clear button available by default
- Many new events

Documentation
-------------
>Available via /doc/
>Examples available via /examples/
>
- Available via /doc/
- Examples available via /examples/

Quick setup
-----------
First of all include css file as below into head tag:

<link rel="stylesheet" type="text/css" href="static/css/Ext.ux.AwesomeCombo.css" />

And then javascript files into body tag:

<script type="text/javascript" src="static/js/Ext.ux.PagingMemoryProxy.js"></script>
<script type="text/javascript" src="../static/js/Ext.ux.AwesomeCombo.js"></script>

Try:

{
xtype: "awesomecombo", // or new Ext.ux.AwesomeCombo({...})
anchor: "0",
emptyText: "select item(s)...",
fieldLabel: "Awesome Combo",
triggerAction: "all",
enableMultiSelect: true,
store: [
['1', 'One'],
['2', 'Two'],
['3', 'Three'],
['4', 'Four']
]
}

Screenshot
----------
Expand Down

0 comments on commit d0a8056

Please sign in to comment.