-
http://developer.yahoo.com/yui/yuitest/#ignoring
@171
- testName: true; //ignore this test
+ testName: true //ignore this test
@232
- testSortArray: true; //this test should throw an error
+ testSortArray: true //this test should throw an error
@274
- testSortArray: "Expected an array";
+.
2007-08-20 12:01:17 UTC in YUI Library
-
@3297
- * @method populateTable
+ * @method paginateRows
/**
* @deprecated Deprecated in favor of populateTable().
* @method populateTable
*/
YAHOO.widget.DataTable.prototype.paginateRows = function() {
this.populateTable();
};.
2007-05-31 19:10:51 UTC in YUI Library
-
This isn't a "starter kit", but as "showcases" go, it sure is pretty.
* http://demo.qooxdoo.org/current/showcase/.
2007-05-31 10:07:38 UTC in YUI Library
-
This feature was suggested by devasayam on the mailing list.
> What I would like to see is to have YUI loads its parts
> and components all on its own with some sort of
> YAOO.include method using a base library path set
> elsewhere and brief identifiers, not full URLs for each
> of the end components. Many times we see messages in
> this list about user scripts failing because the.
2007-05-30 12:46:43 UTC in YUI Library
-
Rather than present the documentation for library comoponents in arbitrary, alphabetic order, introduce the components in order of dependency, so that someone can browse the documentation from "beginning" to "end" and see how the components fit together.
* http://yazaar.org/wiki/HappyTrails.
2007-05-27 21:42:38 UTC in YUI Library
-
It would be helpful if the library incuded at least one non-trivial example application that used several widget together, as we do in production applications. Perhaps a Petstore or PIM application.
* http://code.google.com/p/sq1-petstore/
* http://yazaar.org/examples/pim/Menu.html.
2007-05-27 21:42:19 UTC in YUI Library
-
The examples in the "sandbox" area seem to be what is commonly called "cookbook" or "quickstart" examples. Perhaps we should rename or relocate the area, and add a link from the home page menu bar.
A followup suggestion would be to create a new "Sandbox" area to host beta and experimental components until they are ready to be bundled with the main library.
2007-05-27 21:41:58 UTC in YUI Library
-
We had a free GeoCities account setup that used a standard, no frills TabView. When switching to another tab, the widget would "bounce" back to the first tab each time. We upgraded to a GeoCities Pro and the problem disappeared, so, evidentially, there is a conflict with the GeoCities Ads and the YUI TabView.
Since we upgraded, and I only had the one free account, I can't offer a URI...
2007-04-20 13:11:52 UTC in YUI Library
-
Under some circumstance, DT 2.2.2 can select multiple rows when RowSingleSelect is enabled. One quick fix is to change line 3758 (in debug) version to unselect all rows
- this.unselect(this._lastSelectedId);
+ this.unselectAllRows();
Creating separate helper methods for singleRowSelect and !singleRowSelect could simplify onEventSelectRow. A nested if/else statement running to 100+ lines...
2007-04-19 18:49:30 UTC in YUI Library
-
If showPage is called to refresh the data without a paginator, a null exception is thrown. One fix would be:
YAHOO.widget.DataTable.prototype.showPage = function(nPage) {
// Validate input with null guards
if (!YAHOO.lang.isNumber(nPage)) nPage = 1;
if (this._paginator) {
if (nPage > this._paginator.totalPages) nPage = 1;
this._paginator.currentPage = nPage;
}...
2007-04-19 18:41:59 UTC in YUI Library