From: Edward Date: Fri, 16 May 2014 04:48:33 +0000 (+0800) Subject: Merge branch 'master' of http://git.roojs.com:8081/roojs1 X-Git-Url: http://git.roojs.org/?a=commitdiff_plain;h=8bd785f84a37d98bb11f81c1afb3c904227085e0;hp=a6e5829a0da2646d404c01b2fd09f61931b6e0d2;p=roojs1 Merge branch 'master' of git.roojs.com:8081/roojs1 --- diff --git a/css-bootstrap/select2.css b/css-bootstrap/select2.css new file mode 100644 index 0000000000..ce6fd52e7e --- /dev/null +++ b/css-bootstrap/select2.css @@ -0,0 +1,646 @@ +/* +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 +*/ +.select2-container { + margin: 0; + position: relative; + display: inline-block; + /* inline-block for ie7 */ + zoom: 1; + *display: inline; + vertical-align: middle; +} + +.select2-container, +.select2-drop, +.select2-search, +.select2-search input { + /* + Force border-box so that % widths fit the parent + container without overlap because of margin/padding. + More Info : http://www.quirksmode.org/css/box.html + */ + -webkit-box-sizing: border-box; /* webkit */ + -moz-box-sizing: border-box; /* firefox */ + box-sizing: border-box; /* css3 */ +} + +.select2-container .select2-choice { + display: block; + height: 26px; + padding: 0 0 0 8px; + overflow: hidden; + position: relative; + + border: 1px solid #aaa; + white-space: nowrap; + line-height: 26px; + color: #444; + text-decoration: none; + + border-radius: 4px; + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #fff; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0); + background-image: linear-gradient(to top, #eee 0%, #fff 50%); +} + +.select2-container.select2-drop-above .select2-choice { + border-bottom-color: #aaa; + + border-radius: 0 0 4px 4px; + + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); + background-image: linear-gradient(to bottom, #eee 0%, #fff 90%); +} + +.select2-container.select2-allowclear .select2-choice .select2-chosen { + margin-right: 42px; +} + +.select2-container .select2-choice > .select2-chosen { + margin-right: 26px; + display: block; + overflow: hidden; + + white-space: nowrap; + + text-overflow: ellipsis; + float: none; + width: auto; +} + +.select2-container .select2-choice abbr { + display: none; + width: 12px; + height: 12px; + position: absolute; + right: 24px; + top: 8px; + + font-size: 1px; + text-decoration: none; + + border: 0; + background: url('../images/select2/select2.png') right top no-repeat; + cursor: pointer; + outline: 0; +} + +.select2-container.select2-allowclear .select2-choice abbr { + display: inline-block; +} + +.select2-container .select2-choice abbr:hover { + background-position: right -11px; + cursor: pointer; +} + +.select2-drop-mask { + border: 0; + margin: 0; + padding: 0; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 9998; + /* styles required for IE to work */ + background-color: #fff; + filter: alpha(opacity=0); +} + +.select2-drop { + width: 100%; + margin-top: -1px; + position: absolute; + z-index: 9999; + top: 100%; + + background: #fff; + color: #000; + border: 1px solid #aaa; + border-top: 0; + + border-radius: 0 0 4px 4px; + + -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop.select2-drop-above { + margin-top: 1px; + border-top: 1px solid #aaa; + border-bottom: 0; + + border-radius: 4px 4px 0 0; + + -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop-active { + border: 1px solid #5897fb; + border-top: none; +} + +.select2-drop.select2-drop-above.select2-drop-active { + border-top: 1px solid #5897fb; +} + +.select2-drop-auto-width { + border-top: 1px solid #aaa; + width: auto; +} + +.select2-drop-auto-width .select2-search { + padding-top: 4px; +} + +.select2-container .select2-choice .select2-arrow { + display: inline-block; + width: 18px; + height: 100%; + position: absolute; + right: 0; + top: 0; + + border-left: 1px solid #aaa; + border-radius: 0 4px 4px 0; + + background-clip: padding-box; + + background: #ccc; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee)); + background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%); + background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0); + background-image: linear-gradient(to top, #ccc 0%, #eee 60%); +} + +.select2-container .select2-choice .select2-arrow b { + display: block; + width: 100%; + height: 100%; + background: url('../images/select2/select2.png') no-repeat 0 1px; +} + +.select2-search { + display: inline-block; + width: 100%; + min-height: 26px; + margin: 0; + padding-left: 4px; + padding-right: 4px; + + position: relative; + z-index: 10000; + + white-space: nowrap; +} + +.select2-search input { + width: 100%; + height: auto !important; + min-height: 26px; + padding: 4px 20px 4px 5px; + margin: 0; + + outline: 0; + font-family: sans-serif; + font-size: 1em; + + border: 1px solid #aaa; + border-radius: 0; + + -webkit-box-shadow: none; + box-shadow: none; + + background: #fff url('../images/select2/select2.png') no-repeat 100% -22px; + background: url('../images/select2/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('../images/select2/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('../images/select2/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('../images/select2/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-drop.select2-drop-above .select2-search input { + margin-top: 4px; +} + +.select2-search input.select2-active { + background: #fff url('../images/select2/select2-spinner.gif') no-repeat 100%; + background: url('../images/select2/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('../images/select2/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('../images/select2/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('../images/select2/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-container-active .select2-choice, +.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} + +.select2-dropdown-open .select2-choice { + border-bottom-color: transparent; + -webkit-box-shadow: 0 1px 0 #fff inset; + box-shadow: 0 1px 0 #fff inset; + + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + + background-color: #eee; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to top, #fff 0%, #eee 50%); +} + +.select2-dropdown-open.select2-drop-above .select2-choice, +.select2-dropdown-open.select2-drop-above .select2-choices { + border: 1px solid #5897fb; + border-top-color: transparent; + + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); +} + +.select2-dropdown-open .select2-choice .select2-arrow { + background: transparent; + border-left: none; + filter: none; +} +.select2-dropdown-open .select2-choice .select2-arrow b { + background-position: -18px 1px; +} + +.select2-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +/* results */ +.select2-results { + max-height: 200px; + padding: 0 0 0 4px; + margin: 4px 4px 4px 0; + position: relative; + overflow-x: hidden; + overflow-y: auto; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +.select2-results ul.select2-result-sub { + margin: 0; + padding-left: 0; +} + +.select2-results li { + list-style: none; + display: list-item; + background-image: none; +} + +.select2-results li.select2-result-with-children > .select2-result-label { + font-weight: bold; +} + +.select2-results .select2-result-label { + padding: 3px 7px 4px; + margin: 0; + cursor: pointer; + + min-height: 1em; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.select2-results-dept-1 .select2-result-label { padding-left: 20px } +.select2-results-dept-2 .select2-result-label { padding-left: 40px } +.select2-results-dept-3 .select2-result-label { padding-left: 60px } +.select2-results-dept-4 .select2-result-label { padding-left: 80px } +.select2-results-dept-5 .select2-result-label { padding-left: 100px } +.select2-results-dept-6 .select2-result-label { padding-left: 110px } +.select2-results-dept-7 .select2-result-label { padding-left: 120px } + +.select2-results .select2-highlighted { + background: #3875d7; + color: #fff; +} + +.select2-results li em { + background: #feffde; + font-style: normal; +} + +.select2-results .select2-highlighted em { + background: transparent; +} + +.select2-results .select2-highlighted ul { + background: #fff; + color: #000; +} + + +.select2-results .select2-no-results, +.select2-results .select2-searching, +.select2-results .select2-selection-limit { + background: #f4f4f4; + display: list-item; + padding-left: 5px; +} + +/* +disabled look for disabled choices in the results dropdown +*/ +.select2-results .select2-disabled.select2-highlighted { + color: #666; + background: #f4f4f4; + display: list-item; + cursor: default; +} +.select2-results .select2-disabled { + background: #f4f4f4; + display: list-item; + cursor: default; +} + +.select2-results .select2-selected { + display: none; +} + +.select2-more-results.select2-active { + background: #f4f4f4 url('../images/select2/select2-spinner.gif') no-repeat 100%; +} + +.select2-more-results { + background: #f4f4f4; + display: list-item; +} + +/* disabled styles */ + +.select2-container.select2-container-disabled .select2-choice { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container.select2-container-disabled .select2-choice .select2-arrow { + background-color: #f4f4f4; + background-image: none; + border-left: 0; +} + +.select2-container.select2-container-disabled .select2-choice abbr { + display: none; +} + + +/* multiselect */ + +.select2-container-multi .select2-choices { + height: auto !important; + height: 1%; + margin: 0; + padding: 0; + position: relative; + + border: 1px solid #aaa; + cursor: text; + overflow: hidden; + + background-color: #fff; + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff)); + background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%); + background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%); + background-image: linear-gradient(to bottom, #eee 1%, #fff 15%); +} + +.select2-locked { + padding: 3px 5px 3px 5px !important; +} + +.select2-container-multi .select2-choices { + min-height: 26px; +} + +.select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} +.select2-container-multi .select2-choices li { + float: left; + list-style: none; +} +html[dir="rtl"] .select2-container-multi .select2-choices li +{ + float: right; +} +.select2-container-multi .select2-choices .select2-search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} + +.select2-container-multi .select2-choices .select2-search-field input { + padding: 5px; + margin: 1px 0; + + font-family: sans-serif; + font-size: 100%; + color: #666; + outline: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + background: transparent !important; +} + +.select2-container-multi .select2-choices .select2-search-field input.select2-active { + background: #fff url('../images/select2/select2-spinner.gif') no-repeat 100% !important; +} + +.select2-default { + color: #999 !important; +} + +.select2-container-multi .select2-choices .select2-search-choice { + padding: 3px 5px 3px 18px; + margin: 3px 0 3px 5px; + position: relative; + + line-height: 13px; + color: #333; + cursor: default; + border: 1px solid #aaaaaa; + + border-radius: 3px; + + -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #e4e4e4; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); + background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); +} +html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice +{ + margin-left: 0; + margin-right: 5px; +} +.select2-container-multi .select2-choices .select2-search-choice .select2-chosen { + cursor: default; +} +.select2-container-multi .select2-choices .select2-search-choice-focus { + background: #d4d4d4; +} + +.select2-search-choice-close { + display: block; + width: 12px; + height: 13px; + position: absolute; + right: 3px; + top: 4px; + + font-size: 1px; + outline: none; + background: url('../images/select2/select2.png') right top no-repeat; +} +html[dir="rtl"] .select2-search-choice-close { + right: auto; + left: 3px; +} + +.select2-container-multi .select2-search-choice-close { + left: 3px; +} + +.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover { + background-position: right -11px; +} +.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { + background-position: right -11px; +} + +/* disabled styles */ +.select2-container-multi.select2-container-disabled .select2-choices { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { + padding: 3px 5px 3px 5px; + border: 1px solid #ddd; + background-image: none; + background-color: #f4f4f4; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none; + background: none; +} +/* end multiselect */ + + +.select2-result-selectable .select2-match, +.select2-result-unselectable .select2-match { + text-decoration: underline; +} + +.select2-offscreen, .select2-offscreen:focus { + clip: rect(0 0 0 0) !important; + width: 1px !important; + height: 1px !important; + border: 0 !important; + margin: 0 !important; + padding: 0 !important; + overflow: hidden !important; + position: absolute !important; + outline: 0 !important; + left: 0px !important; + top: 0px !important; +} + +.select2-display-none { + display: none; +} + +.select2-measure-scrollbar { + position: absolute; + top: -10000px; + left: -10000px; + width: 100px; + height: 100px; + overflow: scroll; +} + +/* Retina-ize icons */ + +@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) { + .select2-search input, + .select2-search-choice-close, + .select2-container .select2-choice abbr, + .select2-container .select2-choice .select2-arrow b { + background-image: url('../images/select2/select2x2.png') !important; + background-repeat: no-repeat !important; + background-size: 60px 40px !important; + } + + .select2-search input { + background-position: 100% -21px !important; + } +} diff --git a/docs/files.html b/docs/files.html index e705640115..8c690484cf 100644 --- a/docs/files.html +++ b/docs/files.html @@ -2227,9 +2227,9 @@
- Documentation generated by Introspeciton Doc Generator undefined on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspeciton Doc Generator undefined on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on - JsDoc Toolkit on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + JsDoc Toolkit on Thu May 15 2014 18:24:48 GMT+0800 (HKT)
\ No newline at end of file diff --git a/docs/symbols/Array.html b/docs/symbols/Array.html index 3c7af8b598..7f6783b786 100644 --- a/docs/symbols/Array.html +++ b/docs/symbols/Array.html @@ -385,7 +385,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:09 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:39 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Date.html b/docs/symbols/Date.html index 29395a8d50..475ab5a395 100644 --- a/docs/symbols/Date.html +++ b/docs/symbols/Date.html @@ -1809,7 +1809,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Function.html b/docs/symbols/Function.html index 60a66639b8..507aa2af48 100644 --- a/docs/symbols/Function.html +++ b/docs/symbols/Function.html @@ -600,7 +600,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Number.html b/docs/symbols/Number.html index 83af3d46c7..f31929220b 100644 --- a/docs/symbols/Number.html +++ b/docs/symbols/Number.html @@ -267,7 +267,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Ajax.html b/docs/symbols/Roo.Ajax.html index 7f6fd01c90..2b3ed6a786 100644 --- a/docs/symbols/Roo.Ajax.html +++ b/docs/symbols/Roo.Ajax.html @@ -1455,7 +1455,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.BasicDialog.html b/docs/symbols/Roo.BasicDialog.html index cb0a45f127..4775e10f5b 100644 --- a/docs/symbols/Roo.BasicDialog.html +++ b/docs/symbols/Roo.BasicDialog.html @@ -3821,7 +3821,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.BasicLayoutRegion.html b/docs/symbols/Roo.BasicLayoutRegion.html index 950854f1d0..889709f661 100644 --- a/docs/symbols/Roo.BasicLayoutRegion.html +++ b/docs/symbols/Roo.BasicLayoutRegion.html @@ -2251,7 +2251,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.BorderLayout.html b/docs/symbols/Roo.BorderLayout.html index c84ccbd8f1..2f81a529e3 100644 --- a/docs/symbols/Roo.BorderLayout.html +++ b/docs/symbols/Roo.BorderLayout.html @@ -2227,7 +2227,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.BoxComponent.html b/docs/symbols/Roo.BoxComponent.html index dfd1a2a5dc..43f7ca5f2e 100644 --- a/docs/symbols/Roo.BoxComponent.html +++ b/docs/symbols/Roo.BoxComponent.html @@ -3236,7 +3236,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Button.html b/docs/symbols/Roo.Button.html index 2c2cc7e402..d07bb8b775 100644 --- a/docs/symbols/Roo.Button.html +++ b/docs/symbols/Roo.Button.html @@ -2641,7 +2641,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.CalendarPanel.html b/docs/symbols/Roo.CalendarPanel.html index e5e5249553..6f2982517d 100644 --- a/docs/symbols/Roo.CalendarPanel.html +++ b/docs/symbols/Roo.CalendarPanel.html @@ -2698,7 +2698,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.ColorPalette.html b/docs/symbols/Roo.ColorPalette.html index 2209140d05..a853defa0b 100644 --- a/docs/symbols/Roo.ColorPalette.html +++ b/docs/symbols/Roo.ColorPalette.html @@ -2551,7 +2551,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Component.html b/docs/symbols/Roo.Component.html index b5b1b6f0bb..304aa34a2a 100644 --- a/docs/symbols/Roo.Component.html +++ b/docs/symbols/Roo.Component.html @@ -2344,7 +2344,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.ComponentMgr.html b/docs/symbols/Roo.ComponentMgr.html index 93432b7bab..dd7651109c 100644 --- a/docs/symbols/Roo.ComponentMgr.html +++ b/docs/symbols/Roo.ComponentMgr.html @@ -446,7 +446,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.CompositeElement.html b/docs/symbols/Roo.CompositeElement.html index a794465fa1..c668a844e0 100644 --- a/docs/symbols/Roo.CompositeElement.html +++ b/docs/symbols/Roo.CompositeElement.html @@ -1184,7 +1184,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.CompositeElementLite.html b/docs/symbols/Roo.CompositeElementLite.html index ae473b1912..7b09f663ac 100644 --- a/docs/symbols/Roo.CompositeElementLite.html +++ b/docs/symbols/Roo.CompositeElementLite.html @@ -1190,7 +1190,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.ContentPanel.html b/docs/symbols/Roo.ContentPanel.html index 45eb00b200..87a64683a7 100644 --- a/docs/symbols/Roo.ContentPanel.html +++ b/docs/symbols/Roo.ContentPanel.html @@ -2472,7 +2472,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DDView.html b/docs/symbols/Roo.DDView.html index 36682d2115..ec3ba01c19 100644 --- a/docs/symbols/Roo.DDView.html +++ b/docs/symbols/Roo.DDView.html @@ -1036,7 +1036,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DatePicker.html b/docs/symbols/Roo.DatePicker.html index 3999b2ddb7..deb9c20434 100644 --- a/docs/symbols/Roo.DatePicker.html +++ b/docs/symbols/Roo.DatePicker.html @@ -3218,7 +3218,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DialogManager.html b/docs/symbols/Roo.DialogManager.html index f1983952a8..0c32737f0c 100644 --- a/docs/symbols/Roo.DialogManager.html +++ b/docs/symbols/Roo.DialogManager.html @@ -515,7 +515,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DomHelper.html b/docs/symbols/Roo.DomHelper.html index 16eb044d2e..7201e0ed79 100644 --- a/docs/symbols/Roo.DomHelper.html +++ b/docs/symbols/Roo.DomHelper.html @@ -942,7 +942,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DomQuery.html b/docs/symbols/Roo.DomQuery.html index 7f718d4fe1..5a974ed5cd 100644 --- a/docs/symbols/Roo.DomQuery.html +++ b/docs/symbols/Roo.DomQuery.html @@ -770,7 +770,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.DomTemplate.html b/docs/symbols/Roo.DomTemplate.html index e287993640..d4ab286412 100644 --- a/docs/symbols/Roo.DomTemplate.html +++ b/docs/symbols/Roo.DomTemplate.html @@ -1149,7 +1149,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Editor.html b/docs/symbols/Roo.Editor.html index 34a6af7053..a0880e1f25 100644 --- a/docs/symbols/Roo.Editor.html +++ b/docs/symbols/Roo.Editor.html @@ -3443,7 +3443,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Element.html b/docs/symbols/Roo.Element.html index 1ea9d694e1..a1138342d6 100644 --- a/docs/symbols/Roo.Element.html +++ b/docs/symbols/Roo.Element.html @@ -11154,7 +11154,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:40 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.EventManager.html b/docs/symbols/Roo.EventManager.html index 0b6b1ea77d..629b99124a 100644 --- a/docs/symbols/Roo.EventManager.html +++ b/docs/symbols/Roo.EventManager.html @@ -923,7 +923,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:10 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.EventObject.html b/docs/symbols/Roo.EventObject.html index 323b3b4f20..75e5c66347 100644 --- a/docs/symbols/Roo.EventObject.html +++ b/docs/symbols/Roo.EventObject.html @@ -1105,7 +1105,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Fx.html b/docs/symbols/Roo.Fx.html index 5f3d05af8c..8f1496e8ad 100644 --- a/docs/symbols/Roo.Fx.html +++ b/docs/symbols/Roo.Fx.html @@ -1876,7 +1876,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.GridPanel.html b/docs/symbols/Roo.GridPanel.html index d4a9fd4f78..980b079290 100644 --- a/docs/symbols/Roo.GridPanel.html +++ b/docs/symbols/Roo.GridPanel.html @@ -2520,7 +2520,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.HtmlEditorCore.html b/docs/symbols/Roo.HtmlEditorCore.html index 9df112b7b8..b36f6e4cbb 100644 --- a/docs/symbols/Roo.HtmlEditorCore.html +++ b/docs/symbols/Roo.HtmlEditorCore.html @@ -3412,7 +3412,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.JsonView.html b/docs/symbols/Roo.JsonView.html index eb4cd1b657..53b1e041e3 100644 --- a/docs/symbols/Roo.JsonView.html +++ b/docs/symbols/Roo.JsonView.html @@ -3499,7 +3499,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.KeyMap.html b/docs/symbols/Roo.KeyMap.html index 58383ca75c..a888b25a69 100644 --- a/docs/symbols/Roo.KeyMap.html +++ b/docs/symbols/Roo.KeyMap.html @@ -560,7 +560,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.KeyNav.html b/docs/symbols/Roo.KeyNav.html index d33c183b32..68cd2497de 100644 --- a/docs/symbols/Roo.KeyNav.html +++ b/docs/symbols/Roo.KeyNav.html @@ -453,7 +453,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Layer.html b/docs/symbols/Roo.Layer.html index ad780a5c73..45cf8406da 100644 --- a/docs/symbols/Roo.Layer.html +++ b/docs/symbols/Roo.Layer.html @@ -11298,7 +11298,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.LayoutDialog.html b/docs/symbols/Roo.LayoutDialog.html index 256c35e2bc..dabcfffa78 100644 --- a/docs/symbols/Roo.LayoutDialog.html +++ b/docs/symbols/Roo.LayoutDialog.html @@ -4056,7 +4056,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.LayoutManager.html b/docs/symbols/Roo.LayoutManager.html index c340653992..2d2b630482 100644 --- a/docs/symbols/Roo.LayoutManager.html +++ b/docs/symbols/Roo.LayoutManager.html @@ -1501,7 +1501,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.LayoutRegion.html b/docs/symbols/Roo.LayoutRegion.html index f2c22c462e..54b08f1402 100644 --- a/docs/symbols/Roo.LayoutRegion.html +++ b/docs/symbols/Roo.LayoutRegion.html @@ -3546,7 +3546,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.LoadMask.html b/docs/symbols/Roo.LoadMask.html index ac1ae34379..dda56ff692 100644 --- a/docs/symbols/Roo.LoadMask.html +++ b/docs/symbols/Roo.LoadMask.html @@ -453,7 +453,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Login.html b/docs/symbols/Roo.Login.html index f9622eb83a..fd80796739 100644 --- a/docs/symbols/Roo.Login.html +++ b/docs/symbols/Roo.Login.html @@ -4093,7 +4093,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.MasterTemplate.html b/docs/symbols/Roo.MasterTemplate.html index 179c4f0c07..e6ab3e92c4 100644 --- a/docs/symbols/Roo.MasterTemplate.html +++ b/docs/symbols/Roo.MasterTemplate.html @@ -1396,7 +1396,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.MessageBox.html b/docs/symbols/Roo.MessageBox.html index ebd7a24b8b..b5d5376dd9 100644 --- a/docs/symbols/Roo.MessageBox.html +++ b/docs/symbols/Roo.MessageBox.html @@ -1063,7 +1063,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.NestedLayoutPanel.html b/docs/symbols/Roo.NestedLayoutPanel.html index deb66d29e8..4eca2a9142 100644 --- a/docs/symbols/Roo.NestedLayoutPanel.html +++ b/docs/symbols/Roo.NestedLayoutPanel.html @@ -2520,7 +2520,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.PagingToolbar.html b/docs/symbols/Roo.PagingToolbar.html index ed7425695b..3b40b21ffb 100644 --- a/docs/symbols/Roo.PagingToolbar.html +++ b/docs/symbols/Roo.PagingToolbar.html @@ -1664,7 +1664,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.QuickTips.html b/docs/symbols/Roo.QuickTips.html index 46fb2e7575..089976a5c0 100644 --- a/docs/symbols/Roo.QuickTips.html +++ b/docs/symbols/Roo.QuickTips.html @@ -514,7 +514,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.ReaderLayout.html b/docs/symbols/Roo.ReaderLayout.html index cad54239a3..86358c5190 100644 --- a/docs/symbols/Roo.ReaderLayout.html +++ b/docs/symbols/Roo.ReaderLayout.html @@ -2153,7 +2153,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Resizable.html b/docs/symbols/Roo.Resizable.html index 430ece70c3..ccea624fe4 100644 --- a/docs/symbols/Roo.Resizable.html +++ b/docs/symbols/Roo.Resizable.html @@ -2188,7 +2188,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Shadow.html b/docs/symbols/Roo.Shadow.html index 1e138905fa..1ddfb08fc8 100644 --- a/docs/symbols/Roo.Shadow.html +++ b/docs/symbols/Roo.Shadow.html @@ -621,7 +621,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.SplitBar.AbsoluteLayoutAdapter.html b/docs/symbols/Roo.SplitBar.AbsoluteLayoutAdapter.html index b6e755f511..4f10afcb26 100644 --- a/docs/symbols/Roo.SplitBar.AbsoluteLayoutAdapter.html +++ b/docs/symbols/Roo.SplitBar.AbsoluteLayoutAdapter.html @@ -393,7 +393,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.SplitBar.BasicLayoutAdapter.html b/docs/symbols/Roo.SplitBar.BasicLayoutAdapter.html index bf7cf00c92..0f04eb02ec 100644 --- a/docs/symbols/Roo.SplitBar.BasicLayoutAdapter.html +++ b/docs/symbols/Roo.SplitBar.BasicLayoutAdapter.html @@ -376,7 +376,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.SplitBar.html b/docs/symbols/Roo.SplitBar.html index 40d3dfe982..524c67e0dd 100644 --- a/docs/symbols/Roo.SplitBar.html +++ b/docs/symbols/Roo.SplitBar.html @@ -1847,7 +1847,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.SplitButton.html b/docs/symbols/Roo.SplitButton.html index fb703a37b2..6a3ab8c419 100644 --- a/docs/symbols/Roo.SplitButton.html +++ b/docs/symbols/Roo.SplitButton.html @@ -2837,7 +2837,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:11 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.SplitLayoutRegion.html b/docs/symbols/Roo.SplitLayoutRegion.html index 53c01dac03..a263ba7ae1 100644 --- a/docs/symbols/Roo.SplitLayoutRegion.html +++ b/docs/symbols/Roo.SplitLayoutRegion.html @@ -3606,7 +3606,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:41 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.TabPanel.html b/docs/symbols/Roo.TabPanel.html index 29556a2825..98286ec1bf 100644 --- a/docs/symbols/Roo.TabPanel.html +++ b/docs/symbols/Roo.TabPanel.html @@ -2117,7 +2117,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.TabPanelItem.html b/docs/symbols/Roo.TabPanelItem.html index 56ccf7010d..277ea41f31 100644 --- a/docs/symbols/Roo.TabPanelItem.html +++ b/docs/symbols/Roo.TabPanelItem.html @@ -2060,7 +2060,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Template.html b/docs/symbols/Roo.Template.html index 085b21749c..a307c85063 100644 --- a/docs/symbols/Roo.Template.html +++ b/docs/symbols/Roo.Template.html @@ -1106,7 +1106,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.Button.html b/docs/symbols/Roo.Toolbar.Button.html index 79418be8a8..d200ab537a 100644 --- a/docs/symbols/Roo.Toolbar.Button.html +++ b/docs/symbols/Roo.Toolbar.Button.html @@ -2635,7 +2635,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.Fill.html b/docs/symbols/Roo.Toolbar.Fill.html index f9906c5ee2..d6687a348f 100644 --- a/docs/symbols/Roo.Toolbar.Fill.html +++ b/docs/symbols/Roo.Toolbar.Fill.html @@ -681,7 +681,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.Item.html b/docs/symbols/Roo.Toolbar.Item.html index aa38544002..e8d678c0b6 100644 --- a/docs/symbols/Roo.Toolbar.Item.html +++ b/docs/symbols/Roo.Toolbar.Item.html @@ -685,7 +685,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.Separator.html b/docs/symbols/Roo.Toolbar.Separator.html index 3cf413494d..09d23c5b4e 100644 --- a/docs/symbols/Roo.Toolbar.Separator.html +++ b/docs/symbols/Roo.Toolbar.Separator.html @@ -680,7 +680,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.Spacer.html b/docs/symbols/Roo.Toolbar.Spacer.html index 12a1287d3a..4f45545b0f 100644 --- a/docs/symbols/Roo.Toolbar.Spacer.html +++ b/docs/symbols/Roo.Toolbar.Spacer.html @@ -687,7 +687,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.SplitButton.html b/docs/symbols/Roo.Toolbar.SplitButton.html index cdeef49500..1e8fee243a 100644 --- a/docs/symbols/Roo.Toolbar.SplitButton.html +++ b/docs/symbols/Roo.Toolbar.SplitButton.html @@ -2825,7 +2825,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.TextItem.html b/docs/symbols/Roo.Toolbar.TextItem.html index c0c92ca462..644da6656c 100644 --- a/docs/symbols/Roo.Toolbar.TextItem.html +++ b/docs/symbols/Roo.Toolbar.TextItem.html @@ -691,7 +691,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.Toolbar.html b/docs/symbols/Roo.Toolbar.html index 2bc5ff67a3..9077306559 100644 --- a/docs/symbols/Roo.Toolbar.html +++ b/docs/symbols/Roo.Toolbar.html @@ -1384,7 +1384,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.TreePanel.html b/docs/symbols/Roo.TreePanel.html index c2400f0198..189780d2de 100644 --- a/docs/symbols/Roo.TreePanel.html +++ b/docs/symbols/Roo.TreePanel.html @@ -2478,7 +2478,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.UpdateManager.BasicRenderer.html b/docs/symbols/Roo.UpdateManager.BasicRenderer.html index b835c744c6..516a512e88 100644 --- a/docs/symbols/Roo.UpdateManager.BasicRenderer.html +++ b/docs/symbols/Roo.UpdateManager.BasicRenderer.html @@ -313,7 +313,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.UpdateManager.defaults.html b/docs/symbols/Roo.UpdateManager.defaults.html index f20c829a21..1cc6b627ac 100644 --- a/docs/symbols/Roo.UpdateManager.defaults.html +++ b/docs/symbols/Roo.UpdateManager.defaults.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.UpdateManager.html b/docs/symbols/Roo.UpdateManager.html index 6dbe7beee1..efad332742 100644 --- a/docs/symbols/Roo.UpdateManager.html +++ b/docs/symbols/Roo.UpdateManager.html @@ -1883,7 +1883,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.View.html b/docs/symbols/Roo.View.html index b5cd93974d..f0429ef0a9 100644 --- a/docs/symbols/Roo.View.html +++ b/docs/symbols/Roo.View.html @@ -2832,7 +2832,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.ViewPanel.html b/docs/symbols/Roo.ViewPanel.html index 7164fcea61..82668f2690 100644 --- a/docs/symbols/Roo.ViewPanel.html +++ b/docs/symbols/Roo.ViewPanel.html @@ -2520,7 +2520,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.XComponent#_tree.html b/docs/symbols/Roo.XComponent#_tree.html index 559d047229..78edcdac0c 100644 --- a/docs/symbols/Roo.XComponent#_tree.html +++ b/docs/symbols/Roo.XComponent#_tree.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.XComponent.event.events.html b/docs/symbols/Roo.XComponent.event.events.html index 3cb388f1c6..c853d0c274 100644 --- a/docs/symbols/Roo.XComponent.event.events.html +++ b/docs/symbols/Roo.XComponent.event.events.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.XComponent.html b/docs/symbols/Roo.XComponent.html index dda3ba5c19..5551882ecd 100644 --- a/docs/symbols/Roo.XComponent.html +++ b/docs/symbols/Roo.XComponent.html @@ -1726,7 +1726,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.XTemplate.html b/docs/symbols/Roo.XTemplate.html index 547fc74d3a..81aa8aa587 100644 --- a/docs/symbols/Roo.XTemplate.html +++ b/docs/symbols/Roo.XTemplate.html @@ -1098,7 +1098,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstarp.Toolbar.html b/docs/symbols/Roo.bootstarp.Toolbar.html new file mode 100644 index 0000000000..614ec1a3ce --- /dev/null +++ b/docs/symbols/Roo.bootstarp.Toolbar.html @@ -0,0 +1,1385 @@ + + + + + + + + + + + JsDoc Reference - Roo.bootstarp.Toolbar + + + + + + + + + + + + + + +
+ + + +
+ +
+ + + + + + + +

