2012-10-12 56 views
0

我有問題使用觸控板滾動。以下是我在WebWorks焦點導航上從pdf開始嘗試的示例。黑莓觸控板滾動問題

<!DOCTYPE html> 
<html> 
<head> 
<meta name="viewport" content="initial-scale=1.0,width=device-width,user-  
scalable=no,target-densitydpi=device-dpi" /> 
<style> 
.list 
{ 
    width: 100%; 
    display: block; 
    text-decoration: none; 
} 
.list:hover 
{ 
    background-color:red; 
    color: white; 
} 
</style> 
</head> 
<body> 
<a class="list" x-blackberry-focusable="true" href="http://www.rim.com">Link to RIM</a> 
<a class="list" x-blackberry-focusable="true" href="http://www.blackberry.com">Link to 
BlackBerry</a> 

當我嘗試使用觸控板沒有任何反應滾動。該鏈接應該被突出顯示爲紅色,但沒有任何反應。我有我的config.xml,並在其中。

任何幫助/建議將不勝感激。

謝謝。

回答

1

你測試了什麼設備/操作系統版本?我使用運行7.1.x的9900在瀏覽器中嘗試了上面的代碼,並且按預期工作。

您正在使用什麼版本的WebWorks SDK?

您是否在config.xml中添加了以下內容?

+0

我測試曲線9630上BB 5和火炬9800上運行BB 6.運行我有:在config.xml <輪輞/導航模式= 「焦點」>。 – Jamie