{5} Assigned, Active Tickets by Owner (Full Description) (7 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

beau@hartshornesoftware.com

Ticket Summary Component Milestone Type Severity Created
Description
#84 Update DOM positioning API component1 MochiKit 1.5 defect normal 04/05/06

I'd like to see some changes to the DOM positioning API:

  • Rename elementDimensions to getContentDimensions, alias elementDimensions to it.
  • Add getBoxDimensions, it will include the border, margin, and padding sizes in the calculation.
  • Add getPaddingBox, getBorderBox, and getMarginBox. These will return a new {t, r, b, l} object.

Please add any suggestions as a comment to this ticket.


#143 Add JSONP to Async component1 MochiKit 1.5 enhancement normal 07/10/06

I've tried this technique on a production site, and it works pretty well. It's fast, and nobody's written in to complain about leaks or some other problem. It's kind of hackish, but I think it belongs in Async.

JSONP: http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/

JSONscriptRequest: http://www.mapbuilder.net/js/json/0.1/


#152 Example code for connecting signals to rows in big tables. component1 MochiKit 1.5 defect normal 07/25/06

Here's code for demonstrating the problem described on the mailing list on this thread.


#156 Add mouse wheel support to Signal component1 MochiKit 1.5 enhancement normal 08/02/06

http://adomas.org/javascript-mouse-wheel/


#128 Normalize event capturing and event bubbling component1 MochiKit 1.5 enhancement normal 06/10/06

IEtoW3C.js accomplishes this: Docs: http://lojjic.net/script-library/IEtoW3C-doc.html Examples: http://lojjic.net/script-library/IEtoW3C-test.html


#73 Add hidden iframe support to MochKit.Async to allow asynchronus file uploads component1 MochiKit 1.5 enhancement normal 03/21/06

I would like to be able to perform file uploads without generating a new page. It would be nice if MochiKit had this functionality. For now, I am using the dojo library which has an hidden iframe option which enables async file uploads.


cederberg@gmail.com

Ticket Summary Component Milestone Type Severity Created
Description
#123 get rid of 'import' boilerplate component1 MochiKit 1.5 enhancement normal 05/30/06

All of this could be made simpler:

if (typeof(dojo) != 'undefined') {
    dojo.provide("MochiKit.DOM");
    dojo.require("MochiKit.Base");
}
if (typeof(JSAN) != 'undefined') {
    JSAN.use("MochiKit.Base", []);
}

try {
    if (typeof(MochiKit.Base) == 'undefined') {
        throw "";
    }
} catch (e) {
    throw "MochiKit.DOM depends on MochiKit.Base!";
}

Note: See TracReports for help on using and creating reports.