+ + Class Roo.bootstarp.Toolbar +

+ + + + + + + + + + + +
Package:Roo.bootstarp
Defined In: + + Roo/bootstrap/Toolbar.js. + +
Class:Toolbar
+ + + +
+ Basic Toolbar class. +
+ + + + +
+ Class Comments / Notes => + [Add Your comment/notes about this class] +
+ +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Config Options (Usually are also Properties)
OptionsDefined By
+ + + + + + + + + + + + + + + + + + + + + +
Public Properties - Has None
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Methods
MethodDefined By
+ + + + + + + + + + + + + +
Events - Has None
+ + + + + + + + + + +
+ + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:38:57 GMT+0800 (HKT) + Based on + JsDoc Toolkit +
+ + diff --git a/docs/symbols/Roo.bootstarp.html b/docs/symbols/Roo.bootstarp.html new file mode 100644 index 0000000000..bd68be8e7b --- /dev/null +++ b/docs/symbols/Roo.bootstarp.html @@ -0,0 +1,183 @@ + + + + + + + + + + + JsDoc Reference - Roo.bootstarp + + + + + + + + + + + + + + +
+ + + +
+ +
+ + + + + + + +

+ + Namespace Roo.bootstarp +

+ + + + + + + + + + + +
Package:Roo
Defined In: + + Roo/bootstrap/Navbar/Item.js. + +
Class:bootstarp
+ + + +
+ +
+ + + + +
+ Class Comments / Notes => + [Add Your comment/notes about this class] +
+ +
+ + + + + + + + +
+ + + + + + +
Config Options - Has None
+ + + + + + + + + + + + + + + + + + + + + + + + +
Public Properties - Has None
+ + + + + + + + + + + + + + + + + + + + +
Public Methods - Has None
+ + + + + + + + + + + + + + + +
Events - Has None
+ + + + + + + + + + +
+ + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:38:57 GMT+0800 (HKT) + Based on + JsDoc Toolkit +
+ + diff --git a/docs/symbols/Roo.bootstrap.Button.html b/docs/symbols/Roo.bootstrap.Button.html index 2e8a65263e..d3f786a1d9 100644 --- a/docs/symbols/Roo.bootstrap.Button.html +++ b/docs/symbols/Roo.bootstrap.Button.html @@ -3114,7 +3114,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.ButtonGroup.html b/docs/symbols/Roo.bootstrap.ButtonGroup.html index cfa21836a3..397cda5be3 100644 --- a/docs/symbols/Roo.bootstrap.ButtonGroup.html +++ b/docs/symbols/Roo.bootstrap.ButtonGroup.html @@ -2669,7 +2669,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Calendar.html b/docs/symbols/Roo.bootstrap.Calendar.html index db9dec95b6..b6ffdf6bb5 100644 --- a/docs/symbols/Roo.bootstrap.Calendar.html +++ b/docs/symbols/Roo.bootstrap.Calendar.html @@ -2884,7 +2884,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.CheckBox.html b/docs/symbols/Roo.bootstrap.CheckBox.html index 9f1b106866..3ec5f95f27 100644 --- a/docs/symbols/Roo.bootstrap.CheckBox.html +++ b/docs/symbols/Roo.bootstrap.CheckBox.html @@ -4733,7 +4733,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Column.html b/docs/symbols/Roo.bootstrap.Column.html index 776dd0322f..9ad01cd9d9 100644 --- a/docs/symbols/Roo.bootstrap.Column.html +++ b/docs/symbols/Roo.bootstrap.Column.html @@ -2669,7 +2669,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.ComboBox.html b/docs/symbols/Roo.bootstrap.ComboBox.html index afa61d93e4..4111e246d3 100644 --- a/docs/symbols/Roo.bootstrap.ComboBox.html +++ b/docs/symbols/Roo.bootstrap.ComboBox.html @@ -6815,7 +6815,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Component.html b/docs/symbols/Roo.bootstrap.Component.html index 884a213c7b..3dafd28a2c 100644 --- a/docs/symbols/Roo.bootstrap.Component.html +++ b/docs/symbols/Roo.bootstrap.Component.html @@ -2525,7 +2525,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Container.html b/docs/symbols/Roo.bootstrap.Container.html index 688a7b5002..25701f4f22 100644 --- a/docs/symbols/Roo.bootstrap.Container.html +++ b/docs/symbols/Roo.bootstrap.Container.html @@ -2729,7 +2729,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.DateField.html b/docs/symbols/Roo.bootstrap.DateField.html index 0644c961db..d056893e1b 100644 --- a/docs/symbols/Roo.bootstrap.DateField.html +++ b/docs/symbols/Roo.bootstrap.DateField.html @@ -4965,7 +4965,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Element.html b/docs/symbols/Roo.bootstrap.Element.html index ea79376e07..0922c7b6fe 100644 --- a/docs/symbols/Roo.bootstrap.Element.html +++ b/docs/symbols/Roo.bootstrap.Element.html @@ -2579,7 +2579,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Form.html b/docs/symbols/Roo.bootstrap.Form.html index 24585b0175..655478cc1c 100644 --- a/docs/symbols/Roo.bootstrap.Form.html +++ b/docs/symbols/Roo.bootstrap.Form.html @@ -3745,7 +3745,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Header.html b/docs/symbols/Roo.bootstrap.Header.html index 48d6f94888..23e5ecdd85 100644 --- a/docs/symbols/Roo.bootstrap.Header.html +++ b/docs/symbols/Roo.bootstrap.Header.html @@ -2579,7 +2579,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.HtmlEditor.html b/docs/symbols/Roo.bootstrap.HtmlEditor.html index c7c59832e5..9f4ccb8ca3 100644 --- a/docs/symbols/Roo.bootstrap.HtmlEditor.html +++ b/docs/symbols/Roo.bootstrap.HtmlEditor.html @@ -2519,7 +2519,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Img.html b/docs/symbols/Roo.bootstrap.Img.html index 8134707f0f..cffbf7d828 100644 --- a/docs/symbols/Roo.bootstrap.Img.html +++ b/docs/symbols/Roo.bootstrap.Img.html @@ -2754,7 +2754,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Input.html b/docs/symbols/Roo.bootstrap.Input.html index 73fa10dffc..10fba15ca2 100644 --- a/docs/symbols/Roo.bootstrap.Input.html +++ b/docs/symbols/Roo.bootstrap.Input.html @@ -4581,7 +4581,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Menu.html b/docs/symbols/Roo.bootstrap.Menu.html index c6b51cb8f4..229183122d 100644 --- a/docs/symbols/Roo.bootstrap.Menu.html +++ b/docs/symbols/Roo.bootstrap.Menu.html @@ -2549,7 +2549,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.MenuItem.html b/docs/symbols/Roo.bootstrap.MenuItem.html index ea8e80ca10..524992b1aa 100644 --- a/docs/symbols/Roo.bootstrap.MenuItem.html +++ b/docs/symbols/Roo.bootstrap.MenuItem.html @@ -2664,7 +2664,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.MenuSeparator.html b/docs/symbols/Roo.bootstrap.MenuSeparator.html index 32a3eb5b1c..3e3b29fbbd 100644 --- a/docs/symbols/Roo.bootstrap.MenuSeparator.html +++ b/docs/symbols/Roo.bootstrap.MenuSeparator.html @@ -2519,7 +2519,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Modal.html b/docs/symbols/Roo.bootstrap.Modal.html index 7a4346b97c..9aadac76e1 100644 --- a/docs/symbols/Roo.bootstrap.Modal.html +++ b/docs/symbols/Roo.bootstrap.Modal.html @@ -2809,7 +2809,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.NavGroup.html b/docs/symbols/Roo.bootstrap.NavGroup.html index 2801b85940..6f0764a33f 100644 --- a/docs/symbols/Roo.bootstrap.NavGroup.html +++ b/docs/symbols/Roo.bootstrap.NavGroup.html @@ -2609,7 +2609,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Navbar.Item.html b/docs/symbols/Roo.bootstrap.Navbar.Item.html index 15db78df7d..6bb7decade 100644 --- a/docs/symbols/Roo.bootstrap.Navbar.Item.html +++ b/docs/symbols/Roo.bootstrap.Navbar.Item.html @@ -2784,7 +2784,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Navbar.html b/docs/symbols/Roo.bootstrap.Navbar.html index edb962e5a0..024973ddbb 100644 --- a/docs/symbols/Roo.bootstrap.Navbar.html +++ b/docs/symbols/Roo.bootstrap.Navbar.html @@ -2819,7 +2819,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:13 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Pagination.html b/docs/symbols/Roo.bootstrap.Pagination.html index c6cd1cad7f..25e267106b 100644 --- a/docs/symbols/Roo.bootstrap.Pagination.html +++ b/docs/symbols/Roo.bootstrap.Pagination.html @@ -2579,7 +2579,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.PaginationItem.html b/docs/symbols/Roo.bootstrap.PaginationItem.html index aa913b278d..c8635d253a 100644 --- a/docs/symbols/Roo.bootstrap.PaginationItem.html +++ b/docs/symbols/Roo.bootstrap.PaginationItem.html @@ -2694,7 +2694,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.PagingToolbar.html b/docs/symbols/Roo.bootstrap.PagingToolbar.html new file mode 100644 index 0000000000..09fc906a65 --- /dev/null +++ b/docs/symbols/Roo.bootstrap.PagingToolbar.html @@ -0,0 +1,1672 @@ + + + + + + + + + + + JsDoc Reference - Roo.bootstrap.PagingToolbar + + + + + + + + + + + + + + +
+ + + +
+ +
+ + + + +
+
Roo.bootstrap.Toolbar
+Roo.bootstrap.PagingToolbar 
+
+		   
+
+ + + + +

