Questions tagged [accessible]

The degree to which a product, device, service, or environment is available to as many people as possible.

69 questions
1
vote
0 answers

How can I switch out synthesized readers on a web page?

I am working on a version of "Huck Finn" that displays dialog in different colors, depending on the speaker (purple for Huckleberry, brown for his Pap, etc.) A working model can be seen here by using CSS like so: #huck { color: purple; } ...and…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
1
vote
1 answer

How can i save files in the phone accessible by several apps?

I try to develop several WP8 apps using the same credentials for all(same user and password).So if the user choose to change his credentials he does only once in one app and it will change for all. Until now i used Isolatedstorage to save the…
Paul Martinez
  • 562
  • 1
  • 9
  • 19
1
vote
3 answers

"Can't mass-assign protected attributes" error, even they exists in attr_accessible

I have a table, created from a database migration: class CreateTickets < ActiveRecord::Migration def up create_table :tickets, :primary_key => :tickets_id do |t| t.string :title, null: false t.text :body t.datetime :create_date t.integer…
dio_bless
  • 435
  • 2
  • 5
  • 13
1
vote
2 answers

symfony2 how to access app/Resources/img from browser?

I've got some project specific images that I don't want to include in any bundle. I'd like to have them accessible from twig layer. The question is: how can I publish them (I can see neither symlinks in web directory nor assetic config in my…
ducin
  • 25,621
  • 41
  • 157
  • 256
1
vote
1 answer

CanCan/Rolify: Read access for user on model is declined

I use CanCan and rolify to setup access rights for a Farm model. # ability.rb class Ability include CanCan::Ability def initialize(user) # Create guest user aka. anonymous (not logged-in) when user is nil. user ||= User.new if…
JJD
  • 50,076
  • 60
  • 203
  • 339
1
vote
3 answers

Asp.net SQL server instance not found or not accessible

I'm working on a web project, when I was using the vs2008 everything works fine. But after I use another machine and work under vs2012 using the same way setting up the project, exception always saying instance not found or not accessible. I have…
Ivan Li
  • 1,850
  • 4
  • 19
  • 23
1
vote
0 answers

has and belongs to more than 1 table

I have an scaffold (critical_factor) with some fields like catalog_table_id and selectRight and also other scaffold (catalog_table) with the fields name table_name, model. When I select in the critical_factor view in the field catalog_table_id the…
0
votes
1 answer

cakephp ACL: list all documents accessible to the user

I am using cakephp for some time now and just started with ACL. I've got it up and running, except one thing. How can I find all documents available to the current user? I have several groups (super users, admins and general users) set up in the…
Kriddy
  • 1
0
votes
0 answers

expose external ip to web for accessing erp

i have installed erpnext in ubuntu from gcp instance ssh ,in my instance i have two ip address one is internal and external,now i want the erpnext for production use that should be accessible through external ip as a url with port 80 or 443,if anny…
0
votes
1 answer

Accessibility: Spinner Status Messages Guidelines

Scenario Using a screen reader such as NVDA, VoiceOver, or TalkBack, after all dropdown selections are made, show loading spinner overlay while data is retrieved from the server. Question First I want to mention that this is a high level question…
Caleb
  • 17
  • 8
0
votes
0 answers

VoiceOver interrupts my description when announcing "invalid data"

I'm trying to work on a simple accessible form. It has a field for the user to input their full name.
0
votes
1 answer

Is leaflet with OSM accessible in China?

Good day! I just want to know whether leaflet is usable in China continent. My service uses googleMap API but google map is not working in China. So If leaflet with OSM is accessible in China, I want to take it for next project. Is leaflet with OSM…
0
votes
2 answers

How to make screen reader reads aria-label inside ?

I'd like the screenreader to read the text "Stories, menu item" when the mouse hovers over the "Stories" button in the menu bar. I have tried to add aria-label as well as aria-describedby inside the span but the screenreader is still reading the…
superninja
  • 3,114
  • 7
  • 30
  • 63
0
votes
2 answers

How can I allow alt text to be viewed on my images (wordpress theme kallyas)

I'm trying to update my company's website to be more ADA friendly by ensuring all images have alt-text assigned. However, when I add alt text on the Wordpress CMS, I'm not able to view it in the HTML. Please see attached screenshots for reference. I…
0
votes
1 answer

Trigger transition of parent when child targeted

I have created a button that eventually will have an onclick event-- when the user hovers over the button a div element pops up with an anchor that says "learn more" (in the example i used a long string to help solidify the issue) The code i…