|
View:
New views
9 Messages
—
Rating Filter:
Alert me
|
|
|
508 accessibility supportWill wicket ever provide support for 508 accessibility in current or any
of the future releases ? here is 508 accessibility (http://www.section508.gov/) |
|
|
Re: 508 accessibility supporthow exactly does wicket hinder 508?
-igor On Thu, Oct 29, 2009 at 1:04 PM, tubin gen <fachhoch@...> wrote: > Will wicket ever provide support for 508 accessibility in current or any > of the future releases ? > here is 508 accessibility (http://www.section508.gov/) > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: 508 accessibility supportWicket uses HTML as its template markup. So as long as you code your
HTML properly, and it is 508 compliant, you're in the clear. Wicket doesn't present any roadblocks to 508 compliance. On Oct 29, 2009, at 9:04 PM, tubin gen wrote: > Will wicket ever provide support for 508 accessibility in current > or any > of the future releases ? > here is 508 accessibility (http://www.section508.gov/) To our success! Mystic Coders, LLC | Code Magic | www.mysticcoders.com ANDREW LOMBARDI | andrew@... 2321 E 4th St. Ste C-128, Santa Ana CA 92705 ofc: 714-816-4488 fax: 714-782-6024 cell: 714-697-8046 linked-in: http://www.linkedin.com/in/andrewlombardi twitter: http://www.twitter.com/kinabalu Eco-Tip: Printing e-mails is usually a waste. ======================================================== This message is for the named person's use only. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. ======================================================== |
|
|
Re: 508 accessibility supportsome of the html is generated by wicket like AjaxFallbackDataTable , pagination , AjaxTabs , DatePicker etc if these components have provision to make them 508 that will be really helpful.
|
|
|
Re: 508 accessibility supportOverride their HTML or make your own components. Simple. Done.
-- Jeremy Thomerson http://www.wickettraining.com On Fri, Oct 30, 2009 at 9:06 AM, fachhoch <fachhoch@...> wrote: > > some of the html is generated by wicket like AjaxFallbackDataTable , > pagination , AjaxTabs , DatePicker etc if these components have > provision > to make them 508 that will be really helpful. > > > kinabalu wrote: > > > > Wicket uses HTML as its template markup. So as long as you code your > > HTML properly, and it is 508 compliant, you're in the clear. Wicket > > doesn't present any roadblocks to 508 compliance. > > > > On Oct 29, 2009, at 9:04 PM, tubin gen wrote: > > > >> Will wicket ever provide support for 508 accessibility in current > >> or any > >> of the future releases ? > >> here is 508 accessibility (http://www.section508.gov/) > > > > > > To our success! > > > > Mystic Coders, LLC | Code Magic | www.mysticcoders.com > > > > ANDREW LOMBARDI | andrew@... > > 2321 E 4th St. Ste C-128, Santa Ana CA 92705 > > ofc: 714-816-4488 > > fax: 714-782-6024 > > cell: 714-697-8046 > > linked-in: http://www.linkedin.com/in/andrewlombardi > > twitter: http://www.twitter.com/kinabalu > > > > Eco-Tip: Printing e-mails is usually a waste. > > > > ======================================================== > > This message is for the named person's use only. You must not, > > directly or indirectly, use, > > disclose, distribute, print, or copy any part of this message if you > > are not the intended recipient. > > ======================================================== > > > > > > > > -- > View this message in context: > http://old.nabble.com/508-accessibility-support-tp26119812p26130678.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... > > |
|
|
Re: 508 accessibility supportHi,
at a short glance (http://www.webaim.org/standards/508/checklist) I didn't find anything inherent in Wicket violating this standard. Of course you will have to provide most of the required markup by yourself (how should Wicket know values for "alt" attributes?). Nevertheless if you're able to identify something valuable to be added to Wicket's components, we're all ears. Regards Sven Jeremy Thomerson wrote: > Override their HTML or make your own components. Simple. Done. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Fri, Oct 30, 2009 at 9:06 AM, fachhoch <fachhoch@...> wrote: > > >> some of the html is generated by wicket like AjaxFallbackDataTable , >> pagination , AjaxTabs , DatePicker etc if these components have >> provision >> to make them 508 that will be really helpful. >> >> >> kinabalu wrote: >> >>> Wicket uses HTML as its template markup. So as long as you code your >>> HTML properly, and it is 508 compliant, you're in the clear. Wicket >>> doesn't present any roadblocks to 508 compliance. >>> >>> On Oct 29, 2009, at 9:04 PM, tubin gen wrote: >>> >>> >>>> Will wicket ever provide support for 508 accessibility in current >>>> or any >>>> of the future releases ? >>>> here is 508 accessibility (http://www.section508.gov/) >>>> >>> To our success! >>> >>> Mystic Coders, LLC | Code Magic | www.mysticcoders.com >>> >>> ANDREW LOMBARDI | andrew@... >>> 2321 E 4th St. Ste C-128, Santa Ana CA 92705 >>> ofc: 714-816-4488 >>> fax: 714-782-6024 >>> cell: 714-697-8046 >>> linked-in: http://www.linkedin.com/in/andrewlombardi >>> twitter: http://www.twitter.com/kinabalu >>> >>> Eco-Tip: Printing e-mails is usually a waste. >>> >>> ======================================================== >>> This message is for the named person's use only. You must not, >>> directly or indirectly, use, >>> disclose, distribute, print, or copy any part of this message if you >>> are not the intended recipient. >>> ======================================================== >>> >>> >>> >>> >> -- >> View this message in context: >> http://old.nabble.com/508-accessibility-support-tp26119812p26130678.html >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: users-unsubscribe@... >> For additional commands, e-mail: users-help@... >> >> >> > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: 508 accessibility supportI am not complaining that wicket violates that .
for example AjaxDefaultDataTable it creates the whole table with Sortable Table column, pagination etc, I am asking to provide some methods which takes values for alt attribute . Like the sortable columns , If I can set value for alt attribute that would be really nice. It would be much easier to provide this alt attribute than recreating the whole html , component my self copying from exsisting one and adding additional code for alt attribute.
|
|
|
Re: 508 accessibility support>
> takes values for alt attribute . Like the sortable columns , If I > can set > value for alt attribute that would be really nice. how about: div.add( new AttributeModifier( "alt", true, new Model<String>( "what it should say..." )) --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: 508 accessibility support AjaxFallbackDefaultDataTable we add columns, I use PropertyColumn , can I add any attributemodifier to it ?
|
| Free embeddable forum powered by Nabble | Forum Help |