+ + Class Roo.bootstrap.PagingToolbar +

+ + + + + + + + + + + + + + +
Package:Roo.bootstrap
Defined In: + + Roo/bootstrap/PagingToolbar.js. + +
Class:PagingToolbar
Extends: + Roo.bootstrap.Toolbar + +
+ + + +
+ A specialized toolbar that is bound to a {link Roo.data.Store} and provides automatic paging controls. +
+ + + + +
+ Class Comments / Notes => + [Add Your comment/notes about this class] +
+ +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Config Options (Usually are also Properties)
OptionsDefined By
+ + + + + + + + + + + + + + + + + + + + + +
Public Properties - Has None
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Methods
MethodDefined By
+ + + + + + + + + + + + + +
Events - Has None
+ + + + + + + + + + +
+ + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:20 GMT+0800 (HKT) + Based on + JsDoc Toolkit +
+ + diff --git a/docs/symbols/Roo.bootstrap.Popover.html b/docs/symbols/Roo.bootstrap.Popover.html index fd234b9cf8..2a41c11eef 100644 --- a/docs/symbols/Roo.bootstrap.Popover.html +++ b/docs/symbols/Roo.bootstrap.Popover.html @@ -2669,7 +2669,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Progress.html b/docs/symbols/Roo.bootstrap.Progress.html index 558a4ed693..29ba43be7e 100644 --- a/docs/symbols/Roo.bootstrap.Progress.html +++ b/docs/symbols/Roo.bootstrap.Progress.html @@ -2579,7 +2579,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.ProgressBar.html b/docs/symbols/Roo.bootstrap.ProgressBar.html index d979e5df36..e34e07a0e4 100644 --- a/docs/symbols/Roo.bootstrap.ProgressBar.html +++ b/docs/symbols/Roo.bootstrap.ProgressBar.html @@ -2729,7 +2729,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Radio.html b/docs/symbols/Roo.bootstrap.Radio.html index 119ce6512f..bdddbff693 100644 --- a/docs/symbols/Roo.bootstrap.Radio.html +++ b/docs/symbols/Roo.bootstrap.Radio.html @@ -4727,7 +4727,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Row.html b/docs/symbols/Roo.bootstrap.Row.html index 0e37c40eb9..b38755cd34 100644 --- a/docs/symbols/Roo.bootstrap.Row.html +++ b/docs/symbols/Roo.bootstrap.Row.html @@ -2519,7 +2519,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Slider.html b/docs/symbols/Roo.bootstrap.Slider.html index fa389bc7ad..a97af5ebe3 100644 --- a/docs/symbols/Roo.bootstrap.Slider.html +++ b/docs/symbols/Roo.bootstrap.Slider.html @@ -2519,7 +2519,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.SplitButton.html b/docs/symbols/Roo.bootstrap.SplitButton.html new file mode 100644 index 0000000000..de27c25a28 --- /dev/null +++ b/docs/symbols/Roo.bootstrap.SplitButton.html @@ -0,0 +1,3367 @@ + + + + + + + + + + + JsDoc Reference - Roo.bootstrap.SplitButton + + + + + + + + + + + + + + +
+ + + +
+ +
+ + + + + + + + + +

+ + Class Roo.bootstrap.SplitButton +

