摘要: First, i want to add options to Tabs constructor like this: var tabs = $("div.tabs").tabs({ "openEvent": "mouseover", "disabled": [1, 2], "current": 3 }); These options are borrowed from jQuery UITabs... 阅读全文
posted @ 2009-06-18 14:49 三生石上(FineUI控件) 阅读(717) 评论(0) 推荐(0) 编辑
摘要: I have said that i dislike jQuery UI’s unified API, so i want toget the instance of the component after invoke like this: $(function() { var tabs = $("div.tabs").tabs(); // Note: Now tabs is the... 阅读全文
posted @ 2009-06-17 15:55 三生石上(FineUI控件) 阅读(617) 评论(0) 推荐(0) 编辑
摘要: Just as the auther of jQuery Toolssaid:jQuery UI has a so-called “unified API” which uses the following syntaxfor invoking methods://callselectmethodfortabs$("ul.example").tabs("select",1)... 阅读全文
posted @ 2009-06-17 13:31 三生石上(FineUI控件) 阅读(1120) 评论(0) 推荐(0) 编辑
摘要: 1. How to judge element is visible ? if($(".nav").is(":visible")) { // This element is visible }This filter is very power, for example: <div style="display: none;"> <div id="test">This ele... 阅读全文
posted @ 2009-06-16 14:34 三生石上(FineUI控件) 阅读(441) 评论(0) 推荐(0) 编辑
摘要: Today, Flyer notify me that the page is loading twice, very strange.And this is my step to solve the problem.1. Open firebugand discovertwo requests of home.do page (HTTP action - GET).2. Open HTTPWat... 阅读全文
posted @ 2009-06-15 16:20 三生石上(FineUI控件) 阅读(388) 评论(0) 推荐(1) 编辑
摘要: There are many articles about jQuery tips and tricks on the internet.I am very happy to have so many resources for reference, and i will make my ownexamples in order to learn these tips and tricks for... 阅读全文
posted @ 2009-06-15 14:23 三生石上(FineUI控件) 阅读(686) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2009-06-11 16:22 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要: The observer pattern (a subset of the asynchronous publish/subscribe pattern) is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers,... 阅读全文
posted @ 2009-06-10 16:36 三生石上(FineUI控件) 阅读(903) 评论(0) 推荐(0) 编辑
摘要: http://wiki.developers.facebook.com/index.php/Trying_Out_Facebook_ConnectFaceBook Connect is used to quickly integrate your site with Facebook account.I look into http://www.somethingtoputhere.com/the... 阅读全文
posted @ 2009-06-05 10:11 三生石上(FineUI控件) 阅读(600) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2009-06-03 18:12 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要: The basic steps to create a qooxdoo application is as follows:Select a layout (VBox, HBox, Grid, Dock….)Create a container from the layout. (Usually Composite)Add the container to the applicati... 阅读全文
posted @ 2009-06-02 10:44 三生石上(FineUI控件) 阅读(523) 评论(1) 推荐(0) 编辑
摘要: How to create a simple table?There are two importent things exist in qooxdoo table class (qx.ui.table.Table) - Model and Selection.The model represents the columns anddata of the table, and the select... 阅读全文
posted @ 2009-06-01 16:41 三生石上(FineUI控件) 阅读(368) 评论(0) 推荐(0) 编辑
摘要: qooxdoo is a comprehensive and innovative Ajax application framework. Leveraging object-oriented JavaScript allows developers to build impressive cross-browser applications. No HTML, CSS nor DOM knowl... 阅读全文
posted @ 2009-06-01 14:32 三生石上(FineUI控件) 阅读(576) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2009-05-27 14:10 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要: When i look into JSDOC-Toolkit’s source code(run.js) under app folder, the following code confuses me:readFile: function(/**string*/ path) { if (!IO.exists(path)) { throw "File doesn't exis... 阅读全文
posted @ 2009-05-26 17:29 三生石上(FineUI控件) 阅读(279) 评论(0) 推荐(0) 编辑