code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
describe("Ext.Media", function() {
var media;
beforeEach(function() {
media = new Ext.Media();
});
afterEach(function() {
media.destroy();
});
it("should have no default url", function() {
expect(media.url).toEqual('');
});
it("should enableCon... | JavaScript |
describe("Ext.Button", function() {
var proto = Ext.Button.prototype,
button;
beforeEach(function() {
button = new Ext.Button({
text : 'button',
renderTo: Ext.getBody()
});
});
afterEach(function() {
button.destroy();
});
... | JavaScript |
describe("Ext.List", function() {
var list, data, store, listConfig;
beforeEach(function() {
Ext.regModel('Contact', {
fields: [
'name',
'age'
]
});
data = [
{
name: 'Robert Dougan',
... | JavaScript |
xdescribe("Ext.MessageBox", function() {
var mb;
beforeEach(function() {
mb = new Ext.MessageBox({
title: 'test',
msg: 'message'
});
});
}); | JavaScript |
describe("Ext.TabBar", function() {
var tb, tab1, tab2, tab3, cards;
beforeEach(function() {
tb = new Ext.TabBar({
items: [
{text: 'One'},
{text: 'Two'},
{text: 'Three'}
],
renderTo: Ext.getBody()
... | JavaScript |
describe("Ext.Video", function() {
var video;
beforeEach(function() {
video = new Ext.Video({
});
});
afterEach(function() {
video.destroy();
});
it("it should not have a posterUrl by default", function() {
expect(video.posterUrl).toEqual('');
}... | JavaScript |
describe("Ext.DataView", function() {
var proto = Ext.DataView.prototype,
buildDataView, dv, panel, store, data;
beforeEach(function() {
Ext.regModel('Contact', {
fields: [
'name',
'age'
]
});
data = [
... | JavaScript |
// I can't figure out a way to render a picker without it erroring
// I think it needs css..
describe("Ext.Picker", function() {
var proto = Ext.Picker.prototype,
p, panel, fired = false, store;
beforeEach(function() {
store = new Ext.data.Store({
model: 'x-textvalue',
... | JavaScript |
describe("Ext.Toolbar", function() {
var proto = Ext.Toolbar.prototype,
tb;
beforeEach(function() {
tb = new Ext.Toolbar({
title: 'Toolbar',
items: [
{text: 'One'},
{text: 'Two'},
{text: 'Three'}
],
... | JavaScript |
describe("Ext.form.Url", function() {
var field;
beforeEach(function() {
field = new Ext.form.Url({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a inputType", function() {
expect(field.inputType).toEq... | JavaScript |
describe("Ext.form.TextArea", function() {
var field;
beforeEach(function() {
field = new Ext.form.TextArea({
label : 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should not have maxRows", function() {
expect(field.max... | JavaScript |
describe("Ext.form.DatePicker", function() {
var field, makeField;
makeField = function(cfg) {
if (field) {
field.destroy();
}
field = new Ext.form.DatePicker(Ext.apply({
label : 'Label',
renderTo: Ext.getBody()
}, cfg || {}));
... | JavaScript |
describe("Ext.form.Hidden", function() {
var field;
beforeEach(function() {
field = new Ext.form.Hidden({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a inputType", function() {
expect(field.inputType... | JavaScript |
describe("Ext.form.Password", function() {
var field;
beforeEach(function() {
field = new Ext.form.Password({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a inputType", function() {
expect(field.input... | JavaScript |
describe("Ext.form.Radio", function() {
var field, fields, panel;
beforeEach(function() {
field = new Ext.form.Radio({
label: 'test',
name : 'test',
value: 'test1'
});
});
afterEach(function() {
field.destroy();
});
it("s... | JavaScript |
describe("Ext.form.FormPanel", function() {
var fp, user, e, called;
beforeEach(function() {
fp = new Ext.form.FormPanel({
items: [
{
xtype: 'textfield',
name : 'first',
label: 'First name'
},
... | JavaScript |
describe("Ext.form.Field", function() {
var field, panel;
beforeEach(function() {
field = new Ext.form.Field({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a isField", function() {
expect(field.isFiel... | JavaScript |
describe("Ext.form.Slider", function() {
var proto = Ext.form.Slider.prototype,
field;
beforeEach(function() {
field = new Ext.form.Slider({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a ui", functio... | JavaScript |
describe("Ext.form.Email", function() {
var field;
beforeEach(function() {
field = new Ext.form.Email({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a inputType", function() {
expect(field.inputType).... | JavaScript |
describe("Ext.form.FieldSet", function() {
var fs;
beforeEach(function() {
fs = new Ext.form.FieldSet({
title: 'fieldset',
instructions: 'instructions'
});
});
afterEach(function() {
fs.destroy();
});
it("should have a componentCls",... | JavaScript |
describe("Ext.form.Number", function() {
var field;
beforeEach(function() {
field = new Ext.form.Number({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a inputType", function() {
expect(field.inputType... | JavaScript |
describe("Ext.form.Toggle", function() {
var proto = Ext.form.Toggle.prototype,
t;
beforeEach(function() {
t = new Ext.form.Toggle({
label: 'test'
});
});
afterEach(function() {
t.destroy();
});
it("should have a minValue", function() {
... | JavaScript |
describe("Ext.form.Text", function() {
var proto = Ext.form.Text,
field, e;
beforeEach(function() {
field = new Ext.form.Text({
label: 'test',
useMask: true
});
});
afterEach(function() {
e = null;
field.destroy();
});
it... | JavaScript |
describe("Ext.form.Select", function() {
var proto = Ext.form.Select.prototype,
select, options, store,
makeSelect;
beforeEach(function() {
options = [
{text: 'First Option', value: 'first'},
{text: 'Second Option', value: 'second'},
{text: 'Thir... | JavaScript |
describe("Ext.form.Search", function() {
var field;
beforeEach(function() {
field = new Ext.form.Search({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have an inputType", function() {
expect(field.inputTyp... | JavaScript |
describe("Ext.form.Spinner", function() {
var field;
beforeEach(function() {
field = new Ext.form.Spinner({
label: 'test'
});
});
afterEach(function() {
field.destroy();
});
it("should have a componentCls", function() {
expect(field.comp... | JavaScript |
describe("Ext.form.Checkbox", function() {
var cb, panel, fields;
beforeEach(function() {
cb = new Ext.form.Checkbox({
label: 'test',
value: 'testvalue'
});
});
afterEach(function() {
cb.destroy();
});
it("should have a inputType", f... | JavaScript |
describe("Ext.Panel", function() {
var panel;
beforeEach(function() {
panel = new Ext.Panel({
renderTo: Ext.getBody()
});
});
afterEach(function() {
panel.destroy();
});
it("should not scroll by default", function() {
expect(panel.scroll... | JavaScript |
describe("Ext.SegmentedButton", function() {
var sb;
beforeEach(function() {
sb = new Ext.SegmentedButton({
items: [
{
text: 'Option 1',
pressed: true
},
{
text: 'Option 2',
... | JavaScript |
describe("Ext.Component", function() {
var proto = Ext.Component.prototype,
component, componentOld, btn;
beforeEach(function() {
component = new Ext.Component({
renderTo: Ext.getBody()
});
});
afterEach(function() {
component.destroy();
});
... | JavaScript |
describe("Ext.NestedList", function() {
var proto = Ext.NestedList.prototype,
makeNestedList,
nl, data, store, e;
data = {
text: 'Groceries',
items: [{
text: 'Drinks',
items: [{
text: 'Water',
items: [{
... | JavaScript |
describe("Ext.Carousel", function() {
var proto = Ext.Carousel.prototype,
makeCarousel,
carousel,
card, card1, card2, card3, card4, card5, card6, e;
beforeEach(function() {
makeCarousel = function(config) {
carousel = new Ext.Carousel(Ext.apply({
... | JavaScript |
describe("Ext.Element - static-more", function() {
var proto = Ext.Element.prototype,
el, testEl;
beforeEach(function() {
testEl = Ext.getBody().createChild({
id: 'ExtElementHelper'
});
el = Ext.getDom(new Ext.Element('ExtElementHelper'));
});
describe("css... | JavaScript |
describe("Ext.DomHelper", function() {
var dh = Ext.DomHelper,
el, els;
beforeEach(function() {
el = Ext.getBody().createChild({
id : 'DomHelperHelper',
children: [
{cls: 'child', id: 'firstChild'},
{cls: 'child'},
... | JavaScript |
describe("Ext.CompositeElement", function() {
var proto = Ext.CompositeElement.prototype,
el, els,
el2, els2;
beforeEach(function() {
el = Ext.getBody().createChild({
id : 'CompositeElementHelper',
children: [
{cls: 'child', id: 'firstChi... | JavaScript |
describe("Ext.Element - position", function() {
var proto = Ext.Element.prototype,
el, testEl,
input, testInputEl,
child1, child2, child3;
beforeEach(function() {
testEl = Ext.getBody().createChild({
id : 'ExtElementHelper',
style : 'position:a... | JavaScript |
describe("Ext.Anim", function() {
}); | JavaScript |
describe("Ext.DomQuery", function() {
var dq = Ext.DomQuery,
el, els;
beforeEach(function() {
el = Ext.getBody().createChild({
id : 'DomQueryHelper',
children: [
{cls: 'child', id: 'firstChild'},
{cls: 'child'},
{c... | JavaScript |
describe("Ext.Element - style", function() {
var proto = Ext.Element,
el, testEl,
input, testInputEl,
child1, child2, child3;
beforeEach(function() {
testEl = Ext.getBody().createChild({
id : 'ExtElementHelper',
style : 'position:absolute;',
... | JavaScript |
describe("Ext.Element - alignment", function() {
var proto = Ext.Element.prototype,
el;
beforeEach(function() {
el = Ext.getBody().createChild({
id: 'ExtElementHelper',
style: {
position: 'absolute',
top : 0,
... | JavaScript |
describe("Ext.Element - traversal - more", function() {
var proto = Ext.Element,
el, testEl,
input, testInputEl,
child1, child2, child3, child4, child5;
beforeEach(function() {
testEl = Ext.getBody().createChild({
id : 'ExtElementHelper',
cls ... | JavaScript |
describe("Ext", function() {
var config, hasMeta, hasLink;
beforeEach(function() {
hasMeta = function(name) {
var tags = document.getElementsByTagName("meta"),
found = false,
i;
for (i = 0; i < tags.length; i++) {
... | JavaScript |
describe("Ext.Element", function() {
var proto = Ext.Element.prototype,
el, testEl,
input, testInputEl;
beforeEach(function() {
testEl = Ext.getBody().createChild({
id: 'ExtElementHelper'
});
testInputEl = Ext.getBody().createChild({
id : 'ExtEl... | JavaScript |
describe("Ext.gesture.Tap", function() {
var manager = Ext.gesture.Manager,
gesture, spy,
listener = {fire: function() {}};
describe("events", function() {
describe("tapstart", function() {
beforeEach(function() {
spy = spyOn(listener, 'fire');
... | JavaScript |
describe("Ext.gesture.Drag", function() {
var manager = Ext.gesture.Manager,
gesture, spy,
listener = {fire: function() {}};
describe("events", function() {
describe("dragstart", function() {
beforeEach(function() {
spy = spyOn(listener, 'fire');
... | JavaScript |
describe("Ext.gesture.Manager", function() {
var manager = Ext.gesture.Manager,
startSpy, moveSpy, endSpy;
describe("listeners", function() {
it("should fire touchstart", function() {
runs(function() {
eventSimulator.fire('mousedown', document.body, {
... | JavaScript |
describe("Ext.gesture.Touch", function() {
var manager = Ext.gesture.Manager,
gesture, spy,
listener = {fire: function() {}};
describe("events", function() {
describe("touchstart", function() {
beforeEach(function() {
spy = spyOn(listener, 'fire');
... | JavaScript |
describe("Ext.gesture.Swipe", function() {
var manager = Ext.gesture.Manager,
gesture, spy,
listener = {fire: function() {}};
describe("events", function() {
describe("swipe", function() {
beforeEach(function() {
spy = spyOn(listener, 'fire');
... | JavaScript |
describe("Ext.util.Sortable", function() {
var tabPanel, sortable, createSortable, proto, e,
called = false;
beforeEach(function() {
tabPanel = new Ext.TabPanel({
items: [
{text: 'One'},
{text: 'Two'},
{text: 'Three'}
]... | JavaScript |
describe("Ext.util.GeoLocation", function() {
var geo;
beforeEach(function() {
geo = new Ext.util.GeoLocation();
});
if (Ext.supports.GeoLocation) {
describe("if browser has geolocation support", function() {
beforeEach(function() {
spyOn(Ext.util.GeoLocation.prototyp... | JavaScript |
describe("Ext.util.JSONP", function() {
var jsonp = Ext.util.JSONP, url, params, scripts, scriptLength, headChildLength, makeRequest;
beforeEach(function() {
jsonp.current = null;
jsonp.queue = [];
url = 'test.jsonp';
params = {
test: 'test'
};
... | JavaScript |
describe("Ext.util.Scroller", function() {
var proto = Ext.util.Scroller.prototype,
el, scrollEl, makeScroller, scroller;
beforeEach(function() {
makeScroller = function(config) {
el = new Ext.Panel({
id : 'scrollerHelperEl',
width : 100,
... | JavaScript |
describe("Ext.util.Draggable", function() {
var createDraggable, draggable, btn, e, panel,
proto = Ext.util.Draggable.prototype,
called = false;
beforeEach(function() {
btn = new Ext.Button({
text : 'Button',
renderTo: Ext.getBody()
});
... | JavaScript |
xdescribe("Ext.util.Droppable", function() {
var createDroppable, droppable, btn, e, panel,
proto = Ext.util.Droppable.prototype,
called = false;
beforeEach(function() {
btn = new Ext.Button({
text : 'Button',
renderTo: Ext.getBody()
});
... | JavaScript |
describe("Ext.util.TapRepeater", function() {
var btn, tr, called = false, e;
beforeEach(function() {
btn = new Ext.Button({
text : 'Button',
renderTo: Ext.getBody()
});
tr = new Ext.util.TapRepeater(btn.el, {
preventDefault: true
... | JavaScript |
Ext.setup({
icon : 'img/icon.png',
tabletStartupScreen : 'img/tablet_startup.png',
phoneStartupScreen : 'img/phone_startup.png',
glossOnIcon: false,
onReady: function() {
var form;
var formBase = {
scroll: 'vertical',
url : './basic/LoginController/login.action',
... | JavaScript |
Ext.setup({
icon : 'img/icon.png',
tabletStartupScreen : 'img/tablet_startup.png',
phoneStartupScreen : 'img/phone_startup.png',
glossOnIcon: false,
onReady: function() {
Ext.regModel('Cars', {
fields: [
{name: 'text', type: 'string'}
]
});
Ext.regModel('CarInfor',... | JavaScript |
/*
* Because of limitation of the current WebKit implementation of CSS3 column layout,
* I have decided to revert back to using table.
*/
Ext.ns("Ext.ux");
Ext.ux.TouchGridPanel = Ext.extend(Ext.Panel, {
layout : "fit",
multiSelect : false,
scroll : "vertical",
initComponent : function() {
... | JavaScript |
Ext.ns("Demo.data");
/* Move away from remote loaded till testing */
/*Ext.regModel("Pages", {
fields: [
{name : "id" },
{name : "title" },
{name : "html" },
{name : "cmp" }
]
});
Demo.data.InfiniteCarouselStore = new Ext.data.Store({
model : "Pages",
autoLoad : true,
proxy ... | JavaScript |
/*
Author : Mitchell Simoens
Site : http://simoens.org/Sencha-Projects/demos/
Contact Info : mitchellsimoens@gmail.com
Purpose : Needed to have a paging toolbar for Ext.DataView, Ext.List, and Ext.ux.TouchGridPanel
License : GPL v3 (http://www.gnu.org/licenses/gpl.html)
War... | JavaScript |
Ext.ns("Ext.plugin.touch.form");
Ext.plugin.touch.form.Speech = Ext.extend(Object, {
init: function(cmp) {
var me = this;
cmp.on("afterrender", me.onAfterRender, me);
},
onAfterRender: function(cmp) {
cmp.fieldEl.set({
"x-webkit-speech": ""
});
}
});
Ext.preg("form.speech", Ext.plugin.touch.form.Spee... | JavaScript |
Ext.ns("Ext.layout");
Ext.layout.ColumnLayout = Ext.extend(Ext.layout.ContainerLayout, {
/**
* @cfg {String} itemCls
* Default CSS class to be added to each item.
* Default: 'x-column-item'
*/
itemCls: "x-column-item",
/**
* @cfg {String} targetCls
* Default CSS class to be added to target el.
... | JavaScript |
Ext.ns("Ext.plugin.touch");
Ext.plugin.touch.GridEditor = Ext.extend(Ext.util.Observable, {
listenEvent : "taphold",
init: function(cmp) {
var me = this;
me.cmp = cmp;
cmp.on("afterrender", me.initListeners, me);
cmp.on("beforedestroy", me.cleanUp, me);
},
cleanUp: function() {
var me = this;
delet... | JavaScript |
Ext.ns("news");
news.Structure = [{
text : "Ext.ux.touch.InfiniteCarousel",
leaf : true,
card : new Ext.ux.touch.InfiniteCarousel({
store : Demo.data.InfiniteCarouselStore
})
},{
text : "Ext.plugin.touch.form.Speech",
leaf : true,
card : new Ext.form.FormPanel({
items : [
{ xtype : "textfield", label : "S... | JavaScript |
/*
Author : Mitchell Simoens
Site : http://simoens.org/Sencha-Projects/demos/
Contact Info : mitchellsimoens@gmail.com
Purpose : Create more customizable Select field
License : GPL v3 (http://www.gnu.org/licenses/gpl.html)
Warranty : none
Price : free
Ver... | JavaScript |
Ext.ns('news', 'demos', 'Ext.ux');
Ext.ux.UniversalUI = Ext.extend(Ext.Panel, {
fullscreen: true,
layout: 'card',
items: [{
cls: 'launchscreen',
html: '<div><img src="sencha.png" width="210" height="291" /><h1>Welcome to Sencha Touch</h1><p>This is a collection of Sencha Touch demos, extens... | JavaScript |
/*
Author : Mitchell Simoens
Site : http://simoens.org/Sencha-Projects/demos/
Contact Info : mitchellsimoens@gmail.com
Purpose : Needed to have a paging toolbar for Ext.DataView, Ext.List, and Ext.ux.TouchGridPanel
License : GPL v3 (http://www.gnu.org/licenses/gpl.html)
War... | JavaScript |
Ext.ns("Ext.touch");
Ext.touch.SegmentedButton = Ext.extend(Ext.SegmentedButton, {
direction : "horizontal",
componentClsVert: "x-segmentedbutton-v",
initComponent : function() {
var me = this;
if (me.direction === "vertical") {
Ext.apply(me, {
componentCls : me.componentClsVert || "x-segmentedbutton-v... | JavaScript |
/*
Author : Mitchell Simoens
Site : http://simoens.org/Sencha-Projects/demos/
Contact Info : mitchellsimoens@gmail.com
Purpose : Creation of a custom color picker
License : GPL v3 (http://www.gnu.org/licenses/gpl.html)
Warranty : none
Price : free
Versio... | JavaScript |
Ext.ns('Ext.ux.touch');
Ext.ux.touch.InfiniteCarousel = Ext.extend(Ext.Carousel, {
// @private
// Keeps track of the current page
activePage : 0,
/**
* @cfg {Boolean} allowWrap
* Allow to wrap around when at end or beginning
* default: true
*/
allowWrap : true,
/**
* @... | JavaScript |
Ext.ns("Ext.layout");
Ext.layout.AccordionLayout = Ext.extend(Ext.layout.ContainerLayout, {
/**
* @cfg {String} activeItem
* The active item to start active.
* Default: 0
*/
activeItem: 0,
/**
* @cfg {String} itemCls
* Default CSS class to be added to each item.
* Default: 'x-accordion-item'
... | JavaScript |
Ext.ns("Ext.plugin.touch");
Ext.plugin.touch.CardSwipe = Ext.extend(Object, {
wrap : true,
init: function(cmp) {
var me = this;
me.anim = {
type : cmp.cardSwitchAnimation || me.anim
};
me.cmp = cmp;
cmp.on("afterrender", me.addListener, me, { single : true });
},
addListener: function(cmp) {
va... | JavaScript |
var indexdata =
[
{ text: '基础',isexpand:false, children: [
{url:"demos/base/resizable.htm",text:"改变大小"},
{url:"demos/base/drag.htm",text:"拖动"},
{url:"demos/base/drag2.htm",text:"拖动2"},
{url:"demos/base/dragresizable.htm",text:"拖动并改变大小"},
{url:"demos/base/tip.htm",text:"气泡"},
{url:"demos/base/... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
//全局事件
$(".l-dialog-btn").live('mouseover', function ()
{
$(this).addClass("l-dialog-btn-over");
}).live('mouseout', function ()
{... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerCheckBox = function (options)
{
return $.ligerui.run.call(this, "ligerCheckBox", arguments);
};
$.fn.ligerGetCheckBoxManager = function ()
{
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
l.windowCount = 0;
$.ligerWindow = function (options)
{
return l.run.call(null, "ligerWindow", arguments, { isStatic: true });
};
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerFilter = function ()
{
return $.ligerui.run.call(this, "ligerFilter", arguments);
};
$.fn.ligerGetFilterManager = function ()
{
return $.... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerAccordion = function (options)
{
return $.ligerui.run.call(this, "ligerAccordion", arguments);
};
$.fn.ligerGetAccordionManager = function ()
{
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.ligerMenu = function (options)
{
return $.ligerui.run.call(null, "ligerMenu", arguments);
};
$.ligerDefaults.Menu = {
width: 120,
top: 0,
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerResizable = function (options)
{
return $.ligerui.run.call(this, "ligerResizable", arguments,
{
idAttrName: 'ligeruiresizableid', hasElement: ... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTab = function (options)
{
return $.ligerui.run.call(this, "ligerTab", arguments);
};
$.fn.ligerGetTabManager = function ()
{
return $.... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerMenuBar = function (options)
{
return $.ligerui.run.call(this, "ligerMenuBar", arguments);
};
$.fn.ligerGetMenuBarManager = function ()
{
r... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerForm = function ()
{
return $.ligerui.run.call(this, "ligerForm", arguments);
};
$.ligerDefaults = $.ligerDefaults || {};
$.ligerDefaults.Form = {... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerRadio = function ()
{
return $.ligerui.run.call(this, "ligerRadio", arguments);
};
$.fn.ligerGetRadioManager = function ()
{
return $... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerLayout = function (options)
{
return $.ligerui.run.call(this, "ligerLayout", arguments);
};
$.fn.ligerGetLayoutManager = function ()
{
re... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
$.fn.ligerDrag = function (options)
{
return l.run.call(this, "ligerDrag", arguments,
{
idAttrName: 'ligeruidragid', hasEle... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerDateEditor = function ()
{
return $.ligerui.run.call(this, "ligerDateEditor", arguments);
};
$.fn.ligerGetDateEditorManager = function ()
{
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerToolBar = function (options)
{
return $.ligerui.run.call(this, "ligerToolBar", arguments);
};
$.fn.ligerGetToolBarManager = function ()
{
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerComboBox = function (options)
{
return $.ligerui.run.call(this, "ligerComboBox", arguments);
};
$.fn.ligerGetComboBoxManager = function ()
{
... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
var l = $.ligerui;
$.fn.ligerGrid = function (options)
{
return $.ligerui.run.call(this, "ligerGrid", arguments);
};
$.fn.ligerGetGridManager = function... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTree = function (options)
{
return $.ligerui.run.call(this, "ligerTree", arguments);
};
$.fn.ligerGetTreeManager = function ()
{
return $... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerTextBox = function ()
{
return $.ligerui.run.call(this, "ligerTextBox", arguments);
};
$.fn.ligerGetTextBoxManager = function ()
{
return... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerButton = function (options)
{
return $.ligerui.run.call(this, "ligerButton", arguments);
};
$.fn.ligerGetButtonManager = function ()
{
re... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerSpinner = function ()
{
return $.ligerui.run.call(this, "ligerSpinner", arguments);
};
$.fn.ligerGetSpinnerManager = function ()
{
return $... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//气泡,可以在制定位置显示
$.ligerTip = function (p)
{
return $.ligerui.run.call(null, "ligerTip", arguments);
};
//在指定Dom Element右侧显示气泡
//target:将ligerui对象ID附加上... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.fn.ligerEasyTab = function ()
{
return $.ligerui.run.call(this, "ligerEasyTab", arguments);
};
$.fn.ligerGetEasyTabManager = function ()
{
return $... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
$.ligerMessageBox = function (options)
{
return $.ligerui.run.call(null, "ligerMessageBox", arguments, { isStatic: true });
};
$.ligerDefaults.MessageBox = {... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//ligerui 继承方法
Function.prototype.ligerExtend = function (parent, overrides)
{
if (typeof parent != 'function') return this;
//保存对父类的引用
this.base ... | JavaScript |
/**
* jQuery ligerUI 1.1.9
*
* http://ligerui.com
*
* Author daomi 2012 [ gd_star@163.com ]
*
*/
(function ($)
{
//ligerui 继承方法
Function.prototype.ligerExtend = function (parent, overrides)
{
if (typeof parent != 'function') return this;
//保存对父类的引用
this.base ... | JavaScript |
/*
http://www.JSON.org/json2.js
2010-11-17
Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
See http://www.JSON.org/js.html
This code should be minified before deployment.
See http://javascript.crockford.com/jsmin.html
USE YOUR OWN COPY. IT IS EX... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.