Collaboration-2-Go


Lösungen und Software-Entwicklung im Collaboration Umfeld, insbesondere Microsoft SharePoint, Microsoft Exchange und Microsoft Office.

Support


Mobil: +49 (152) 53 97 78 79
Mail: service@collaboration-2-go.de
Weitere Kontaktmöglichkeiten: Kontaktseite
Dekoration: Köln



There is no Attribute AccessKey in Select Boxes
Created: 05.10.2011
Categories: Website

      When I use the following code with Doctype "XHTML 1.0 Strict"
      <asp:DropDownList runat="server" ID="ddl" AccessKey="1">
      <asp:ListItem Text="item1" />
      <asp:ListItem Text="item2" />
      </asp:DropDownList>
      

      I get the following error from lovely W3C Validation Service:
      Line 135, Column 93: there is no attribute "accesskey"
      …ame="ctl00$MainContent$ddlTitle" id="ctl00_MainContent_ddl" accesskey="1">
      

      Unfortunately this is correct.
    

Send us a Comment!


Access Keys in different Browsers
Created: 02.10.2011
Categories: Website

      Access Keys in different Browsers:
      Internet Explorer: Alt+Key
      Chrome: Alt+Key
      Safari: Alt+Key
      Firefox: Alt+Shift+Key
      Opera: Alt+Esc: Menu
    

Send us a Comment!


Media Player for Web Pages
Created: 02.10.2011
Categories: Website

      Yahoo! Media Player: http://mediaplayer.yahoo.com
      Some Style Samples: http://www.ponticstar.com/blog/2009/12/12/hacking-yahoo-media-player/

      Successfully tested with Internet Explorer 8+9, Firefox Firefox 5+6, 5, Safari 5.1, Opera 11.50 (all on Win7)
      Doesn't work with Google Chrome 13 on Win7, Safari on iPad (iOS 4)

      Code in HTML:
      
      <script type="text/javascript" src="http://mediaplayer.yahoo.com/js" >
      </script>
      <a href="mymusicfile.mp3" >My Music</a>
      


      Applied Styles:
      
      /* Hide player */
      #ymp-player, #ymp-tray, #ymp-error-bubble, #ymp-secret-bubble
      {
      display: none !important;
      }
      /* Hide Buttons */
      a.ymp-btn-page-play, a.ymp-btn-page-pause
      {
      margin-left: -20px !important;
      }
      a.ymp-btn-page-play em.ymp-skin, a.ymp-btn-page-pause em.ymp-skin
      {
      display: none !important;
      }
      

    

Send us a Comment!