The access-keys tag has no wiki summary.
0
votes
0answers
21 views
How to get accessKeyLabel in WebKit with JavaScript?
accessKeyLabel from what I can tell is not supported in Webkit (but works fine in Firefox) at the time of writing. This snippet shows what happens:
<input type="text" accesskey="D" name="dog" ...
1
vote
5answers
65 views
& sign in LinkLabel Text [duplicate]
I want to display the text a&b in my LinkLabel.Text.
linkLabel1.Text = "a&b";
This displays:
ab
If I change the code to:
linkLabel1.Text = "a&&b";
one & sign will ...
0
votes
0answers
38 views
Access/Hot Keys in WPF based application is not working in Windows 8
I have WPF application which targets .Net Framework 3.5.
If I run the application in Windows 8, it is working fine.
The issue is I am using hot/access key Alt + S in my application.
When I pressed ...
0
votes
1answer
19 views
accesskey not working when inside iframe, unless iframe is clicked
Hello I have an inside my index.
Inside that I have To some_html.html
however, pressing alt +s doesn't redirect me to some_html.html, unless I click on the first.
Why is this?
and is there a fix ...
0
votes
0answers
34 views
Access Key Underline Button setTextFormat
I have numerous button components in AS3 that have keyboard shortcuts assigned to them. I cannot figure out how to get setTextFormat to apply to the button's label and setStyle method does not have ...
0
votes
0answers
78 views
AWS S3 and IAM - Policy to Create New Buckets and Modify Them Only
I'm using the AWS API to create new buckets and upload files to them. This is all well and good as long as I use access keys that have full access to S3, but I know it is good practice to avoid using ...
0
votes
1answer
157 views
Get Username from Amazon Access Key in Java
Is there a way to get the User Name attached to the Access Key for the credentials you're using to access AWS via Java? I would like to be able to get the User Name that's defined in the IAM Users ...
1
vote
0answers
91 views
using accesskey across the element in other iframe is not working in Chrome
At chrome, I focus at "A" iframe. There is element setted accesskey attribute on other iframe. I can't use accesskey to focus on the element. This problem doesn't exist at IE,FF.
Is there some trick ...
0
votes
2answers
51 views
Html Accesskey for checkbox
i have given access key for my checkbox to get focus by using the shortcut key.
<input type="checkbox" id="chkStudent" data-bind="checked: isStudent" accesskey="s"/>
but when i am typing the ...
1
vote
1answer
65 views
What does an Access Key do for a Label in .NET Windows forms?
Someone enlightened me yesterday to the fact that Labels can have access keys. So I set a Label's text property to Class &A and, indeed, it now has an underline and everything. As far as I can ...
0
votes
1answer
70 views
Azure: CloudQueue and security, put a Access Key into a CloudQueueMessage
To give some work to my (workers) roles I put - into a queue - a message like:
"connectionString inputContainerName outputContainerName WorkToDo"
connectionString is an azure connection string as:
...
0
votes
1answer
484 views
HTML accesskey 'e' not working in Chrome
I assigned access key e to email input field in a simple html form. I am currently testing this in chrome. So on pressing Alt + e, instead of switching focus to the email input field, the Chrome menu ...
1
vote
1answer
201 views
Set focus by using keyboard in asp.net
I am creating a login page and want to give user the flexibility to control the focus by using keyboard. I am using AccessKey but it seems not working. Any help will be appreciated.
Below is my HTML ...
2
votes
1answer
383 views
Dealing with WPF Menu HeaderStringFormat and Access Keys among other things
Okay. So I want my application to display in its main menu the "Save" and "Save As..." items just like Visual Studio does; i.e. "Save {current file}" and "Save {current file} As..."
I would also like ...
2
votes
3answers
279 views
Jquery select all elements that have an accesskey defined
I want to select all elements that have an accesskey defined on them.
I know that i can do this: $('[accesskey]'), but that gives me lot of inputs, hrefs etc, on the page (most of them have an empty ...
0
votes
2answers
109 views
Where can I get a list of unused access keys?
I'd like to know what access keys I can use for my site. Anyone know where I can find a list? Also, I understand that the UK has a standard. Is anyone familiar with a site that lists standard ...
0
votes
1answer
207 views
HTML element keyboard shortcut without alt key
I have a button that is accessed by a keyboard shortcut but the users have to press alt + z. Is there anyway to let the users access the button by simply pressing z (or some other key) without having ...
7
votes
1answer
309 views
accesskey VS navigator keyboard shortcut
It seems to be a recurrent tricky question but I still don't have a fix nor workaround for it:
Is there a way to intercept accesskeys before keyboard shortcuts?
I need to use accesskeys on my ...
2
votes
1answer
191 views
Access key getting selected even we did not press 'Alt' key in WPF
I have WPF application which is having tool bar. In tool bar I have some user controls as tools.
I have set access key to each control, it is working fine.
The issue is: If I click a user ...
1
vote
1answer
424 views
Prism + MVVM + Access Keys + UpdateSourceTrigger=“LostFocus” — This doesn't let me save an updated textbox without first losing focus
Not really sure how to tackle this issue:
I have a "Save" button that has access keys attached to it... but, if I type something into a textbox and press the access keys to save, the textbox doesn't ...
0
votes
0answers
317 views
What is the behaviour of Access key in WPF?
I have an application, where I am providing access key(ALT + A) as a shortcut. It is working fine.
The problem is: Consider I have one combo box and button. I have set one access key to button, say ...
3
votes
1answer
1k views
How to use an accesskey on a WPF Button with a custom ContentTemplate?
Scenario:
Currently I have this XAML code:
<Button Content="_Cancel" IsCancel="True" Command="{Binding Path=CancelCommand}" Margin="5">
<Button.ContentTemplate>
...
0
votes
1answer
118 views
Access key not working on CheckBox after applying style
Ive applied some styling on CheckBoxes in my app to write default values to some its properties.
<Style
TargetType="{x:Type CheckBox}">
<Setter
...
1
vote
2answers
237 views
Can you use an accesskey attribute on an option tag?
Is there a technique to use an accesskey attribute on an <option> tag?
I know you can use it on a <select>, but I have a requirement to use it on an <option> within a ...
1
vote
0answers
101 views
facebook and twitter access-keys like AWS has
I am writing a desktop app, so webbased oauth circuit is not applicable to my needs.
now if you are an AWS customer you have your secret user/pass to own the account.
but you also can generate ...
1
vote
1answer
121 views
How to determine when an accesskey is pressed
How to determine when an accesskey is pressed - with javascript(IE, Chrome, Opera, Safari). In FF I used document.onkeypress event, but in Chrome this event doesn't fire when ALT key is pressed.
...
13
votes
7answers
3k views
Javascript keyboard shortcuts for web application
I want to develop a web application, which should (idealy) be fully usable via the keyboard. I know how to handle keyboard events in javascript, but managing them for a larger application is quite ...
1
vote
0answers
156 views
How to use a combination of alphabets as access-key?
I want to use a combination of alphabets as access key but how to use i could not make out please help this regard?
also i want to know the shortcut key for auto-hide symbol for any ...
5
votes
1answer
295 views
Access keys in ASP.NET MVC
I'm intending to extend the Display DataAnnotation attribute to hold a value for the AccessKey for an input field so I can use it in my own LabelFor<> and TextBoxFor<> HtmlHelper ...
2
votes
1answer
247 views
Disable hotkey on vcl controls
I do have a TPageControl that I do add and remove TTabsheet's from, and in the TTabsheets there are 2 TEdit's that the user can type firstname and lastname, when they do the Tab Caption does show what ...
0
votes
1answer
283 views
How to resolve: WPF access keys intercepted by IE
We have built a XBAP application and have given the access keys (keyboard shortcuts) on labels/buttons. But IE seems to capture the access key first and hence the application does not get a chance to ...

