This is a migrated thread and some comments may be shown as answers.

RadMenu Item - How do we display accesskey next to the menuItem label?

0 Answers 63 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Bhavin
Top achievements
Rank 1
Bhavin asked on 13 Nov 2008, 12:00 PM

We are using RadMenu to generate horizontal menu from XML file. Menu renders correctly. We have included AccessKey. Here is the sample code:

 

<Menu Skin="Gray">      
     <Group ExpandDirection="Down" Flow="Horizontal">      
         <Item Text="Edit">      
         <Group Width="140" Flow="Vertical">      
              <Item Text="New" Value="Edit_New" AccessKey="N" />      
              <Item IsSeparator="True" />      
              <Item Text="Cut" Value="Edit_Cut" AccessKey="X" />      
              <Item Text="Copy" Value="Edit_Copy" AccessKey="C" />      
              <Item Text="Paste" Value="Edit_Paste" AccessKey="V" />      
              <Item IsSeparator="True" />    
              <Item Text="Delete" Value="Edit_Delete" AccessKey="D" />      
         </Group>      
         </Item>       
    </Group>      
</Menu> 

 

 

While viewing page in browser, for "New" menuItem "N" is underlined. So there is a visual indication. But for Cut and Paste menuItems, there is not visual indication that "X" and "V" are the accesskeys for them. Is there any way to show accesskey to user? We tried "ToolTip", but we didn't like that.

Can we have RadMenu item displayed like this?
    

    New      N  
 
    Cut      X  
    Copy     C  
    Paste    V  
 
    Delete   D 

 

No answers yet. Maybe you can help?

Tags
Menu
Asked by
Bhavin
Top achievements
Rank 1
Share this question
or