+ + + + + + + + + + + + + + + + +
Package:Roo.bootstrap
Defined In: + + Roo/bootstrap/SplitButton.js. + +
Class:SplitButton
Subclasses: + Roo.bootstrap.Toolbar.SplitButton + + + +
Extends: + Roo.bootstrap.Button + +
+ + + +
+ A split button that provides a built-in dropdown arrow that can fire an event separately from the default
click event of the button. Typically this would be used to display a dropdown menu that provides additional
options to the primary button action, but any custom handler can provide the arrowclick implementation. +
+ + + + +
+ Class Comments / Notes => + [Add Your comment/notes about this class] +
+ +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Config Options (Usually are also Properties)
OptionsDefined By
+ + + + + + + + + + + + + + + + + + + + + +
Public Properties - Has None
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Methods
MethodDefined By
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Events
EventDefined By
+ + + + + + +
+ + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) + Based on + JsDoc Toolkit +
+ + diff --git a/docs/symbols/Roo.bootstrap.TabPanel.html b/docs/symbols/Roo.bootstrap.TabPanel.html index 634625dea3..7e510446f7 100644 --- a/docs/symbols/Roo.bootstrap.TabPanel.html +++ b/docs/symbols/Roo.bootstrap.TabPanel.html @@ -2609,7 +2609,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Table.html b/docs/symbols/Roo.bootstrap.Table.html index d4015fbb29..0a8434a69c 100644 --- a/docs/symbols/Roo.bootstrap.Table.html +++ b/docs/symbols/Roo.bootstrap.Table.html @@ -2969,7 +2969,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.TableBody.html b/docs/symbols/Roo.bootstrap.TableBody.html index 791e2f4c88..76954cf790 100644 --- a/docs/symbols/Roo.bootstrap.TableBody.html +++ b/docs/symbols/Roo.bootstrap.TableBody.html @@ -2639,7 +2639,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.TableCell.html b/docs/symbols/Roo.bootstrap.TableCell.html index d6ee3498c0..8e08802d8a 100644 --- a/docs/symbols/Roo.bootstrap.TableCell.html +++ b/docs/symbols/Roo.bootstrap.TableCell.html @@ -2969,7 +2969,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.TableRow.html b/docs/symbols/Roo.bootstrap.TableRow.html index c161a512b0..e813584274 100644 --- a/docs/symbols/Roo.bootstrap.TableRow.html +++ b/docs/symbols/Roo.bootstrap.TableRow.html @@ -2639,7 +2639,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:43 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.TextArea.html b/docs/symbols/Roo.bootstrap.TextArea.html index 15ae9b8750..3349cbfc92 100644 --- a/docs/symbols/Roo.bootstrap.TextArea.html +++ b/docs/symbols/Roo.bootstrap.TextArea.html @@ -4755,7 +4755,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.Button.html b/docs/symbols/Roo.bootstrap.Toolbar.Button.html index 04acf21dd6..9209b98188 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.Button.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.Button.html @@ -44,10 +44,8 @@
Roo.util.Observable
-Roo.Component
-Roo.bootstrap.Component
-Roo.bootstrap.Button
-Roo.bootstrap.Toolbar.Button 
+Roo.Button
+Roo.bootstrap.Toolbar.Button 
 
 		   
@@ -75,7 +73,7 @@ Extends: - Roo.bootstrap.Button + Roo.Button @@ -131,19 +129,19 @@   - +
- actionMode : String + clickEvent : String
-
which property holds the element that used for hide() / show() / disable() / enable()
default is 'el'
+
The type of event to map to the button's event handler (defaults to 'click')
-
which property holds the element that used for hide() / show() / disable() / enable()
default is 'el'
+
The type of event to map to the button's event handler (defaults to 'click')
@@ -151,7 +149,7 @@ - Roo.Component + Roo.Button @@ -161,97 +159,7 @@   - -
- allowDomMove : Boolean - - -
- -
-
Whether the component can move the Dom node when rendering (defaults to true).
-
- -
-
Whether the component can move the Dom node when rendering (defaults to true).
-
- - - - - - - Roo.Component - - - - - - -   - - - -
- badge : String - - -
- -
-
text for badge
-
- -
-
text for badge
-
- - - - - - - Roo.bootstrap.Button - - - - - - -   - - - -
- can_build_overlaid : Boolean - - -
- -
-
True if element can be rebuild from a HTML page
-
- -
-
True if element can be rebuild from a HTML page
-
- - - - - - - Roo.bootstrap.Component - - - - - - -   - - - +
cls : String @@ -259,41 +167,11 @@
-
css class
-
- -
-
css class
-
- - - - - - - Roo.bootstrap.Component - - - - - - -   - - - -
- dataId : string - - -
- -
-
cutomer id
+
A CSS class to apply to the button's main element.
-
cutomer id
+
A CSS class to apply to the button's main element.
@@ -301,7 +179,7 @@ - Roo.bootstrap.Component + Roo.Button @@ -311,19 +189,19 @@   - +
- defaulton : Boolean + disabled : Boolean
-
true | false
+
True to start disabled (defaults to false)
-
true | false
+
True to start disabled (defaults to false)
@@ -331,7 +209,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -341,19 +219,19 @@   - +
- disableClass : String + enableToggle : Boolean
-
CSS class added to the component when it is disabled (defaults to "x-item-disabled").
+
True to enable pressed/not pressed toggling (defaults to false)
-
CSS class added to the component when it is disabled (defaults to "x-item-disabled").
+
True to enable pressed/not pressed toggling (defaults to false)
@@ -361,7 +239,7 @@ - Roo.Component + Roo.Button @@ -371,19 +249,19 @@   - +
- disabled : Boolean + handleMouseEvents : Boolean
-
false | true
+
False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
-
false | true
+
False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
@@ -391,7 +269,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -401,19 +279,19 @@   - +
- glyphicon : String + handler : Function
-
empty | adjust | align-center | align-justify | align-left | align-right | arrow-down | arrow-left | arrow-right | arrow-up | asterisk | backward | ban-circle | barcode | bell | bold | book | bookmark | briefcase | bullhorn | calendar | camera | certificate | check | chevron-down | chevron-left | chevron-right | chevron-up | circle-arrow-down | circle-arrow-left | circle-arrow-right | circle-arrow-up | cloud | cloud-download | cloud-upload | cog | collapse-down | collapse-up | comment | compressed | copyright-mark | credit-card | cutlery | dashboard | download | download-alt | earphone | edit | eject | envelope | euro | exclamation-sign | expand | export | eye-close | eye-open | facetime-video | fast-backward | fast-forward | file | film | filter | fire | flag | flash | floppy-disk | floppy-open | floppy-remove | floppy-save | floppy-saved | folder-close | folder-open | font | forward | fullscreen | gbp | gift | glass | globe | hand-down | hand-left | hand-right | hand-up | hd-video | hdd | header | headphones | heart | heart-empty | home | import | inbox | indent-left | indent-right | info-sign | italic | leaf | link | list | list-alt | lock | log-in | log-out | magnet | map-marker | minus | minus-sign | move | music | new-window | off | ok | ok-circle | ok-sign | open | paperclip | pause | pencil | phone | phone-alt | picture | plane | play | play-circle | plus | plus-sign | print | pushpin | qrcode | question-sign | random | record | refresh | registration-mark | remove | remove-circle | remove-sign | repeat | resize-full | resize-horizontal | resize-small | resize-vertical | retweet | road | save | saved | screenshot | sd-video | search | send | share | share-alt | shopping-cart | signal | sort | sort-by-alphabet | sort-by-alphabet-alt | sort-by-attributes | sort-by-attributes-alt | sort-by-order | sort-by-order-alt | sound-5-1 | sound-6-1 | sound-7-1 | sound-dolby | sound-stereo | star | star-empty | stats | step-backward | step-forward | stop | subtitles | tag | tags | tasks | text-height | text-width | th | th-large | th-list | thumbs-down | thumbs-up | time | tint | tower | transfer | trash | tree-conifer | tree-deciduous | unchecked | upload | usd | user | volume-down | volume-off | volume-up | warning-sign | wrench | zoom-in | zoom-out
+
A function called when the button is clicked (can be used instead of click event)
-
empty | adjust | align-center | align-justify | align-left | align-right | arrow-down | arrow-left | arrow-right | arrow-up | asterisk | backward | ban-circle | barcode | bell | bold | book | bookmark | briefcase | bullhorn | calendar | camera | certificate | check | chevron-down | chevron-left | chevron-right | chevron-up | circle-arrow-down | circle-arrow-left | circle-arrow-right | circle-arrow-up | cloud | cloud-download | cloud-upload | cog | collapse-down | collapse-up | comment | compressed | copyright-mark | credit-card | cutlery | dashboard | download | download-alt | earphone | edit | eject | envelope | euro | exclamation-sign | expand | export | eye-close | eye-open | facetime-video | fast-backward | fast-forward | file | film | filter | fire | flag | flash | floppy-disk | floppy-open | floppy-remove | floppy-save | floppy-saved | folder-close | folder-open | font | forward | fullscreen | gbp | gift | glass | globe | hand-down | hand-left | hand-right | hand-up | hd-video | hdd | header | headphones | heart | heart-empty | home | import | inbox | indent-left | indent-right | info-sign | italic | leaf | link | list | list-alt | lock | log-in | log-out | magnet | map-marker | minus | minus-sign | move | music | new-window | off | ok | ok-circle | ok-sign | open | paperclip | pause | pencil | phone | phone-alt | picture | plane | play | play-circle | plus | plus-sign | print | pushpin | qrcode | question-sign | random | record | refresh | registration-mark | remove | remove-circle | remove-sign | repeat | resize-full | resize-horizontal | resize-small | resize-vertical | retweet | road | save | saved | screenshot | sd-video | search | send | share | share-alt | shopping-cart | signal | sort | sort-by-alphabet | sort-by-alphabet-alt | sort-by-attributes | sort-by-attributes-alt | sort-by-order | sort-by-order-alt | sound-5-1 | sound-6-1 | sound-7-1 | sound-dolby | sound-stereo | star | star-empty | stats | step-backward | step-forward | stop | subtitles | tag | tags | tasks | text-height | text-width | th | th-large | th-list | thumbs-down | thumbs-up | time | tint | tower | transfer | trash | tree-conifer | tree-deciduous | unchecked | upload | usd | user | volume-down | volume-off | volume-up | warning-sign | wrench | zoom-in | zoom-out
+
A function called when the button is clicked (can be used instead of click event)
@@ -421,7 +299,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -431,19 +309,19 @@   - +
- hideMode : String + hidden : Boolean
-
How this component should hidden.
+
True to start hidden (defaults to false)
-
How this component should hidden. Supported values are
"visibility" (css visibility), "offsets" (negative offset position) and
"display" (css display) - defaults to "display".
+
True to start hidden (defaults to false)
@@ -451,7 +329,7 @@ - Roo.Component + Roo.Button @@ -461,19 +339,19 @@   - +
- href : String + icon : String
-
empty or href
+
The path to an image to display in the button (the image will be set as the background-image
CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
-
empty or href
+
The path to an image to display in the button (the image will be set as the background-image
CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
@@ -481,7 +359,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -491,19 +369,19 @@   - +
- html : String + iconCls : String
-
The button content
+
A css class which sets a background image to be used as the icon for this button (defaults to undefined).
-
The button content
+
A css class which sets a background image to be used as the icon for this button (defaults to undefined).
@@ -511,7 +389,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -521,19 +399,19 @@   - +
- inverse : Boolean + listeners : Object
-
false | true
+
list of events and functions to call for this object,
For example :

listeners : {
'click' : function(e) {
.
-
false | true
+
list of events and functions to call for this object,
For example :

listeners : {
'click' : function(e) {
.....
} ,
....
}
@@ -541,7 +419,7 @@ - Roo.bootstrap.Button + Roo.util.Observable @@ -551,19 +429,19 @@   - +
- isClose : Boolean + menu : Mixed
-
false | true
+
Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
-
false | true
+
Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
@@ -571,7 +449,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -581,19 +459,19 @@   - +
- listeners : Object + menuAlign : String
-
list of events and functions to call for this object,
For example :

listeners : {
'click' : function(e) {
.
+
The position to align the menu to (see {link Roo.ElementalignTo} for more details, defaults to 'tl-bl?').
-
list of events and functions to call for this object,
For example :

listeners : {
'click' : function(e) {
.....
} ,
....
}
+
The position to align the menu to (see {link Roo.ElementalignTo} for more details, defaults to 'tl-bl?').
@@ -601,7 +479,7 @@ - Roo.util.Observable + Roo.Button @@ -611,19 +489,19 @@   - +
- name : string + minWidth : Number
-
Specifies name attribute
+
The minimum width for this button (used to give a set of buttons a common width)
-
Specifies name attribute
+
The minimum width for this button (used to give a set of buttons a common width)
@@ -631,7 +509,7 @@ - Roo.bootstrap.Component + Roo.Button @@ -641,19 +519,19 @@   - +
- offtext : String + pressed : Boolean
-
text for off toggle state
+
True to start pressed (only if enableToggle = true)
-
text for off toggle state
+
True to start pressed (only if enableToggle = true)
@@ -661,7 +539,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -671,19 +549,19 @@   - +
- ontext : String + renderTo : String/HTMLElement/Element
-
text for on toggle state
+
The element to append the button to
-
text for on toggle state
+
The element to append the button to
@@ -691,7 +569,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -701,19 +579,19 @@   - +
- preventDefault : Boolean + repeat : Boolean/Object
-
(true | false) default true
+
True to repeat fire the click event while the mouse is down.
-
(true | false) default true
+
True to repeat fire the click event while the mouse is down. This can also be
an {link Roo.util.ClickRepeater} config object (defaults to false).
@@ -721,7 +599,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -731,19 +609,19 @@   - +
- removeClass : Boolean + scope : Object
-
true | false remove the standard class.
+
The scope of the handler
-
true | false remove the standard class..
+
The scope of the handler
@@ -751,7 +629,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -761,19 +639,19 @@   - +
- size : String + tabIndex : Number
-
empty | lg | sm | xs
+
The DOM tabIndex for this button (defaults to undefined)
-
empty | lg | sm | xs
+
The DOM tabIndex for this button (defaults to undefined)
@@ -781,7 +659,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -791,19 +669,19 @@   - +
- style : String + template : Roo.Template
-
any extra css
+
(Optional)
An {link Roo.Template} with which to create the Button's main element.
-
any extra css
+
(Optional)
An {link Roo.Template} with which to create the Button's main element. This Template must
contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
require code modifications if required elements (e.g. a button) aren't present.
@@ -811,7 +689,7 @@ - Roo.bootstrap.Component + Roo.Button @@ -821,19 +699,19 @@   - +
- tag : String + text : String
-
empty | a | input | submit
+
The button text
-
empty | a | input | submit
+
The button text
@@ -841,7 +719,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -851,19 +729,19 @@   - +
- target : String + toggleGroup : String
-
(_self|_blank|_parent|_top)target for a href.
+
The group this toggle button is a member of (only 1 per group can be pressed, only
applies if enableToggle = true)
-
(_self|_blank|_parent|_top)target for a href.
+
The group this toggle button is a member of (only 1 per group can be pressed, only
applies if enableToggle = true)
@@ -871,7 +749,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -881,19 +759,19 @@   - +
- theme : String + tooltip : String/Object
-
default (or empty) | glow
+
The tooltip for the button - can be a string or QuickTips config object
-
default (or empty) | glow
+
The tooltip for the button - can be a string or QuickTips config object
@@ -901,7 +779,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -911,19 +789,19 @@   - +
- toggle : Boolean + tooltipType : String
-
false | true
+
The type of tooltip to use.
-
false | true
+
The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
@@ -931,7 +809,7 @@ - Roo.bootstrap.Button + Roo.Button @@ -941,49 +819,19 @@   - -
- weight : String - - -
- -
-
default (or empty) | primary | success | info | warning | danger | link
-
- -
-
default (or empty) | primary | success | info | warning | danger | link
-
- - - - - - - Roo.bootstrap.Button - - - - - - -   - - - +
- xattr : Object + type : String
-
extra attributes to add to 'element' (used by builder to store stuff.
+
The button's type, corresponding to the DOM input element type attribute.
-
extra attributes to add to 'element' (used by builder to store stuff.)
+
The button's type, corresponding to the DOM input element type attribute. Either "submit," "reset" or "button" (default).
@@ -991,7 +839,7 @@ - Roo.bootstrap.Component + Roo.Button @@ -1090,7 +938,7 @@ Object config -
A standard {link Roo.bootstrap.Button} config object
+
A standard {link Roo.Button} config object
@@ -1497,59 +1345,33 @@ - +
focus - (Boolean selectText) + () - : - - - Roo.Component - - - -
-
Try to focus this component.
+
Focus the button
- Try to focus this component. + Focus the button -
-
Parameters:
- -
- Boolean selectText - -
-
True to also select the text in this component (if applicable)
- -
- - -
-
Returns:
- -
Roo.Component this
- -
@@ -1563,7 +1385,7 @@ - Roo.Component + Roo.Button   @@ -1574,7 +1396,7 @@ - +
getEl @@ -1593,13 +1415,13 @@
-
Returns the underlying {link Roo.Element}.
+
Returns the button's underlying element
- Returns the underlying {link Roo.Element}. + Returns the button's underlying element @@ -1629,7 +1451,7 @@ - Roo.Component + Roo.Button   @@ -1640,9 +1462,9 @@ - +
- getId + getText () @@ -1659,13 +1481,13 @@
-
Returns the id of this component.
+
Gets the text for this button
- Returns the id of this component. + Gets the text for this button @@ -1679,7 +1501,7 @@
Returns:
-
String
+
String The button text
@@ -1695,7 +1517,7 @@ - Roo.Component + Roo.Button   @@ -1833,57 +1655,6 @@   - - -
- isVisible - - () - - - -
-
- -
Returns true if this component is visible.
- - - -
- - Returns true if this component is visible. - - - - - - - - - - - - - - - - -
-
- - - - - Roo.Component -   - - - - - -   - -
@@ -1960,7 +1731,7 @@ - +   @@ -2011,7 +1782,7 @@ - +   @@ -2085,29 +1856,29 @@ - +   - +
- render + setDisabled - (String/HTMLElement/Element container) + (Boolean enabled)
-
If this is a lazy rendering component, render it to its container element.
+
Convenience function for boolean enable/disable
- If this is a lazy rendering component, render it to its container element. + Convenience function for boolean enable/disable @@ -2118,10 +1889,10 @@
Parameters:
- String/HTMLElement/Element container + Boolean enabled
-
(optional) The element this component should be rendered into. If it is being applied to existing markup, this should be left off.
+
True to enable, false to disable
@@ -2141,35 +1912,35 @@ - Roo.Component + Roo.Button   - +   - +
- setDisabled + setHandler - (Boolean disabled) + (Function handler, Object scope)
-
Convenience function for setting disabled/enabled by boolean.
+
Assigns this button's click handler
- Convenience function for setting disabled/enabled by boolean. + Assigns this button's click handler @@ -2180,10 +1951,16 @@
Parameters:
- Boolean disabled + Function handler
-
+
The function to call when the button is clicked
+ +
+ Object scope + +
+
(optional) Scope for the function passed in
@@ -2203,43 +1980,35 @@ - Roo.Component + Roo.Button   - +   - +
- setVisible + setText - (Boolean visible) + (String text) - : - - - Roo.Component - - - -
-
Convenience function to hide or show this component by boolean.
+
Sets this button's text
- Convenience function to hide or show this component by boolean. + Sets this button's text @@ -2250,10 +2019,10 @@
Parameters:
- Boolean visible + String text
-
True to show, false to hide
+
The button text
@@ -2261,13 +2030,6 @@ -
-
Returns:
- -
Roo.Component this
- -
- @@ -2280,47 +2042,58 @@ - Roo.Component + Roo.Button   - +   - +
- show + setVisible - () + (Boolean visible)
-
Shows this button
+
Convenience function for boolean show/hide
- Shows this button + Convenience function for boolean show/hide +
+
Parameters:
+ +
+ Boolean visible + +
+
True to show, false to hide
+ +
+ + + + + + - - - - - @@ -2331,64 +2104,41 @@ - Roo.bootstrap.Toolbar.Button + Roo.Button   - +   - +
- un + show - (String eventName, Function handler, Object scope) + ()
-
Removes a listener (shorthand for removeListener)
+
Shows this button
- Removes a listener (shorthand for removeListener) + Shows this button -
-
Parameters:
- -
- String eventName - -
-
The type of event to listen for
- -
- Function handler - -
-
The handler to remove
- -
- Object scope - -
-
(optional) The scope (this object) for the handler
- -
- @@ -2405,129 +2155,49 @@ - Roo.util.Observable + Roo.bootstrap.Toolbar.Button   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + - - - - - - - - + + - + + - - - - - - - + +
Events
EventDefined By
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + - - - - - - - @@ -2884,22 +2452,22 @@ @@ -2939,22 +2513,22 @@ @@ -2994,22 +2568,22 @@ @@ -3055,7 +2635,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.Fill.html b/docs/symbols/Roo.bootstrap.Toolbar.Fill.html index f2e632cc16..1c22317369 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.Fill.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.Fill.html @@ -681,7 +681,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.Item.html b/docs/symbols/Roo.bootstrap.Toolbar.Item.html index 8bf9943d04..50330a78ec 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.Item.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.Item.html @@ -685,7 +685,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.Separator.html b/docs/symbols/Roo.bootstrap.Toolbar.Separator.html index 308138a0b2..a575aaf35f 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.Separator.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.Separator.html @@ -680,7 +680,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.Spacer.html b/docs/symbols/Roo.bootstrap.Toolbar.Spacer.html index b7e7784b36..7b06a51343 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.Spacer.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.Spacer.html @@ -687,7 +687,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.SplitButton.html b/docs/symbols/Roo.bootstrap.Toolbar.SplitButton.html index ce1ef0f5f4..48792a416b 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.SplitButton.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.SplitButton.html @@ -43,8 +43,12 @@
-
Roo.bootstrap.SplitButton
-Roo.bootstrap.Toolbar.SplitButton 
+		   
Roo.util.Observable
+Roo.Component
+Roo.bootstrap.Component
+Roo.bootstrap.Button
+Roo.bootstrap.SplitButton
+Roo.bootstrap.Toolbar.SplitButton 
 
 		   
@@ -72,7 +76,7 @@ @@ -107,106 +111,2905 @@ - -
Events
EventDefined By
  - +
- hide (Roo.Component this) + mouseover (Button this, Event e)
-
Fires after the component is hidden. +
Fires when the mouse hovers over the button
- Fires after the component is hidden. + Fires when the mouse hovers over the button @@ -2909,11 +2477,17 @@
Parameters:
- Roo.Component this + Button this
+
+ Event e + +
+
The event object
+ @@ -2931,7 +2505,7 @@
- Roo.Component + Roo.Button
  - +
- render (Roo.Component this) + render (Button this)
-
Fires after the component is rendered. +
Fires when the button is rendered
- Fires after the component is rendered. + Fires when the button is rendered @@ -2964,7 +2538,7 @@
Parameters:
- Roo.Component this + Button this
@@ -2986,7 +2560,7 @@
- Roo.Component + Roo.Button
  - +
- show (Roo.Component this) + toggle (Button this, Boolean pressed)
-
Fires after the component is shown. +
Fires when the "pressed" state of this button changes (only if enableToggle = true)
- Fires after the component is shown. + Fires when the "pressed" state of this button changes (only if enableToggle = true) @@ -3019,7 +2593,13 @@
Parameters:
- Roo.Component this + Button this + +
+
+ +
+ Boolean pressed
@@ -3041,7 +2621,7 @@
- Roo.Component + Roo.Button
Extends: - Roo.bootstrap.SplitButton + Roo.bootstrap.SplitButton
- -
Config Options - Has None
- - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Config Options (Usually are also Properties)
OptionsDefined By
+ + + + + + + + + + + + + + + + + + + + + +
Public Properties - Has None
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Methods
MethodDefined By
+ + + - - - - - - - + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + - - + - - + - - + - - + - - + + + + + + + + - - + - - + + + + + + + + @@ -386,31 +3311,13 @@
Public Methods
MethodDefined By
Events
EventDefined By
- - - - - - - - - - - -
Events - Has None
- - - - - -
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.TextItem.html b/docs/symbols/Roo.bootstrap.Toolbar.TextItem.html index e722003ff5..b545b9ef7c 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.TextItem.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.TextItem.html @@ -691,7 +691,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.Toolbar.html b/docs/symbols/Roo.bootstrap.Toolbar.html index 9679328594..b848dd2031 100644 --- a/docs/symbols/Roo.bootstrap.Toolbar.html +++ b/docs/symbols/Roo.bootstrap.Toolbar.html @@ -62,6 +62,13 @@ Class:Toolbar + Subclasses: + Roo.bootstrap.PagingToolbar + + + + + @@ -69,7 +76,7 @@
- Bootstrap Toolbar class + Basic Toolbar class.
@@ -239,7 +246,7 @@
new Roo.bootstrap.Toolbar - (Object config) + (Object container) @@ -261,7 +268,7 @@
Parameters:
- Object config + Object container
The config object
@@ -324,7 +331,7 @@ Mixed arg1 -
The following types of arguments are all valid:


  • {link Roo.Toolbar.Button} config: A valid button config object (equivalent to {link addButton})

  • HtmlElement: Any standard HTML element (equivalent to {link addElement})

  • Field: Any form field (equivalent to {link addField})

  • Item: Any subclass of {link Roo.Toolbar.Item} (equivalent to {link addItem})

  • String: Any generic string (gets wrapped in a {link Roo.Toolbar.TextItem}, equivalent to {link addText}).
    Note that there are a few special strings that are treated differently as explained nRoo.

  • 'separator' or '-': Creates a separator element (equivalent to {link addSeparator})

  • ' ': Creates a spacer element (equivalent to {link addSpacer})

  • '->': Creates a fill element (equivalent to {link addFill})

+
The following types of arguments are all valid:


  • {link Roo.bootstrap.Toolbar.Button} config: A valid button config object (equivalent to {link addButton})

  • HtmlElement: Any standard HTML element (equivalent to {link addElement})

  • Field: Any form field (equivalent to {link addField})

  • Item: Any subclass of {link Roo.bootstrap.Toolbar.Item} (equivalent to {link addItem})

  • String: Any generic string (gets wrapped in a {link Roo.bootstrap.Toolbar.TextItem}, equivalent to {link addText}).
    Note that there are a few special strings that are treated differently as explained nRoo.

  • 'separator' or '-': Creates a separator element (equivalent to {link addSeparator})

  • ' ': Creates a spacer element (equivalent to {link addSpacer})

  • '->': Creates a fill element (equivalent to {link addFill})

Mixed arg2 @@ -602,7 +609,7 @@
addField - (Roo.bootstrap.Input field) + (Roo.bootstrap.form.Field field) : @@ -634,7 +641,7 @@
Parameters:
- Roo.bootstrap.Input field + Roo.bootstrap.form.Field field
@@ -1114,7 +1121,7 @@ : - Roo.Element + Roo.bootstrap.Element @@ -1143,7 +1150,7 @@
Returns:
-
Roo.Element
+
Roo.bootstrap.Element
@@ -1240,13 +1247,13 @@
-
Inserts any {link Roo.Toolbar.Item}/{link Roo.bootstrap.Toolbar.Button} at the specified index.
+
Inserts any {link Roo.Toolbar.Item}/{link Roo.Toolbar.Button} at the specified index.
- Inserts any {link Roo.Toolbar.Item}/{link Roo.bootstrap.Toolbar.Button} at the specified index. + Inserts any {link Roo.Toolbar.Item}/{link Roo.Toolbar.Button} at the specified index. @@ -1377,7 +1384,7 @@
- Documentation generated by Introspection Doc Generator on Mon Apr 28 2014 18:11:58 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 17:51:21 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.TriggerField.html b/docs/symbols/Roo.bootstrap.TriggerField.html index f9551d2d45..0fdfa15668 100644 --- a/docs/symbols/Roo.bootstrap.TriggerField.html +++ b/docs/symbols/Roo.bootstrap.TriggerField.html @@ -4755,7 +4755,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.bootstrap.html b/docs/symbols/Roo.bootstrap.html index 737bfb00fe..2731f1decc 100644 --- a/docs/symbols/Roo.bootstrap.html +++ b/docs/symbols/Roo.bootstrap.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:12 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:42 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.ArrayReader.html b/docs/symbols/Roo.data.ArrayReader.html index 5a66663f1c..7cb59caaa0 100644 --- a/docs/symbols/Roo.data.ArrayReader.html +++ b/docs/symbols/Roo.data.ArrayReader.html @@ -458,7 +458,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.Connection.html b/docs/symbols/Roo.data.Connection.html index e965a45786..bed9363697 100644 --- a/docs/symbols/Roo.data.Connection.html +++ b/docs/symbols/Roo.data.Connection.html @@ -1519,7 +1519,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.DataProxy.html b/docs/symbols/Roo.data.DataProxy.html index 6acec1f25f..855e40be20 100644 --- a/docs/symbols/Roo.data.DataProxy.html +++ b/docs/symbols/Roo.data.DataProxy.html @@ -466,7 +466,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.DataReader.html b/docs/symbols/Roo.data.DataReader.html index 6ddd9d576c..32c4243289 100644 --- a/docs/symbols/Roo.data.DataReader.html +++ b/docs/symbols/Roo.data.DataReader.html @@ -317,7 +317,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.HttpProxy.html b/docs/symbols/Roo.data.HttpProxy.html index 9417757ab8..2b036ed9d3 100644 --- a/docs/symbols/Roo.data.HttpProxy.html +++ b/docs/symbols/Roo.data.HttpProxy.html @@ -843,7 +843,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.JsonReader.html b/docs/symbols/Roo.data.JsonReader.html index 2d3fc9704b..8cadba7ed8 100644 --- a/docs/symbols/Roo.data.JsonReader.html +++ b/docs/symbols/Roo.data.JsonReader.html @@ -625,7 +625,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.JsonStore.html b/docs/symbols/Roo.data.JsonStore.html index c9507d692b..8ddcf0cd83 100644 --- a/docs/symbols/Roo.data.JsonStore.html +++ b/docs/symbols/Roo.data.JsonStore.html @@ -3737,7 +3737,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.MemoryProxy.html b/docs/symbols/Roo.data.MemoryProxy.html index 5199e202da..7d5e3c6340 100644 --- a/docs/symbols/Roo.data.MemoryProxy.html +++ b/docs/symbols/Roo.data.MemoryProxy.html @@ -330,7 +330,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.Node.html b/docs/symbols/Roo.data.Node.html index 80d061f56d..d069904a83 100644 --- a/docs/symbols/Roo.data.Node.html +++ b/docs/symbols/Roo.data.Node.html @@ -3027,7 +3027,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.Record.html b/docs/symbols/Roo.data.Record.html index f5011d56c2..1acb474ec2 100644 --- a/docs/symbols/Roo.data.Record.html +++ b/docs/symbols/Roo.data.Record.html @@ -636,7 +636,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.ScriptTagProxy.html b/docs/symbols/Roo.data.ScriptTagProxy.html index 062505a906..584e4e71a9 100644 --- a/docs/symbols/Roo.data.ScriptTagProxy.html +++ b/docs/symbols/Roo.data.ScriptTagProxy.html @@ -512,7 +512,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.SimpleStore.html b/docs/symbols/Roo.data.SimpleStore.html index 3d6a4f92ff..3b51e33163 100644 --- a/docs/symbols/Roo.data.SimpleStore.html +++ b/docs/symbols/Roo.data.SimpleStore.html @@ -3767,7 +3767,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.SortTypes.html b/docs/symbols/Roo.data.SortTypes.html index 8ae76849e1..c3c8ce9f31 100644 --- a/docs/symbols/Roo.data.SortTypes.html +++ b/docs/symbols/Roo.data.SortTypes.html @@ -783,7 +783,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.Store.html b/docs/symbols/Roo.data.Store.html index a09f3b3154..47c93c2650 100644 --- a/docs/symbols/Roo.data.Store.html +++ b/docs/symbols/Roo.data.Store.html @@ -3713,7 +3713,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.Tree.html b/docs/symbols/Roo.data.Tree.html index 761bd5e51d..a00d6effe5 100644 --- a/docs/symbols/Roo.data.Tree.html +++ b/docs/symbols/Roo.data.Tree.html @@ -1696,7 +1696,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.XmlReader.html b/docs/symbols/Roo.data.XmlReader.html index d27a5eccf8..e460573dce 100644 --- a/docs/symbols/Roo.data.XmlReader.html +++ b/docs/symbols/Roo.data.XmlReader.html @@ -625,7 +625,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.data.html b/docs/symbols/Roo.data.html index c7cd305d65..024d759b61 100644 --- a/docs/symbols/Roo.data.html +++ b/docs/symbols/Roo.data.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:14 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DD.html b/docs/symbols/Roo.dd.DD.html index 980b4ea114..5a4297498d 100644 --- a/docs/symbols/Roo.dd.DD.html +++ b/docs/symbols/Roo.dd.DD.html @@ -3889,7 +3889,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DDProxy.html b/docs/symbols/Roo.dd.DDProxy.html index cb1871b5b2..15309e50dd 100644 --- a/docs/symbols/Roo.dd.DDProxy.html +++ b/docs/symbols/Roo.dd.DDProxy.html @@ -4050,7 +4050,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DDTarget.html b/docs/symbols/Roo.dd.DDTarget.html index 72ad9783d7..21cae34d4c 100644 --- a/docs/symbols/Roo.dd.DDTarget.html +++ b/docs/symbols/Roo.dd.DDTarget.html @@ -3543,7 +3543,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DragDrop.html b/docs/symbols/Roo.dd.DragDrop.html index 1bbaa7f64b..a397097679 100644 --- a/docs/symbols/Roo.dd.DragDrop.html +++ b/docs/symbols/Roo.dd.DragDrop.html @@ -3542,7 +3542,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DragDropMgr.html b/docs/symbols/Roo.dd.DragDropMgr.html index d3bf4042a7..c7915f3b9e 100644 --- a/docs/symbols/Roo.dd.DragDropMgr.html +++ b/docs/symbols/Roo.dd.DragDropMgr.html @@ -2194,7 +2194,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DragSource.html b/docs/symbols/Roo.dd.DragSource.html index 182f3e2cd6..c008b1ac1e 100644 --- a/docs/symbols/Roo.dd.DragSource.html +++ b/docs/symbols/Roo.dd.DragSource.html @@ -4884,7 +4884,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DragZone.html b/docs/symbols/Roo.dd.DragZone.html index fab4c3cbf3..f558134f01 100644 --- a/docs/symbols/Roo.dd.DragZone.html +++ b/docs/symbols/Roo.dd.DragZone.html @@ -5160,7 +5160,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DropTarget.html b/docs/symbols/Roo.dd.DropTarget.html index 976daf595a..ffc1dc1216 100644 --- a/docs/symbols/Roo.dd.DropTarget.html +++ b/docs/symbols/Roo.dd.DropTarget.html @@ -4202,7 +4202,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.DropZone.html b/docs/symbols/Roo.dd.DropZone.html index 5907a9c7b0..0470f1ca28 100644 --- a/docs/symbols/Roo.dd.DropZone.html +++ b/docs/symbols/Roo.dd.DropZone.html @@ -4938,7 +4938,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.Registry.html b/docs/symbols/Roo.dd.Registry.html index a9e46a1f98..71778ac19e 100644 --- a/docs/symbols/Roo.dd.Registry.html +++ b/docs/symbols/Roo.dd.Registry.html @@ -624,7 +624,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.ScrollManager.html b/docs/symbols/Roo.dd.ScrollManager.html index 9309ef9c4f..0e681a1db7 100644 --- a/docs/symbols/Roo.dd.ScrollManager.html +++ b/docs/symbols/Roo.dd.ScrollManager.html @@ -361,7 +361,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.StatusProxy.html b/docs/symbols/Roo.dd.StatusProxy.html index 2d349c025b..cef03820d6 100644 --- a/docs/symbols/Roo.dd.StatusProxy.html +++ b/docs/symbols/Roo.dd.StatusProxy.html @@ -922,7 +922,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.dd.html b/docs/symbols/Roo.dd.html index 98b5d9b92b..441a18b034 100644 --- a/docs/symbols/Roo.dd.html +++ b/docs/symbols/Roo.dd.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:15 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:44 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Action.html b/docs/symbols/Roo.form.Action.html index 2cc5b10c00..addb8ff2b0 100644 --- a/docs/symbols/Roo.form.Action.html +++ b/docs/symbols/Roo.form.Action.html @@ -425,7 +425,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.BasicForm.html b/docs/symbols/Roo.form.BasicForm.html index 39e52cde15..ecc32bb1c6 100644 --- a/docs/symbols/Roo.form.BasicForm.html +++ b/docs/symbols/Roo.form.BasicForm.html @@ -2804,7 +2804,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Checkbox.html b/docs/symbols/Roo.form.Checkbox.html index 8cc7384ba5..da3866c971 100644 --- a/docs/symbols/Roo.form.Checkbox.html +++ b/docs/symbols/Roo.form.Checkbox.html @@ -5167,7 +5167,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Column.html b/docs/symbols/Roo.form.Column.html index f0df51f174..f3b2cc5ad8 100644 --- a/docs/symbols/Roo.form.Column.html +++ b/docs/symbols/Roo.form.Column.html @@ -2641,7 +2641,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.ComboBox.html b/docs/symbols/Roo.form.ComboBox.html index cb8e117702..51afbd57ad 100644 --- a/docs/symbols/Roo.form.ComboBox.html +++ b/docs/symbols/Roo.form.ComboBox.html @@ -7847,7 +7847,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.ComboBoxArray.Item.html b/docs/symbols/Roo.form.ComboBoxArray.Item.html index a3eef06fdd..6b28927d68 100644 --- a/docs/symbols/Roo.form.ComboBoxArray.Item.html +++ b/docs/symbols/Roo.form.ComboBoxArray.Item.html @@ -3230,7 +3230,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.ComboBoxArray.html b/docs/symbols/Roo.form.ComboBoxArray.html index 5576b52ff1..c1f6638856 100644 --- a/docs/symbols/Roo.form.ComboBoxArray.html +++ b/docs/symbols/Roo.form.ComboBoxArray.html @@ -5801,7 +5801,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.ComboCheck.html b/docs/symbols/Roo.form.ComboCheck.html index f1c64b5243..224a4695c4 100644 --- a/docs/symbols/Roo.form.ComboCheck.html +++ b/docs/symbols/Roo.form.ComboCheck.html @@ -7841,7 +7841,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.DateField.html b/docs/symbols/Roo.form.DateField.html index 3317e28ac6..f6a6a7a3c6 100644 --- a/docs/symbols/Roo.form.DateField.html +++ b/docs/symbols/Roo.form.DateField.html @@ -6165,7 +6165,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.DayPicker.html b/docs/symbols/Roo.form.DayPicker.html index 9b884ab6f1..46e1b007cb 100644 --- a/docs/symbols/Roo.form.DayPicker.html +++ b/docs/symbols/Roo.form.DayPicker.html @@ -4979,7 +4979,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.DisplayField.html b/docs/symbols/Roo.form.DisplayField.html index 12749e7650..e7e2343291 100644 --- a/docs/symbols/Roo.form.DisplayField.html +++ b/docs/symbols/Roo.form.DisplayField.html @@ -5003,7 +5003,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.FCKeditor.html b/docs/symbols/Roo.form.FCKeditor.html index 62ff9e537a..d3a06dcf31 100644 --- a/docs/symbols/Roo.form.FCKeditor.html +++ b/docs/symbols/Roo.form.FCKeditor.html @@ -5863,7 +5863,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Field.html b/docs/symbols/Roo.form.Field.html index 1372fded8b..dbd4d2f7df 100644 --- a/docs/symbols/Roo.form.Field.html +++ b/docs/symbols/Roo.form.Field.html @@ -4979,7 +4979,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.FieldSet.html b/docs/symbols/Roo.form.FieldSet.html index fe183a3e0f..c71fbcdfcf 100644 --- a/docs/symbols/Roo.form.FieldSet.html +++ b/docs/symbols/Roo.form.FieldSet.html @@ -2641,7 +2641,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Form.html b/docs/symbols/Roo.form.Form.html index 891af0e21f..5287d08c1b 100644 --- a/docs/symbols/Roo.form.Form.html +++ b/docs/symbols/Roo.form.Form.html @@ -3917,7 +3917,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.GridField.html b/docs/symbols/Roo.form.GridField.html index 5a00471880..f692709ebe 100644 --- a/docs/symbols/Roo.form.GridField.html +++ b/docs/symbols/Roo.form.GridField.html @@ -5033,7 +5033,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Hidden.html b/docs/symbols/Roo.form.Hidden.html index 265dd90701..336ed5198c 100644 --- a/docs/symbols/Roo.form.Hidden.html +++ b/docs/symbols/Roo.form.Hidden.html @@ -5741,7 +5741,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.HtmlEditor.ToolbarContext.html b/docs/symbols/Roo.form.HtmlEditor.ToolbarContext.html index 13fd863195..0893b2eaa7 100644 --- a/docs/symbols/Roo.form.HtmlEditor.ToolbarContext.html +++ b/docs/symbols/Roo.form.HtmlEditor.ToolbarContext.html @@ -355,7 +355,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.HtmlEditor.ToolbarStandard.html b/docs/symbols/Roo.form.HtmlEditor.ToolbarStandard.html index e50f921a49..abea95a9b0 100644 --- a/docs/symbols/Roo.form.HtmlEditor.ToolbarStandard.html +++ b/docs/symbols/Roo.form.HtmlEditor.ToolbarStandard.html @@ -475,7 +475,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.HtmlEditor.html b/docs/symbols/Roo.form.HtmlEditor.html index adc1c2854e..c8bb916882 100644 --- a/docs/symbols/Roo.form.HtmlEditor.html +++ b/docs/symbols/Roo.form.HtmlEditor.html @@ -5220,7 +5220,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Layout.html b/docs/symbols/Roo.form.Layout.html index 80cd9dc7ad..7e8fe08c65 100644 --- a/docs/symbols/Roo.form.Layout.html +++ b/docs/symbols/Roo.form.Layout.html @@ -2617,7 +2617,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.MonthField.html b/docs/symbols/Roo.form.MonthField.html index c2acc9a5e5..8e57972d07 100644 --- a/docs/symbols/Roo.form.MonthField.html +++ b/docs/symbols/Roo.form.MonthField.html @@ -6165,7 +6165,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.NumberField.html b/docs/symbols/Roo.form.NumberField.html index 0abf615b33..e8f8fba05d 100644 --- a/docs/symbols/Roo.form.NumberField.html +++ b/docs/symbols/Roo.form.NumberField.html @@ -6011,7 +6011,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Radio.html b/docs/symbols/Roo.form.Radio.html index b4bc48cb6a..49fb458288 100644 --- a/docs/symbols/Roo.form.Radio.html +++ b/docs/symbols/Roo.form.Radio.html @@ -5227,7 +5227,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Row.html b/docs/symbols/Roo.form.Row.html index b71accf741..31186a8cf5 100644 --- a/docs/symbols/Roo.form.Row.html +++ b/docs/symbols/Roo.form.Row.html @@ -2671,7 +2671,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Select.html b/docs/symbols/Roo.form.Select.html index 93de708a06..35fcd2d33f 100644 --- a/docs/symbols/Roo.form.Select.html +++ b/docs/symbols/Roo.form.Select.html @@ -7482,7 +7482,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.Signature.html b/docs/symbols/Roo.form.Signature.html index 10e017e4da..63518febe6 100644 --- a/docs/symbols/Roo.form.Signature.html +++ b/docs/symbols/Roo.form.Signature.html @@ -5475,7 +5475,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.TextArea.html b/docs/symbols/Roo.form.TextArea.html index f2687b023a..05adab9492 100644 --- a/docs/symbols/Roo.form.TextArea.html +++ b/docs/symbols/Roo.form.TextArea.html @@ -5778,7 +5778,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.TextField.html b/docs/symbols/Roo.form.TextField.html index d357df8db6..61da374c74 100644 --- a/docs/symbols/Roo.form.TextField.html +++ b/docs/symbols/Roo.form.TextField.html @@ -5747,7 +5747,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.TriggerField.html b/docs/symbols/Roo.form.TriggerField.html index 524ffe7139..c6eecb472a 100644 --- a/docs/symbols/Roo.form.TriggerField.html +++ b/docs/symbols/Roo.form.TriggerField.html @@ -5780,7 +5780,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.VTypes.html b/docs/symbols/Roo.form.VTypes.html index c821b6f373..16aef6504e 100644 --- a/docs/symbols/Roo.form.VTypes.html +++ b/docs/symbols/Roo.form.VTypes.html @@ -434,7 +434,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.form.html b/docs/symbols/Roo.form.html index f514f05106..55c2605180 100644 --- a/docs/symbols/Roo.form.html +++ b/docs/symbols/Roo.form.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:16 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:45 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.AbstractGridView.html b/docs/symbols/Roo.grid.AbstractGridView.html index 7637da5e33..3d680332d9 100644 --- a/docs/symbols/Roo.grid.AbstractGridView.html +++ b/docs/symbols/Roo.grid.AbstractGridView.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.AbstractSelectionModel.html b/docs/symbols/Roo.grid.AbstractSelectionModel.html index 184bfbf55f..79baef01dc 100644 --- a/docs/symbols/Roo.grid.AbstractSelectionModel.html +++ b/docs/symbols/Roo.grid.AbstractSelectionModel.html @@ -1043,7 +1043,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.Calendar.html b/docs/symbols/Roo.grid.Calendar.html index 03c9e25051..a9336380eb 100644 --- a/docs/symbols/Roo.grid.Calendar.html +++ b/docs/symbols/Roo.grid.Calendar.html @@ -2591,7 +2591,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.CellSelectionModel.html b/docs/symbols/Roo.grid.CellSelectionModel.html index b52775ff1d..a6d19156de 100644 --- a/docs/symbols/Roo.grid.CellSelectionModel.html +++ b/docs/symbols/Roo.grid.CellSelectionModel.html @@ -1725,7 +1725,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.ColumnModel.html b/docs/symbols/Roo.grid.ColumnModel.html index 6511ae26c5..1bebcd16cc 100644 --- a/docs/symbols/Roo.grid.ColumnModel.html +++ b/docs/symbols/Roo.grid.ColumnModel.html @@ -3533,7 +3533,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.EditorGrid.html b/docs/symbols/Roo.grid.EditorGrid.html index 92ce009f7f..6feb329ac0 100644 --- a/docs/symbols/Roo.grid.EditorGrid.html +++ b/docs/symbols/Roo.grid.EditorGrid.html @@ -4371,7 +4371,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.Grid.html b/docs/symbols/Roo.grid.Grid.html index eacd298df0..d869c1dc0e 100644 --- a/docs/symbols/Roo.grid.Grid.html +++ b/docs/symbols/Roo.grid.Grid.html @@ -4050,7 +4050,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.GridEditor.html b/docs/symbols/Roo.grid.GridEditor.html index e6ab4c74db..e62327856f 100644 --- a/docs/symbols/Roo.grid.GridEditor.html +++ b/docs/symbols/Roo.grid.GridEditor.html @@ -3461,7 +3461,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.GridView.html b/docs/symbols/Roo.grid.GridView.html index 350363023e..4925045e03 100644 --- a/docs/symbols/Roo.grid.GridView.html +++ b/docs/symbols/Roo.grid.GridView.html @@ -1620,7 +1620,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.PropertyGrid.html b/docs/symbols/Roo.grid.PropertyGrid.html index 2b9de87754..91d0cbd4f4 100644 --- a/docs/symbols/Roo.grid.PropertyGrid.html +++ b/docs/symbols/Roo.grid.PropertyGrid.html @@ -4693,7 +4693,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.RowSelectionModel.html b/docs/symbols/Roo.grid.RowSelectionModel.html index 0babe97b80..fb0c599fd6 100644 --- a/docs/symbols/Roo.grid.RowSelectionModel.html +++ b/docs/symbols/Roo.grid.RowSelectionModel.html @@ -2560,7 +2560,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.grid.html b/docs/symbols/Roo.grid.html index 3262c7094b..9e82fe4902 100644 --- a/docs/symbols/Roo.grid.html +++ b/docs/symbols/Roo.grid.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:17 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.lib.Ajax.html b/docs/symbols/Roo.lib.Ajax.html index ce61c785b2..689526a9f7 100644 --- a/docs/symbols/Roo.lib.Ajax.html +++ b/docs/symbols/Roo.lib.Ajax.html @@ -284,7 +284,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.lib.Dom.html b/docs/symbols/Roo.lib.Dom.html index ea27193cd6..ea8b866096 100644 --- a/docs/symbols/Roo.lib.Dom.html +++ b/docs/symbols/Roo.lib.Dom.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.lib.html b/docs/symbols/Roo.lib.html index 1790a2a1d5..82dec095b4 100644 --- a/docs/symbols/Roo.lib.html +++ b/docs/symbols/Roo.lib.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.Adapter.html b/docs/symbols/Roo.menu.Adapter.html index 91848083d8..5662023500 100644 --- a/docs/symbols/Roo.menu.Adapter.html +++ b/docs/symbols/Roo.menu.Adapter.html @@ -2697,7 +2697,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.BaseItem.html b/docs/symbols/Roo.menu.BaseItem.html index d43a594a5a..96539d002b 100644 --- a/docs/symbols/Roo.menu.BaseItem.html +++ b/docs/symbols/Roo.menu.BaseItem.html @@ -2696,7 +2696,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.CheckItem.html b/docs/symbols/Roo.menu.CheckItem.html index 114e3564df..4b007a60ab 100644 --- a/docs/symbols/Roo.menu.CheckItem.html +++ b/docs/symbols/Roo.menu.CheckItem.html @@ -3189,7 +3189,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.ColorItem.html b/docs/symbols/Roo.menu.ColorItem.html index 0312ad97bb..3cb9b01426 100644 --- a/docs/symbols/Roo.menu.ColorItem.html +++ b/docs/symbols/Roo.menu.ColorItem.html @@ -2691,7 +2691,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.ColorMenu.html b/docs/symbols/Roo.menu.ColorMenu.html index 3d875b7bba..ac8779c5be 100644 --- a/docs/symbols/Roo.menu.ColorMenu.html +++ b/docs/symbols/Roo.menu.ColorMenu.html @@ -2583,7 +2583,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.DateItem.html b/docs/symbols/Roo.menu.DateItem.html index 05ed4e457e..c1890229b7 100644 --- a/docs/symbols/Roo.menu.DateItem.html +++ b/docs/symbols/Roo.menu.DateItem.html @@ -2691,7 +2691,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.DateMenu.html b/docs/symbols/Roo.menu.DateMenu.html index 72b33f11ea..8dd143c2a4 100644 --- a/docs/symbols/Roo.menu.DateMenu.html +++ b/docs/symbols/Roo.menu.DateMenu.html @@ -2583,7 +2583,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.Item.html b/docs/symbols/Roo.menu.Item.html index 60b7672e11..981f2b2969 100644 --- a/docs/symbols/Roo.menu.Item.html +++ b/docs/symbols/Roo.menu.Item.html @@ -2915,7 +2915,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.Menu.html b/docs/symbols/Roo.menu.Menu.html index 33eeb86e70..b9c2dc2602 100644 --- a/docs/symbols/Roo.menu.Menu.html +++ b/docs/symbols/Roo.menu.Menu.html @@ -2528,7 +2528,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.MenuMgr.html b/docs/symbols/Roo.menu.MenuMgr.html index 5f1696bd13..fa54f29981 100644 --- a/docs/symbols/Roo.menu.MenuMgr.html +++ b/docs/symbols/Roo.menu.MenuMgr.html @@ -299,7 +299,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.Separator.html b/docs/symbols/Roo.menu.Separator.html index 81d1d26952..5e8f106ff6 100644 --- a/docs/symbols/Roo.menu.Separator.html +++ b/docs/symbols/Roo.menu.Separator.html @@ -2720,7 +2720,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.TextItem.html b/docs/symbols/Roo.menu.TextItem.html index 807cf644fa..4bcdc1fa45 100644 --- a/docs/symbols/Roo.menu.TextItem.html +++ b/docs/symbols/Roo.menu.TextItem.html @@ -2750,7 +2750,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.menu.html b/docs/symbols/Roo.menu.html index b6e439248d..a84606baed 100644 --- a/docs/symbols/Roo.menu.html +++ b/docs/symbols/Roo.menu.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:18 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:46 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.state.CookieProvider.html b/docs/symbols/Roo.state.CookieProvider.html index c9ea5dc9fe..5da8f9101e 100644 --- a/docs/symbols/Roo.state.CookieProvider.html +++ b/docs/symbols/Roo.state.CookieProvider.html @@ -834,7 +834,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.state.Manager.html b/docs/symbols/Roo.state.Manager.html index 8a56f8d646..48dee8db7c 100644 --- a/docs/symbols/Roo.state.Manager.html +++ b/docs/symbols/Roo.state.Manager.html @@ -527,7 +527,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.state.Provider.html b/docs/symbols/Roo.state.Provider.html index ce11e4b214..8ab9efe121 100644 --- a/docs/symbols/Roo.state.Provider.html +++ b/docs/symbols/Roo.state.Provider.html @@ -686,7 +686,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.state.html b/docs/symbols/Roo.state.html index df867d3a5f..74f806346f 100644 --- a/docs/symbols/Roo.state.html +++ b/docs/symbols/Roo.state.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.AsyncTreeNode.html b/docs/symbols/Roo.tree.AsyncTreeNode.html index 9fc5b17cdd..9418c64ced 100644 --- a/docs/symbols/Roo.tree.AsyncTreeNode.html +++ b/docs/symbols/Roo.tree.AsyncTreeNode.html @@ -5370,7 +5370,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.ColumnTree.html b/docs/symbols/Roo.tree.ColumnTree.html index 1f9c8a7706..52c69c010d 100644 --- a/docs/symbols/Roo.tree.ColumnTree.html +++ b/docs/symbols/Roo.tree.ColumnTree.html @@ -407,7 +407,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.DefaultSelectionModel.html b/docs/symbols/Roo.tree.DefaultSelectionModel.html index e950f8698c..c92e589bc3 100644 --- a/docs/symbols/Roo.tree.DefaultSelectionModel.html +++ b/docs/symbols/Roo.tree.DefaultSelectionModel.html @@ -1484,7 +1484,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.MultiSelectionModel.html b/docs/symbols/Roo.tree.MultiSelectionModel.html index 493aa512ad..3355ec7b4a 100644 --- a/docs/symbols/Roo.tree.MultiSelectionModel.html +++ b/docs/symbols/Roo.tree.MultiSelectionModel.html @@ -1297,7 +1297,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeEditor.html b/docs/symbols/Roo.tree.TreeEditor.html index af9f13f5c8..7b9c41e76f 100644 --- a/docs/symbols/Roo.tree.TreeEditor.html +++ b/docs/symbols/Roo.tree.TreeEditor.html @@ -3648,7 +3648,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeFilter.html b/docs/symbols/Roo.tree.TreeFilter.html index 334462026a..792ba65934 100644 --- a/docs/symbols/Roo.tree.TreeFilter.html +++ b/docs/symbols/Roo.tree.TreeFilter.html @@ -443,7 +443,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeLoader.html b/docs/symbols/Roo.tree.TreeLoader.html index 58e3421c87..30c15d7f19 100644 --- a/docs/symbols/Roo.tree.TreeLoader.html +++ b/docs/symbols/Roo.tree.TreeLoader.html @@ -1461,7 +1461,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeNode.html b/docs/symbols/Roo.tree.TreeNode.html index c0d808095a..e41e0928fa 100644 --- a/docs/symbols/Roo.tree.TreeNode.html +++ b/docs/symbols/Roo.tree.TreeNode.html @@ -5042,7 +5042,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeNodeUI.html b/docs/symbols/Roo.tree.TreeNodeUI.html index 07a4855aeb..8aabfaa942 100644 --- a/docs/symbols/Roo.tree.TreeNodeUI.html +++ b/docs/symbols/Roo.tree.TreeNodeUI.html @@ -244,7 +244,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreePanel.html b/docs/symbols/Roo.tree.TreePanel.html index 7a85754e2b..5a560c3891 100644 --- a/docs/symbols/Roo.tree.TreePanel.html +++ b/docs/symbols/Roo.tree.TreePanel.html @@ -4077,7 +4077,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.TreeSorter.html b/docs/symbols/Roo.tree.TreeSorter.html index 4b9054b126..a5995db392 100644 --- a/docs/symbols/Roo.tree.TreeSorter.html +++ b/docs/symbols/Roo.tree.TreeSorter.html @@ -441,7 +441,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.tree.html b/docs/symbols/Roo.tree.html index 4934c44c3a..7735daff4a 100644 --- a/docs/symbols/Roo.tree.html +++ b/docs/symbols/Roo.tree.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.CSS.html b/docs/symbols/Roo.util.CSS.html index b547ba844d..f9576a833f 100644 --- a/docs/symbols/Roo.util.CSS.html +++ b/docs/symbols/Roo.util.CSS.html @@ -714,7 +714,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.ClickRepeater.html b/docs/symbols/Roo.util.ClickRepeater.html index 8025a6f55c..d0b08b4933 100644 --- a/docs/symbols/Roo.util.ClickRepeater.html +++ b/docs/symbols/Roo.util.ClickRepeater.html @@ -1272,7 +1272,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.DelayedTask.html b/docs/symbols/Roo.util.DelayedTask.html index 276fa8143e..e755e42490 100644 --- a/docs/symbols/Roo.util.DelayedTask.html +++ b/docs/symbols/Roo.util.DelayedTask.html @@ -256,7 +256,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.Format.html b/docs/symbols/Roo.util.Format.html index a2c1044ac2..0140c8f1ef 100644 --- a/docs/symbols/Roo.util.Format.html +++ b/docs/symbols/Roo.util.Format.html @@ -1377,7 +1377,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.JSON.html b/docs/symbols/Roo.util.JSON.html index fd5940f586..ea02ac9394 100644 --- a/docs/symbols/Roo.util.JSON.html +++ b/docs/symbols/Roo.util.JSON.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.Math.html b/docs/symbols/Roo.util.Math.html index aa8e8206a3..aa6621a3a5 100644 --- a/docs/symbols/Roo.util.Math.html +++ b/docs/symbols/Roo.util.Math.html @@ -1203,7 +1203,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.MixedCollection.html b/docs/symbols/Roo.util.MixedCollection.html index c20456d93c..93dd983ece 100644 --- a/docs/symbols/Roo.util.MixedCollection.html +++ b/docs/symbols/Roo.util.MixedCollection.html @@ -3266,7 +3266,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.Observable.html b/docs/symbols/Roo.util.Observable.html index 55790dc41e..b04859c139 100644 --- a/docs/symbols/Roo.util.Observable.html +++ b/docs/symbols/Roo.util.Observable.html @@ -1009,7 +1009,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.TextMetrics.Instance.html b/docs/symbols/Roo.util.TextMetrics.Instance.html index 463f9be014..ffae3b3b6a 100644 --- a/docs/symbols/Roo.util.TextMetrics.Instance.html +++ b/docs/symbols/Roo.util.TextMetrics.Instance.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.TextMetrics.html b/docs/symbols/Roo.util.TextMetrics.html index c174a88106..df1e27f656 100644 --- a/docs/symbols/Roo.util.TextMetrics.html +++ b/docs/symbols/Roo.util.TextMetrics.html @@ -358,7 +358,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/Roo.util.html b/docs/symbols/Roo.util.html index e6782d6111..01980c1327 100644 --- a/docs/symbols/Roo.util.html +++ b/docs/symbols/Roo.util.html @@ -175,7 +175,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:19 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:47 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/String.html b/docs/symbols/String.html index 17e538a929..dcb782912d 100644 --- a/docs/symbols/String.html +++ b/docs/symbols/String.html @@ -520,7 +520,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/_global_.html b/docs/symbols/_global_.html index bb25fd1a0d..e8efdc5f80 100644 --- a/docs/symbols/_global_.html +++ b/docs/symbols/_global_.html @@ -171,7 +171,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/docs/symbols/src/Roo_bootstrap_Calendar.js.html b/docs/symbols/src/Roo_bootstrap_Calendar.js.html index efc98e0dba..82f9d314c6 100644 --- a/docs/symbols/src/Roo_bootstrap_Calendar.js.html +++ b/docs/symbols/src/Roo_bootstrap_Calendar.js.html @@ -327,8 +327,8 @@ this.on('monthchange', this.onMonthChange, this); - this.update(new Date().clearTime()); - }, +// this.update(new Date().clearTime()); + }, resize : function() { var sz = this.el.getSize(); diff --git a/docs/symbols/src/Roo_bootstrap_PagingToolbar.js.html b/docs/symbols/src/Roo_bootstrap_PagingToolbar.js.html new file mode 100644 index 0000000000..74a50ff1e1 --- /dev/null +++ b/docs/symbols/src/Roo_bootstrap_PagingToolbar.js.html @@ -0,0 +1,308 @@ +../roojs1/Roo/bootstrap/PagingToolbar.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. + * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> + */ + +/** + * @class Roo.bootstrap.PagingToolbar + * @extends Roo.bootstrap.Toolbar + * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls. + * @constructor + * Create a new PagingToolbar + * @param {Object} config The config object + */ +Roo.bootstrap.PagingToolbar = function(el, ds, config) +{ + // old args format still supported... - xtype is prefered.. + if (typeof(el) == 'object' && el.xtype) { + // created from xtype... + config = el; + ds = el.dataSource; + el = config.container; + } + var items = []; + if (config.items) { + items = config.items; + config.items = []; + } + + Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, el, null, config); + this.ds = ds; + this.cursor = 0; + this.renderButtons(this.el); + this.bind(ds); + + // supprot items array. + + Roo.each(items, function(e) { + this.add(Roo.factory(e)); + },this); + +}; + +Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.Toolbar, { + /** + * @cfg {Roo.data.Store} dataSource + * The underlying data store providing the paged data + */ + /** + * @cfg {String/HTMLElement/Element} container + * container The id or element that will contain the toolbar + */ + /** + * @cfg {Boolean} displayInfo + * True to display the displayMsg (defaults to false) + */ + /** + * @cfg {Number} pageSize + * The number of records to display per page (defaults to 20) + */ + pageSize: 20, + /** + * @cfg {String} displayMsg + * The paging status message to display (defaults to "Displaying {start} - {end} of {total}") + */ + displayMsg : 'Displaying {0} - {1} of {2}', + /** + * @cfg {String} emptyMsg + * The message to display when no records are found (defaults to "No data to display") + */ + emptyMsg : 'No data to display', + /** + * Customizable piece of the default paging text (defaults to "Page") + * @type String + */ + beforePageText : "Page", + /** + * Customizable piece of the default paging text (defaults to "of %0") + * @type String + */ + afterPageText : "of {0}", + /** + * Customizable piece of the default paging text (defaults to "First Page") + * @type String + */ + firstText : "First Page", + /** + * Customizable piece of the default paging text (defaults to "Previous Page") + * @type String + */ + prevText : "Previous Page", + /** + * Customizable piece of the default paging text (defaults to "Next Page") + * @type String + */ + nextText : "Next Page", + /** + * Customizable piece of the default paging text (defaults to "Last Page") + * @type String + */ + lastText : "Last Page", + /** + * Customizable piece of the default paging text (defaults to "Refresh") + * @type String + */ + refreshText : "Refresh", + + // private + renderButtons : function(el){ + Roo.bootstrap.PagingToolbar.superclass.render.call(this, el); + this.first = this.addButton({ + tooltip: this.firstText, + cls: "x-btn-icon x-grid-page-first", + disabled: true, + handler: this.onClick.createDelegate(this, ["first"]) + }); + this.prev = this.addButton({ + tooltip: this.prevText, + cls: "x-btn-icon x-grid-page-prev", + disabled: true, + handler: this.onClick.createDelegate(this, ["prev"]) + }); + //this.addSeparator(); + this.add(this.beforePageText); + this.field = Roo.get(this.addDom({ + tag: "input", + type: "text", + size: "3", + value: "1", + cls: "x-grid-page-number" + }).el); + this.field.on("keydown", this.onPagingKeydown, this); + this.field.on("focus", function(){this.dom.select();}); + this.afterTextEl = this.addText(String.format(this.afterPageText, 1)); + this.field.setHeight(18); + //this.addSeparator(); + this.next = this.addButton({ + tooltip: this.nextText, + cls: "x-btn-icon x-grid-page-next", + disabled: true, + handler: this.onClick.createDelegate(this, ["next"]) + }); + this.last = this.addButton({ + tooltip: this.lastText, + cls: "x-btn-icon x-grid-page-last", + disabled: true, + handler: this.onClick.createDelegate(this, ["last"]) + }); + //this.addSeparator(); + this.loading = this.addButton({ + tooltip: this.refreshText, + cls: "x-btn-icon x-grid-loading", + handler: this.onClick.createDelegate(this, ["refresh"]) + }); + + if(this.displayInfo){ + this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'}); + } + }, + + // private + updateInfo : function(){ + if(this.displayEl){ + var count = this.ds.getCount(); + var msg = count == 0 ? + this.emptyMsg : + String.format( + this.displayMsg, + this.cursor+1, this.cursor+count, this.ds.getTotalCount() + ); + this.displayEl.update(msg); + } + }, + + // private + onLoad : function(ds, r, o){ + this.cursor = o.params ? o.params.start : 0; + var d = this.getPageData(), ap = d.activePage, ps = d.pages; + + this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages); + this.field.dom.value = ap; + this.first.setDisabled(ap == 1); + this.prev.setDisabled(ap == 1); + this.next.setDisabled(ap == ps); + this.last.setDisabled(ap == ps); + this.loading.enable(); + this.updateInfo(); + }, + + // private + getPageData : function(){ + var total = this.ds.getTotalCount(); + return { + total : total, + activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize), + pages : total < this.pageSize ? 1 : Math.ceil(total/this.pageSize) + }; + }, + + // private + onLoadError : function(){ + this.loading.enable(); + }, + + // private + onPagingKeydown : function(e){ + var k = e.getKey(); + var d = this.getPageData(); + if(k == e.RETURN){ + var v = this.field.dom.value, pageNum; + if(!v || isNaN(pageNum = parseInt(v, 10))){ + this.field.dom.value = d.activePage; + return; + } + pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1; + this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}}); + e.stopEvent(); + } + else if(k == e.HOME || (k == e.UP && e.ctrlKey) || (k == e.PAGEUP && e.ctrlKey) || (k == e.RIGHT && e.ctrlKey) || k == e.END || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) + { + var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages; + this.field.dom.value = pageNum; + this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}}); + e.stopEvent(); + } + else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) + { + var v = this.field.dom.value, pageNum; + var increment = (e.shiftKey) ? 10 : 1; + if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) + increment *= -1; + if(!v || isNaN(pageNum = parseInt(v, 10))) { + this.field.dom.value = d.activePage; + return; + } + else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages) + { + this.field.dom.value = parseInt(v, 10) + increment; + pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1; + this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}}); + } + e.stopEvent(); + } + }, + + // private + beforeLoad : function(){ + if(this.loading){ + this.loading.disable(); + } + }, + + // private + onClick : function(which){ + var ds = this.ds; + switch(which){ + case "first": + ds.load({params:{start: 0, limit: this.pageSize}}); + break; + case "prev": + ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}}); + break; + case "next": + ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}}); + break; + case "last": + var total = ds.getTotalCount(); + var extra = total % this.pageSize; + var lastStart = extra ? (total - extra) : total-this.pageSize; + ds.load({params:{start: lastStart, limit: this.pageSize}}); + break; + case "refresh": + ds.load({params:{start: this.cursor, limit: this.pageSize}}); + break; + } + }, + + /** + * Unbinds the paging toolbar from the specified {@link Roo.data.Store} + * @param {Roo.data.Store} store The data store to unbind + */ + unbind : function(ds){ + ds.un("beforeload", this.beforeLoad, this); + ds.un("load", this.onLoad, this); + ds.un("loadexception", this.onLoadError, this); + ds.un("remove", this.updateInfo, this); + ds.un("add", this.updateInfo, this); + this.ds = undefined; + }, + + /** + * Binds the paging toolbar to the specified {@link Roo.data.Store} + * @param {Roo.data.Store} store The data store to bind + */ + bind : function(ds){ + ds.on("beforeload", this.beforeLoad, this); + ds.on("load", this.onLoad, this); + ds.on("loadexception", this.onLoadError, this); + ds.on("remove", this.updateInfo, this); + ds.on("add", this.updateInfo, this); + this.ds = ds; + } +}); \ No newline at end of file diff --git a/docs/symbols/src/Roo_bootstrap_SplitButton.js.html b/docs/symbols/src/Roo_bootstrap_SplitButton.js.html new file mode 100644 index 0000000000..b4600e8ba6 --- /dev/null +++ b/docs/symbols/src/Roo_bootstrap_SplitButton.js.html @@ -0,0 +1,194 @@ +../roojs1/Roo/bootstrap/SplitButton.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. + * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> + */ + +/** + * @class Roo.bootstrap.SplitButton + * @extends Roo.bootstrap.Button + * A split button that provides a built-in dropdown arrow that can fire an event separately from the default + * click event of the button. Typically this would be used to display a dropdown menu that provides additional + * options to the primary button action, but any custom handler can provide the arrowclick implementation. + * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event) + * @cfg {String} arrowTooltip The title attribute of the arrow + * @constructor + * Create a new menu button + * @param {String/HTMLElement/Element} renderTo The element to append the button to + * @param {Object} config The config object + */ +Roo.bootstrap.SplitButton = function(renderTo, config){ + Roo.bootstrap.SplitButton.superclass.constructor.call(this, renderTo, config); + /** + * @event arrowclick + * Fires when this button's arrow is clicked + * @param {SplitButton} this + * @param {EventObject} e The click event + */ + this.addEvents({"arrowclick":true}); +}; + +Roo.extend(Roo.bootstrap.SplitButton, Roo.bootstrap.Button, { + render : function(renderTo){ + // this is one sweet looking template! + var tpl = new Roo.Template( + '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>', + '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>', + '<tr><td class="x-btn-left"><i>&#160;</i></td><td class="x-btn-center"><button class="x-btn-text" type="{1}">{0}</button></td></tr>', + "</tbody></table></td><td>", + '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>', + '<tr><td class="x-btn-center"><button class="x-btn-menu-arrow-el" type="button">&#160;</button></td><td class="x-btn-right"><i>&#160;</i></td></tr>', + "</tbody></table></td></tr></table>" + ); + var btn = tpl.append(renderTo, [this.text, this.type], true); + var btnEl = btn.child("button"); + if(this.cls){ + btn.addClass(this.cls); + } + if(this.icon){ + btnEl.setStyle('background-image', 'url(' +this.icon +')'); + } + if(this.iconCls){ + btnEl.addClass(this.iconCls); + if(!this.cls){ + btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon'); + } + } + this.el = btn; + if(this.handleMouseEvents){ + btn.on("mouseover", this.onMouseOver, this); + btn.on("mouseout", this.onMouseOut, this); + btn.on("mousedown", this.onMouseDown, this); + btn.on("mouseup", this.onMouseUp, this); + } + btn.on(this.clickEvent, this.onClick, this); + if(this.tooltip){ + if(typeof this.tooltip == 'object'){ + Roo.QuickTips.tips(Roo.apply({ + target: btnEl.id + }, this.tooltip)); + } else { + btnEl.dom[this.tooltipType] = this.tooltip; + } + } + if(this.arrowTooltip){ + btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip; + } + if(this.hidden){ + this.hide(); + } + if(this.disabled){ + this.disable(); + } + if(this.pressed){ + this.el.addClass("x-btn-pressed"); + } + if(Roo.isIE && !Roo.isIE7){ + this.autoWidth.defer(1, this); + }else{ + this.autoWidth(); + } + if(this.menu){ + this.menu.on("show", this.onMenuShow, this); + this.menu.on("hide", this.onMenuHide, this); + } + this.fireEvent('render', this); + }, + + // private + autoWidth : function(){ + if(this.el){ + var tbl = this.el.child("table:first"); + var tbl2 = this.el.child("table:last"); + this.el.setWidth("auto"); + tbl.setWidth("auto"); + if(Roo.isIE7 && Roo.isStrict){ + var ib = this.el.child('button:first'); + if(ib && ib.getWidth() > 20){ + ib.clip(); + ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr')); + } + } + if(this.minWidth){ + if(this.hidden){ + this.el.beginMeasure(); + } + if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){ + tbl.setWidth(this.minWidth-tbl2.getWidth()); + } + if(this.hidden){ + this.el.endMeasure(); + } + } + this.el.setWidth(tbl.getWidth()+tbl2.getWidth()); + } + }, + /** + * Sets this button's click handler + * @param {Function} handler The function to call when the button is clicked + * @param {Object} scope (optional) Scope for the function passed above + */ + setHandler : function(handler, scope){ + this.handler = handler; + this.scope = scope; + }, + + /** + * Sets this button's arrow click handler + * @param {Function} handler The function to call when the arrow is clicked + * @param {Object} scope (optional) Scope for the function passed above + */ + setArrowHandler : function(handler, scope){ + this.arrowHandler = handler; + this.scope = scope; + }, + + /** + * Focus the button + */ + focus : function(){ + if(this.el){ + this.el.child("button:first").focus(); + } + }, + + // private + onClick : function(e){ + e.preventDefault(); + if(!this.disabled){ + if(e.getTarget(".x-btn-menu-arrow-wrap")){ + if(this.menu && !this.menu.isVisible()){ + this.menu.show(this.el, this.menuAlign); + } + this.fireEvent("arrowclick", this, e); + if(this.arrowHandler){ + this.arrowHandler.call(this.scope || this, this, e); + } + }else{ + this.fireEvent("click", this, e); + if(this.handler){ + this.handler.call(this.scope || this, this, e); + } + } + } + }, + // private + onMouseDown : function(e){ + if(!this.disabled){ + Roo.fly(e.getTarget("table")).addClass("x-btn-click"); + } + }, + // private + onMouseUp : function(e){ + Roo.fly(e.getTarget("table")).removeClass("x-btn-click"); + } +}); + + +// backwards compat +Roo.bootstrap.MenuButton = Roo.bootstrap.SplitButton; \ No newline at end of file diff --git a/docs/symbols/src/Roo_bootstrap_Table.js.html b/docs/symbols/src/Roo_bootstrap_Table.js.html index 1ad85f049a..eae0a3621f 100644 --- a/docs/symbols/src/Roo_bootstrap_Table.js.html +++ b/docs/symbols/src/Roo_bootstrap_Table.js.html @@ -247,6 +247,8 @@ var tbody = this.el.select('tbody', true).first(); + var renders = []; + if(this.store.getCount() > 0){ this.store.data.each(function(d){ var row = { @@ -256,11 +258,26 @@ for(var i = 0, len = cm.getColumnCount(); i < len; i++){ var renderer = cm.getRenderer(i); + var value = ''; + var id = Roo.id(); + + if(typeof(renderer) !== 'undefined'){ + value = renderer(d.data[cm.getDataIndex(i)], false, d); + } + + if(typeof(value) === 'object'){ + renders.push({ + id : id, + cfg : value + }) + } row.cn.push({ tag: 'td', - html: (typeof(renderer) !== 'undefined') ? renderer(d.data[cm.getDataIndex(i)], false, d) : '' + id: id, + html: (typeof(value) === 'object') ? '' : value }) + } tbody.createChild(row); @@ -268,11 +285,16 @@ }); } - - if(this.loadMask){ - this.maskEl.hide(); + if(renders.length){ + Roo.each(renders, function(r){ + r.cfg.render(Roo.get(r.id)); + }) } - }, +// +// if(this.loadMask){ +// this.maskEl.hide(); +// } + }, onBeforeLoad : function() { @@ -280,10 +302,10 @@ this.clear(); - if(this.loadMask){ - this.maskEl.show(); - } - }, +// if(this.loadMask){ +// this.maskEl.show(); +// } + }, clear : function() { diff --git a/docs/symbols/src/Roo_bootstrap_Toolbar.js.html b/docs/symbols/src/Roo_bootstrap_Toolbar.js.html index 24e327e642..2064270a8c 100644 --- a/docs/symbols/src/Roo_bootstrap_Toolbar.js.html +++ b/docs/symbols/src/Roo_bootstrap_Toolbar.js.html @@ -1,21 +1,21 @@ -../roojs1/Roo/bootstrap/Toolbar.js -/* - * - LGPL +../roojs1/Roo/bootstrap/Toolbar.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. * - * Toolbar - * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> */ /** * @class Roo.bootstrap.Toolbar - * - * Bootstrap Toolbar class - + * Basic Toolbar class. * @constructor - * Create a new Toolbar - * @param {Object} config The config object - */ - + * Creates a new Toolbar + * @param {Object} container The config object + */ Roo.bootstrap.Toolbar = function(container, buttons, config) { /// old consturctor format still supported.. @@ -82,11 +82,11 @@ * arguments of mixed type and adds them to the toolbar. * @param {Mixed} arg1 The following types of arguments are all valid:<br /> * <ul> - * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li> + * <li>{@link Roo.bootstrap.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li> * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li> * <li>Field: Any form field (equivalent to {@link #addField})</li> - * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li> - * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}). + * <li>Item: Any subclass of {@link Roo.bootstrap.Toolbar.Item} (equivalent to {@link #addItem})</li> + * <li>String: Any generic string (gets wrapped in a {@link Roo.bootstrap.Toolbar.TextItem}, equivalent to {@link #addText}). * Note that there are a few special strings that are treated differently as explained nRoo.</li> * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li> * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li> @@ -105,7 +105,7 @@ _add : function(el) { if (el.xtype) { - el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.bootstrap : Roo.Toolbar); + el = Roo.factory(el, typeof(Roo.bootstrap.Toolbar[el.xtype]) == 'undefined' ? Roo.bootstrap.form : Roo.bootstrap.Toolbar); } if (el.applyTo){ // some kind of form field @@ -149,7 +149,7 @@ /** * Returns the Element for this toolbar. - * @return {Roo.Element} + * @return {Roo.bootstrap.Element} */ getEl : function(){ return this.el; @@ -219,7 +219,7 @@ return buttons; } var b = config; - if(!(config instanceof Roo.Toolbar.Button)){ + if(!(config instanceof Roo.bootstrap.Toolbar.Button)){ b = config.split ? new Roo.bootstrap.Toolbar.SplitButton(config) : new Roo.bootstrap.Toolbar.Button(config); @@ -240,7 +240,7 @@ }, /** - * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.bootstrap.Toolbar.Button} at the specified index. + * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index. * @param {Number} index The index where the item is to be inserted * @param {Object/Roo.bootstrap.Toolbar.Item/Roo.bootstrap.Toolbar.Button (may be Array)} item The button, or button config object to be inserted. * @return {Roo.bootstrap.Toolbar.Button/Item} @@ -287,7 +287,7 @@ * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc). * Note: the field should not have been rendered yet. For a field that has already been * rendered, use {@link #addElement}. - * @param {Roo.bootstrap.Input} field + * @param {Roo.bootstrap.form.Field} field * @return {Roo.bootstrap.ToolbarItem} */ @@ -467,7 +467,7 @@ Roo.bootstrap.Toolbar.Spacer = function(){ var s = document.createElement("div"); s.className = "ytb-spacer"; - Roo.Toolbar.Spacer.superclass.constructor.call(this, s); + Roo.bootstrap.Toolbar.Spacer.superclass.constructor.call(this, s); }; Roo.extend(Roo.bootstrap.Toolbar.Spacer, Roo.bootstrap.Toolbar.Item, { enable:Roo.emptyFn, @@ -515,11 +515,11 @@ /** * @class Roo.bootstrap.Toolbar.Button - * @extends Roo.bootstrap.Button + * @extends Roo.Button * A button that renders into a toolbar. * @constructor * Creates a new Button - * @param {Object} config A standard {@link Roo.bootstrap.Button} config object + * @param {Object} config A standard {@link Roo.Button} config object */ Roo.bootstrap.Toolbar.Button = function(config){ Roo.bootstrap.Toolbar.Button.superclass.constructor.call(this, null, config); diff --git a/docs/symbols/this.html b/docs/symbols/this.html index 90e496ae55..9eb561b5af 100644 --- a/docs/symbols/this.html +++ b/docs/symbols/this.html @@ -173,7 +173,7 @@
- Documentation generated by Introspection Doc Generator on Mon May 12 2014 20:26:20 GMT+0800 (HKT) + Documentation generated by Introspection Doc Generator on Thu May 15 2014 18:24:48 GMT+0800 (HKT) Based on JsDoc Toolkit
diff --git a/roojs-debug.js b/roojs-debug.js index fb92b4204b..0a19796621 100644 --- a/roojs-debug.js +++ b/roojs-debug.js @@ -52107,7 +52107,7 @@ Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, { hdClass : "x-grid-hd", splitClass : "x-grid-hd-split", - init: function(grid){ + init: function(grid){ this.grid = grid; var cid = this.grid.getGridEl().id; this.colSelector = "#" + cid + " ." + this.cellClass + "-"; @@ -52116,7 +52116,7 @@ Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, { this.splitSelector = "#" + cid + " ." + this.splitClass + "-"; }, - getColumnRenderers : function(){ + getColumnRenderers : function(){ var renderers = []; var cm = this.grid.colModel; var colCount = cm.getColumnCount(); diff --git a/roojs-ui-debug.js b/roojs-ui-debug.js index 32835c9e58..6d38edc543 100644 --- a/roojs-ui-debug.js +++ b/roojs-ui-debug.js @@ -35792,7 +35792,7 @@ Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, { hdClass : "x-grid-hd", splitClass : "x-grid-hd-split", - init: function(grid){ + init: function(grid){ this.grid = grid; var cid = this.grid.getGridEl().id; this.colSelector = "#" + cid + " ." + this.cellClass + "-"; @@ -35801,7 +35801,7 @@ Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, { this.splitSelector = "#" + cid + " ." + this.splitClass + "-"; }, - getColumnRenderers : function(){ + getColumnRenderers : function(){ var renderers = []; var cm = this.grid.colModel; var colCount = cm.getColumnCount(); diff --git a/select2/select2-spinner.gif b/select2/select2-spinner.gif new file mode 100644 index 0000000000..5b33f7e54f Binary files /dev/null and b/select2/select2-spinner.gif differ diff --git a/select2/select2.png b/select2/select2.png new file mode 100644 index 0000000000..1d804ffb99 Binary files /dev/null and b/select2/select2.png differ diff --git a/select2/select2x2.png b/select2/select2x2.png new file mode 100644 index 0000000000..4bdd5c961d Binary files /dev/null and b/select2/select2x2.png differ