Table Accessibility Scope, Axis, ID, Headers

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Table Accessibility Scope, Axis, ID, Headers

    Desperately need extension of insert 508 tags for Scope, Axis, ID and Headers
    into Tables. The market for this is big as the feds, states, and many
    countries are now requiring that documents on the web be compliant with Section
    508 of ADA. I'm really surprised there is no such extension already, but I'll
    be damned if I can find one.

    raeben3 Guest

  2. Similar Questions and Discussions

    1. static table headers
      hi: ASP/VBScript/Access being most of the time on the server-side i guess i'm not aware of the best approach, regarding...
    2. CFDocument and repeating table headers
      I'm trying to output a multi-page report (essentially a large table) across multiple pages in PDF format. I know that the <cfdocumentitem> tag...
    3. Sort a repeat region in a table by clicking on the table headers
      Sort a repeat region in a table by clicking on the table headers for ASP some help on this topic pls.. Rgds MeTin
    4. Can SoapExtension class be used to handle headers from AXIS web services? (eom)
      Hi, Is it possible to consume an AXIS rpc-based web service and manipulate the soap header/body using the SoapExtension class in .NET? In other...
    5. Consuming AXIS w/ headers from .NET
      Hey All, I've been successful in authenticating to a particular rpc-based, AXIS web service by adding my own "BASIC Authorization" header to the...
  3. #2

    Default Re: Table Accessibility Scope, Axis, ID, Headers

    raeben3 wrote:
    > Desperately need extension of insert 508 tags for Scope, Axis, ID and Headers
    > into Tables. The market for this is big as the feds, states, and many
    > countries are now requiring that documents on the web be compliant with Section
    > 508 of ADA. I'm really surprised there is no such extension already, but I'll
    > be damned if I can find one.
    TH tags can be added/modified quite easily either when adding the table via the Insert bar object and selecting where you'd like the headers to be, or by selecting the TD cells you want to convert and then checking the Header box in the property inspector.

    ID values are easily added to a table by selecting it and entering in a value into the field on the upper left, just below the Table label.

    Scope and axis attributes are easily added to individual TD/TH tags in code view. Given that, though, suggested values aren't available for scope, but you can add them yourself:
    Edit -> Tag Libraries, open HTML tags, open td, select scope
    Change Attribute type to Enumerated and then enter in a comma separate list of attribute values you'd like to use. According to:
    [url]http://www.w3.org/TR/REC-html40/struct/tables.html#adef-scope[/url]
    col,colgroup,row,rowgroup

    Repeat for TH. Click OK and now in code view, when you're within a TH or TD tag and you hit space, you should get code hints that appear and when you begin to type scope it'll become hightlighted in the hints, hit the enter key to accept the hint and you should be presented with the attribute value hints.

    I've really never used axis before, but reading the descirption here:
    [url]http://www.w3.org/TR/REC-html40/struct/tables.html#adef-axis[/url]
    It seems like x,y,z could be used as values within the tag library for TH and TD. Not sure what else might be usable in that attribute.

    Perhaps you can explain a bit more about what you'd like to see in such an extension, as other may have seen something like what you want, or maybe are industrious enough to create one.



    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139