Bugs item #494452, was opened at 2001-12-17 19:47
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=494452&group_id=5757

Category: DynAPI 2 API
Group: Feature Request
Status: Open
Resolution: None
Priority: 5
Submitted By: Chris Campbell (quaelin)
Assigned to: Nobody/Anonymous (nobody)
Summary: className attribute ignored

Initial Comment:
DynLayers, like other HTML entities, can have a
className attribute set by which CSS may be used to
control style information.  However, the getOuterHTML
function does not return the class attribute.  This
simple inclusion would allow designers to more easily
control the look of their DynLayers through actual CSS
stylesheets.

Here is an example of how the getOuterHTML function
could include this attribute:

  var s='<div id="'+this.id+'" ';
  if (this.className) s+='class="'+this.className+'" ';
  s += 'style="';
  if (this.visible==false) s+=' visibility:hidden;';
  ...


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=494452&group_id=5757

_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://www.mail-archive.com/dynapi-dev@lists.sourceforge.net/

Reply via email to