code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
/**
* @class Ext.form.Url
* @extends Ext.form.Text
* Wraps an HTML5 url field. See {@link Ext.form.FormPanel FormPanel} for example usage.
* @xtype urlfield
*/
Ext.form.Url = Ext.extend(Ext.form.Text, {
inputType: Ext.is.Android ? 'text' : 'url',
autoCapitalize: false
});
Ext.reg('urlfield', Ext.form... | JavaScript |
/**
* @class Ext.form.TextArea
* @extends Ext.form.Field
* <p>Wraps a textarea. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype textareafield
*/
Ext.form.TextArea = Ext.extend(Ext.form.Text, {
ui: 'textarea',
/**
* @cfg {Integer} maxRows The maximum number of lines made visib... | JavaScript |
/**
* @class Ext.form.DatePicker
* @extends Ext.form.Field
* <p>Specialized field which has a button which when pressed, shows a {@link Ext.DatePicker}.</p>
* @xtype datepickerfield
*/
Ext.form.DatePicker = Ext.extend(Ext.form.Field, {
ui: 'select',
/**
* @cfg {Object/Ext.DatePicker} picker
... | JavaScript |
/**
* @class Ext.form.Hidden
* @extends Ext.form.Field
* <p>Wraps a hidden field. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype hiddenfield
*/
Ext.form.Hidden = Ext.extend(Ext.form.Field, {
ui: 'hidden',
inputType: 'hidden',
tabIndex: -1
});
Ext.reg('hiddenfield', Ext.... | JavaScript |
/**
* @class Ext.form.Password
* @extends Ext.form.Field
* <p>Wraps an HTML5 password field. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype passwordfield
*/
Ext.form.Password = Ext.extend(Ext.form.Text, {
inputType: 'password',
autoCapitalize : false
});
Ext.reg('passwordfield', ... | JavaScript |
/**
* @class Ext.form.Radio
* @extends Ext.form.Checkbox
* <p>Single radio field. Same as Checkbox, but provided as a convenience for automatically setting the input type.
* Radio grouping is handled automatically by the browser if you give each radio in a group the same name.</p>
* @constructor
* Creates a new ... | JavaScript |
/**
* @class Ext.form.FormPanel
* @extends Ext.Panel
* <p>Simple form panel which enables easy getting and setting of field values. Can load model instances. Example usage:</p>
<pre><code>
var form = new Ext.form.FormPanel({
items: [
{
xtype: 'textfield',
name : 'first',
... | JavaScript |
/**
* @class Ext.form.Field
* @extends Ext.Container
* <p>Base class for form fields that provides default event handling, sizing, value handling and other functionality. Ext.form.Field
* is not used directly in applications, instead the subclasses such as {@link Ext.form.Text} should be used.</p>
* @constructor
... | JavaScript |
/**
* @class Ext.form.Slider
* @extends Ext.form.Field
* <p>Form component allowing a user to move a 'thumb' along a slider axis to choose a value. Sliders can equally be used outside
* of the context of a form. Example usage:</p>
<pre><code>
new Ext.form.FormPanel({
items: [
{
xtype : ... | JavaScript |
/**
* @class Ext.form.Email
* @extends Ext.form.Text
* <p>Wraps an HTML5 email field. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype emailfield
*/
Ext.form.Email = Ext.extend(Ext.form.Text, {
inputType: Ext.is.Android ? 'text' : 'email',
autoCapitalize: false
});
Ext.reg('em... | JavaScript |
/**
* @class Ext.form.FieldSet
* @extends Ext.Container
* <p>Simple FieldSet, can contain fields as items. FieldSets do not add any behavior, other than an optional title, and
* are just used to group similar fields together. Example usage (within a form):</p>
<pre><code>
new Ext.form.FormPanel({
items: [
... | JavaScript |
/**
* @class Ext.form.Number
* @extends Ext.form.Field
* <p>Wraps an HTML5 number field. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype numberfield
*/
Ext.form.Number = Ext.extend(Ext.form.Text, {
ui: 'number',
inputType: Ext.is.Android ? 'text' : 'number',
minValue : un... | JavaScript |
/**
* @class Ext.form.Toggle
* @extends Ext.form.Slider
* <p>Specialized Slider with a single thumb and only two values. By default the toggle component can
* be switched between the values of 0 and 1.</p>
* @xtype togglefield
*/
Ext.form.Toggle = Ext.extend(Ext.form.Slider, {
minValue: 0,
maxValue: 1,
... | JavaScript |
/**
* @class Ext.form.Text
* @extends Ext.form.Field
* <p>Simple text input field. See {@link Ext.form.FormPanel FormPanel} for example usage.</p>
* @xtype textfield
*/
Ext.form.Text = Ext.extend(Ext.form.Field, {
ui: 'text',
/**
* @cfg {String} focusCls The CSS class to use when the field receives f... | JavaScript |
/**
* @class Ext.form.Select
* @extends Ext.form.Field
* Simple Select field wrapper. Example usage:
<pre><code>
new Ext.form.Select({
options: [
{text: 'First Option', value: 'first'},
{text: 'Second Option', value: 'second'},
{text: 'Third Option', value: 'third'}
]
});
</code></p... | JavaScript |
/**
* @class Ext.form.Search
* @extends Ext.form.Field
* Wraps an HTML5 search field. See {@link Ext.form.FormPanel FormPanel} for example usage.
* @xtype searchfield
*/
Ext.form.Search = Ext.extend(Ext.form.Text, {
inputType: Ext.is.Android ? 'text' : 'search'
/**
* @cfg {Boolean} useClearIcon @hide
... | JavaScript |
/**
* @class Ext.form.Spinner
* @extends Ext.form.Field
* <p>Wraps an HTML5 number field. Example usage:
* <pre><code>
new Ext.form.Spinner({
minValue: 0,
maxValue: 100,
incrementValue: 2,
cycle: true
});
</code></pre>
* @xtype spinnerfield
*/
Ext.form.Spinner = Ext.extend(Ext.form.Number, {
... | JavaScript |
/**
* @class Ext.form.Checkbox
* @extends Ext.form.Field
* Simple Checkbox class. Can be used as a direct replacement for traditional checkbox fields.
* @constructor
* @param {Object} config Optional config object
* @xtype checkboxfield
*/
Ext.form.Checkbox = Ext.extend(Ext.form.Field, {
ui: 'checkbox',
... | JavaScript |
/**
* @class Ext.Panel
* @extends Ext.lib.Panel
* <p>Panel is a container that has specific functionality and structural components that make
* it the perfect building block for application-oriented user interfaces.</p>
* <p>Panels are, by virtue of their inheritance from {@link Ext.Container}, capable
* of being... | JavaScript |
/**
* @class Ext.SegmentedButton
* @extends Ext.Container
* <p>SegmentedButton is a container for a group of {@link Ext.Button}s. Generally a SegmentedButton would be
* a child of a {@link Ext.Toolbar} and would be used to switch between different views.</p>
*
* <h2>Useful Properties</h2>
* <ul class="list">
... | JavaScript |
/**
* @class Ext.Component
* @extends Ext.lib.Component
* <p>Base class for all Ext components. All subclasses of Component may participate in the automated
* Ext component lifecycle of creation, rendering and destruction which is provided by the {@link Ext.Container Container} class.
* Components may be added to... | JavaScript |
/**
* @class Ext.NestedList
* @extends Ext.Panel
*
* <p>NestedList provides a miller column interface to navigate between nested sets
* and provide a clean interface with limited screen real-estate.</p>
*
* <pre><code>
// store with data
var data = {
text: 'Groceries',
items: [{
text: 'Drinks',
... | JavaScript |
/**
* @class Ext.Carousel
* @extends Ext.Panel
*
* <p>A customized Panel which provides the ability to slide back and forth between
* different child items.</p>
*
* <h2>Useful Properties</h2>
* <ul class="list">
* <li>{@link #ui} (defines the style of the carousel)</li>
* <li>{@link #direction} (defines ... | JavaScript |
Ext.applyIf(Ext.Element, {
/**
* Returns the calculated CSS 2D transform offset values (translate x and y)
* @param {Ext.Element/Element} el the element
* @return {Ext.util.Offset} instance of Ext.util.Offset, with x and y properties
*/
getComputedTransformOffset: function(el) {
... | JavaScript |
/**
* @class Ext.Anim
* @extends Object
* <p>Ext.Anim is used to excute animations defined in {@link Ext.anims}. The {@link #run} method can take any of the
* properties defined below.</p>
*
* <h2>Example usage:</h2>
* <code><pre>
Ext.Anim.run(this, 'fade', {
out: false,
autoClear: true
});
* </pre></... | JavaScript |
/**
* @class Ext.DomHelper
* <p>The DomHelper class provides a layer of abstraction from DOM and transparently supports creating
* elements via DOM or using HTML fragments. It also has the ability to create HTML fragment templates
* from your DOM building code.</p>
*
* <p><b><u>DomHelper element specification obj... | JavaScript |
/**
* @class Ext.anims
*/
Ext.apply(Ext.anims, {
/**
* Flip Animation
*/
flip: new Ext.Anim({
is3d: true,
direction: 'left',
before: function(el) {
var rotateProp = 'Y',
fromScale = 1,
toScale = 1,
fromRotate = 0,
... | JavaScript |
/**
* @class Ext.CompositeElement
* <p>This class encapsulates a <i>collection</i> of DOM elements, providing methods to filter
* members, or to perform collective actions upon the whole set.</p>
*
* Example:<pre><code>
var els = Ext.select("#some-el div.some-class");
// or select directly from an existing element... | JavaScript |
/**
* @class Ext.Element
*/
Ext.Element.addMethods({
/**
* Gets the current Y position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
* @return {Number} The Y position of the element
*... | JavaScript |
/**
* @class Ext.DomQuery
* Provides functionality to select elements on the page based on a CSS selector.
*
<p>
All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector.
</p>
<h4>Element S... | JavaScript |
(function() {
/**
* @class Ext.Element
*/
Ext.Element.classReCache = {};
var El = Ext.Element,
view = document.defaultView;
El.addMethods({
marginRightRe: /marginRight/i,
trimRe: /^\s+|\s+$/g,
spacesRe: /\s+/,
/**
* Adds one or more CSS classe... | JavaScript |
/**
* @class Ext.Element
*/
Ext.Element.addMethods({
/**
* Gets the x,y coordinates specified by the anchor position on the element.
* @param {String} anchor (optional) The specified anchor position (defaults to "c"). See {@link #alignTo}
* for details on supported anchor positions.
* @param ... | JavaScript |
/**
* @class Ext.Element
*/
Ext.Element.addMethods({
/**
* Gets the Scroller instance of the first parent that has one.
* @return {Ext.util.Scroller/null} The first parent scroller
*/
getScrollParent : function() {
var parent = this.dom, scroller;
while (parent && parent != docu... | JavaScript |
/**
* @class Ext
*/
Ext.apply(Ext, {
/**
* The version of the framework
* @type String
*/
version : '1.0.0RC',
versionDetail : {
major : 1,
minor : 0,
patch : '0RC'
},
/**
* Sets up a page for use on a mobile device.
* @param {Object} config
... | JavaScript |
/**
* @class Ext.Element
* <p>Encapsulates a DOM element, adding simple DOM manipulation facilities, normalizing for browser differences.</p>
* <p>All instances of this class inherit the methods of {@link Ext.Fx} making visual effects easily available to all DOM elements.</p>
* <p>Note that the events documented in... | JavaScript |
/**
* @class Ext.History
* @extends Ext.util.Observable
* @ignore
* @private
*
* Mobile-optimized port of Ext.History. Note - iPad on iOS < 4.2 does not have HTML5 History support so we still
* have to poll for changes.
*/
Ext.History = new Ext.util.Observable({
constructor: function() {
Ext.Histor... | JavaScript |
Ext.gesture.Tap = Ext.extend(Ext.gesture.Gesture, {
handles: [
'tapstart',
'tapcancel',
'tap',
'doubletap',
'taphold',
'singletap'
],
cancelThreshold: 10,
doubleTapThreshold: 800,
singleTapThreshold: 400,
holdThreshold: 1000,
fir... | JavaScript |
Ext.gesture.Pinch = Ext.extend(Ext.gesture.Gesture, {
handles: [
'pinchstart',
'pinch',
'pinchend'
],
touches: 2,
onTouchStart : function(e) {
var me = this;
if (Ext.supports.Touch && e.targetTouches.length >= 2) {
me.lock('swipe', '... | JavaScript |
Ext.gesture.Drag = Ext.extend(Ext.gesture.Touch, {
handles: ['dragstart', 'drag', 'dragend'],
dragThreshold: 5,
direction: 'both',
horizontal: false,
vertical: false,
constructor: function() {
Ext.gesture.Drag.superclass.constructor.apply(this, arguments);
if (this.direction... | JavaScript |
Ext.gesture.Manager = new Ext.AbstractManager({
startEvent: 'touchstart',
moveEvent: 'touchmove',
endEvent: 'touchend',
init: function() {
this.targets = [];
if (!Ext.supports.Touch) {
Ext.apply(this, {
startEvent: 'mousedown',
moveEvent... | JavaScript |
Ext.gesture.Gesture = Ext.extend(Object, {
listenForStart: true,
listenForEnd: true,
listenForMove: true,
disableLocking: false,
touches: 1,
constructor: function(config) {
config = config || {};
Ext.apply(this, config);
this.target = Ext.getDo... | JavaScript |
Ext.gesture.Touch = Ext.extend(Ext.gesture.Gesture, {
handles: ['touchstart', 'touchmove', 'touchend', 'touchdown'],
touchDownInterval: 500,
onTouchStart: function(e, touch) {
this.startX = this.previousX = touch.pageX;
this.startY = this.previousY = touch.pageY;
this.start... | JavaScript |
Ext.gesture.Swipe = Ext.extend(Ext.gesture.Gesture, {
listenForEnd: false,
swipeThreshold: 35,
swipeTime: 1000,
onTouchStart : function(e, touch) {
this.startTime = e.timeStamp;
this.startX = touch.pageX;
this.startY = touch.pageY;
this.lock('scroll', 'scroll... | JavaScript |
Ext.TouchEventObjectImpl = Ext.extend(Object, {
constructor : function(e, args) {
if (e) {
this.setEvent(e, args);
}
},
setEvent : function(e, args) {
Ext.apply(this, {
event: e,
time: e.timeStamp
});
this.touches = e.touches || [... | JavaScript |
/**
* @class Ext.ComponentQuery
* @extends Object
*
* Provides searching of Components within Ext.ComponentMgr (globally) or a specific
* Ext.Container on the page with a similar syntax to a CSS selector.
*
* Xtypes can be retrieved by their name with an optional . prefix
<ul>
<li>component or .component</li... | JavaScript |
/**
* @class Ext.lib.Container
* @extends Ext.Component
* Shared Container class
*/
Ext.lib.Container = Ext.extend(Ext.Component, {
/**
* @cfg {String/Object} layout
* <p><b>*Important</b>: In order for child items to be correctly sized and
* positioned, typically a layout manager <b>must</b> be ... | JavaScript |
Ext.DataViewSelectionModel = Ext.extend(Ext.AbstractStoreSelectionModel, {
deselectOnContainerClick: true,
bindComponent: function(view) {
this.view = view;
this.bind(view.getStore());
var eventListeners = {
refresh: this.refresh,
scope: this,
el: {
... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/**
* @class Ext.DataView
* @extends Ext.Component
* A mechanism for displaying data using custom layout templates and formatting. DataView uses an {@link Ext.XTemplate}
* as its internal templating mechanism, and is bound to an {@link Ext.data.Store}
* so that as the data in the store changes the view is automati... | JavaScript |
/**
* @class Ext.is
*
* Determines information about the current platform the application is running on.
*
* @singleton
*/
Ext.is = {
init : function() {
var platforms = this.platforms,
ln = platforms.length,
i, platform;
for (i = 0; i < ln; i++) {
platfo... | JavaScript |
/**
* @class Ext.ComponentMgr
* <p>
* 为页面上全体的组件(特指{@link Ext.Component}的子类)以便能够可通过组件的id方便地去访问,(参见{@link Ext.getCmp}方法)。
* Provides a registry of all Components (instances of {@link Ext.Component} or any subclass
* thereof) on a page so that they can be easily accessed by {@link Ext.Component component}
* {@link E... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/**
* @author Ed Spencer
* @class Ext.data.ProxyMgr
* @extends Ext.AbstractManager
* @singleton
* @ignore
*/
Ext.data.ProxyMgr = new Ext.AbstractManager({
create: function(config) {
if (config == undefined || typeof config == 'string') {
config = {
type: config
... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/**
* @author Ed Spencer
* @class Ext.data.SessionStorageProxy
* @extends Ext.data.WebStorageProxy
*
* <p>这个Proxy是以HTML5 Session存储为服务对象的,但倘若浏览器不支持HTML5 Session客户端存储方案,构造函数就会立刻抛出一个异常。Proxy which uses HTML5 local storage as its data storage/retrieval mechanism.
* 本地存储需要一个独一无二的ID作为存放全部记录对象的KEY。
* Proxy which uses ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
Ext.apply(Ext, {
/**
* Returns the current document body as an {@link Ext.Element}.
* @ignore
* @memberOf Ext
* @return Ext.Element The document body
*/
getHead : function() {
var head;
return function() {
if (head == undefined) {
hea... | JavaScript |
/**
* @author Ed Spencer
* @class Ext.data.PolymorphicAssociation
* @extends Ext.data.Association
* @ignore
*/
Ext.data.PolymorphicAssociation = Ext.extend(Ext.data.Association, {
constructor: function(config) {
Ext.data.PolymorphicAssociation.superclass.constructor.call(this, config);
... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* JS堂翻译小组... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* JS堂翻译... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* JS堂翻译... | JavaScript |
/**
* @author Ed Spencer
* @class Ext.data.Store
* @extends Ext.data.AbstractStore
*
* <p>The Store class encapsulates a client side cache of {@link Ext.data.Model Model} objects. Stores load
* data via a {@link Ext.data.Proxy Proxy}, and also provide functions for {@link #sort sorting},
* {@link #filter filteri... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0 RC-1
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @todo
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0.1
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* JS堂翻译小组... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
Ext.data.TreeReader = Ext.extend(Ext.data.JsonReader, {
extractData : function(root, returnRecords) {
var records = Ext.data.TreeReader.superclass.extractData.call(this, root, returnRecords),
ln = records.length,
i = 0,
record;
if (returnRecords) {
f... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 0.98
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
/*
* @version Sencha 1.0RC-1
* @ignore
* @author Frank Cheung <[email protected]>
* ---------------------请保留该段信息。-------------------------
* 项目主页:http://code.google.com/p/chineseext/
* 欢迎参与我们翻译的工作!详见《Sencha Touch中文化相关事宜》:
* http://bbs.ajaxjs.com/viewthread.php?tid=2951
* ... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.