diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-12-02 18:26:11 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-12-02 18:26:11 +0100 |
commit | f8dc127ed15cfc9f7894e20fbdb69cac4a51ca9a (patch) | |
tree | 94f586a68f1838c0259c36131b56c2fe9f4948a1 /jQuery-PORTING.txt | |
parent | 1b49bfdc7bf5ebb78a89e93eb74dceb45c8b71cf (diff) |
Added an autocomplete based on jQuery-ui
Diffstat (limited to 'jQuery-PORTING.txt')
-rw-r--r-- | jQuery-PORTING.txt | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/jQuery-PORTING.txt b/jQuery-PORTING.txt index b5635cff..9506aff4 100644 --- a/jQuery-PORTING.txt +++ b/jQuery-PORTING.txt @@ -1,3 +1,5 @@ +JAVASCRIPT + Get element by id OLD: $('element_id') NEW: $('#element_id') // for the extended element @@ -79,4 +81,15 @@ NEW: $(element).focus(); --- Get element size OLD: element.getWidth(), element.getHeight() -NEW: element.width, element.height
\ No newline at end of file +NEW: element.width, element.height + + + +CONTROLS + +TAutoCompleter doesn't exists anymore, use TJuiAutoCompleter instead, upgrading the code: + * No more Frequency property. + * minChars property is now minLength + * only the ItemTemplate is supported for the Suggestions repeater; + * in the ItemTemplate you don't need to render the <li/> anymore, but only the content itself + * No Multiple selection support (by now, can be added in the future) |