qooxdoo 0.8.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News qooxdoo 0.8.2 (Default branch)
# 1  
Old 03-09-2009
qooxdoo 0.8.2 (Default branch)

Image qooxdoo is a comprehensive and innovative AJAX application framework. Leveraging object-oriented JavaScript allows developers to build impressive cross-browser applications. No HTML, CSS, or DOM knowledge is needed. It includes a platform-independent development tool chain, a GUI toolkit, and an advanced client-server communication layer. It is under an LGPL/EPL dual license. License: GNU Lesser General Public License (LGPL) Changes:
Inspector was added, which is a cross-browser debugging tool like Firebug. Many improvements and bugfixes were made. This release was tested for all common browsers, including upcoming versions like IE8. Packaging and loading of qooxdoo applications was optimized. A CSS3 selector engine and a jQuery-like low-level API were added. A preview of the upcoming data binding layer and a preview of the new infrastructure for virtual widgets are included. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CSS::DOM::Value::List(3pm)				User Contributed Perl Documentation				CSS::DOM::Value::List(3pm)

NAME
CSS::DOM::Value::List - CSSValueList class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
# ... DESCRIPTION
This module implements objects that represent CSS list property values. It implements the DOM CSSValueList interface. You can access the individual elements of the list using the "item" and "length" methods, or by using it as an array ref. METHODS
If you need the constructor, it's below the object methods. Normally you would get an object via CSS::DOM::Style's "getPropertyCSSValue" method. CSSValue Interface cssText Returns a string representation of the attribute. Pass an argument to set it. cssValueType Returns "CSS::DOM::Value::CSS_PRIMITIVE_VALUE". CSSValueList Interface item Returns the 'primitive' value at the given index. length Returns the number of values in the list. Constructor You probably don't need to call this, but here it is anyway: $val = new CSS::DOM::Value::List:: %args; The hash-style arguments are as follows. Only "values" is required. values This must be an array ref containing the individual values to be stored in the list. The individual elements can be value objects or array refs of arguments to pass to "new CSS::DOM::Value::Primitive". E.g., [ [type => CSS_PX, value => 20], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PERCENTAGE, value => 50], [type => CSS_PX, value => 50], ] css CSS code used for serialisation. This will make reading "cssText" faster at least until the value is modified. separator The value separator used in serialisation. This is usually ' ' or ', '. An empty string or "undef" is treated as a space. owner The style object that owns this value; if this is omitted, then the value is read-only. The value object holds a weak reference to the owner. property The name of the CSS property to which this value belongs. "cssText" uses this to determine how to parse text passed to it. This does not apply to the sub-values of colours, counters and rects, but it does apply to individual elements of a list value. SEE ALSO
CSS::DOM CSS::DOM::Value CSS::DOM::Value::Primitive CSS::DOM::Style perl v5.10.1 2010-12-10 CSS::DOM::Value::List(3pm)