2012-06-04 3 views
1

Blackberry 용 HTML 페이지를 만들었습니다. 나는 모든 일을했지만 트랙 패드를 사용하여 어떤 부서도 스크롤 할 수 없습니다.Blackberry Scroll 문제

나는 이것을 블랙 베리 볼드체로 테스트하고있다. 여기에 내가 나 또한 오버 플로우 스타일을 추가 한 "claimtype_desctxt"텍스트를 스크롤 할

<!DOCTYPE HTML> 
<html> 
<head> 
<meta name="HandheldFriendly" content="True" /> 
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> 
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
<meta name="viewport" content="width=device-width,height=device-height,target- densitydpi=device-dpi,user-scalable=no,initial-scale=1.0"> 
<title>XXXX</title> 
</head> 
<body class="Claimtype"> 
<div class="mainwrapper"> 
<header> 
<h1>Claim Type<span></span></h1> 
</header> 
<article> 
<div class="claimtype_content"> 
    <div class="claim_summary"> 
    <h3> 
     <label>Plan No:</label> 
     183245</h3> 
    <h4>Health Spending account</h4> 
    <h4>Health Spending account</h4> 
    </div> 
    <div class="claim_type_selection"> 
    <h3>Type of Claim</h3> 
    <select name="claim_type_selection"> 
     <option>Select</option> 
     <option>Select2</option> 
     <option>Select3</option> 
     <option>Select4</option> 
     <option>Select5</option> 
    </select> 
    <div class="claimtype_desc"> 
     <div class="claimdescimg"> 
      <img src="inputUser.png" width="50" height="50"> 
     </div> 
     <div class="claimtype_desctxt"> 
     <h3>Dental</h3> 
      <p>The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation. The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation. The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation.</p> 
     </div> 
    </div> 
    </div> 
</div> 
</article> 
</div> 
</body> 
</html> 

:

여기 내 코드입니다.

아무도 도와 드릴 수 있습니까? 당신이 알아야 할

답변

0

모든 것이 여기에 요약되어

구성 파일의 탐색 모드를 지정 1st- Using focus-based navigation

: 포커스 요소를 정의

<widget> 
    <rim:navigation mode=�focus�/> 
    <feature id="blackberry.ui.dialog" /> 
</widget> 

2nd-, 여기에 예입니다 :

<img id="image1" src="imageb.png" x-blackberry-focusable="true" /> 

<a class="list" x-blackberry-initialFocus="true">First element</a> 

여기에 초점을 맞추고 객체의 강조 표시 스타일을 변경하는 자바 스크립트 함수로 전체 샘플 코드입니다 : 그래서 초기 초점 정의 나는이 정말

+0

답변 도움이되기를 바랍니다

<html> <head> <title>Color Input Type</title> <script type="text/javascript"> function highlight(e) { e.setAttribute("style", "background-color: red; outline: cyan solid thick;"); } function unhighlight(e) { e.setAttribute("style", ""); } </script> </head> <body> <h2>Test input type - text/password/email/search/tel/number</h2> <div> <label >Text: </label> <input type="text" x-blackberry-focusable="true" onmouseover="highlight(this);" onmouseout="unhighlight(this);" /> </div> <div> <label>Number: </label> <input type="number" x-blackberry-focusable="true" onmouseover="highlight(this);" onmouseout="unhighlight(this);" /> </div> </body> </html> 

는 진짜를 포함한다고 콘텐츠가 아닌 다른 곳으로의 링크 : http://meta.stackexchange.com/questions/8231/are-answers-that-just-contain-links-where other-really-good-answers –

+0

행복합니까? – saada

+0

HTML 5 Webworks 접근 방식 ... Webworks를 사용하지 않습니다 .. –