summaryrefslogtreecommitdiff
path: root/jQuery-PORTING.txt
diff options
context:
space:
mode:
Diffstat (limited to 'jQuery-PORTING.txt')
-rw-r--r--jQuery-PORTING.txt15
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)