09-27-2012 06:56 AM - edited 09-27-2012 08:04 AM
Some One, can help me?
im try to create applications, and running well at blackberry under OS6, but this cursor cannot displayed in OS7++(9320),
so my application cannot proses my link.
<!DOCTYPE HTML>
<html>
<head>
<title>RPM Mobile Apps</title>
<link rel="stylesheet" href="css/menu.css" />
<meta name="viewport" content="initial-scale=1.0,user-scalable=no" />
<script type="text/javascript" src="js/webworks.js"></script>
</head>
<body>
<div align="center" x-blackberry-focusable="false">
<ul align="center" x-blackberry-focusable="false">
<li x-blackberry-focusable="true"><a href='about.php' style='text-decoration: none' x-blackberry-initialFocus="true">
<table id='list-menu' x-blackberry-initialFocus="true"><tr><td style='width: 40px;' x-blackberry-initialFocus="true">
<img class='image-icon' src='icon/about.jpg' x-blackberry-initialFocus="true">
</td><td><div id='font-list' x-blackberry-initialFocus="true">
<p><b>About RPM</b></p>
</div></td></tr></table></a></li>
<li x-blackberry-focusable="true"><a href='rpm-song/index.php'style='text-decoration: none' x-blackberry-initialFocus='true' >
<table id='list-menu'><tr><td style='width: 40px;'>
<img class='image-icon' src='icon/song.jpg'>
</td><td><div id='font-list'>
<p><b>Top Song</b></p>
</div></td></tr></table></a></li>
<li><a href='rpm-video/index.php' style='text-decoration: none'>
<table id='list-menu'><tr><td style='width: 40px;'>
<img class='image-icon' src='icon/video.jpg'>
</td><td><div id='font-list'>
<p><b>Top Video</b></p>
</div></td></tr></table></a></li>
</ul>
</div>
<br />
</div>
</body>
</html>Im has used
x-blackberry-focusable="true"
but i dont now, where to place this code,
this my css here
this my application here
maybe someone can help me to resolved my problem
thanks
10-01-2012 03:52 PM
Hello Galih,
Please ensure that you specify the features below within config.xml:
<widget>
<rim:navigation mode="focus"/>
<feature id="blackberry.ui.dialog"/>
</widget>
For more information, refer to the following page on Using focus-based navigation:
https://developer.blackberry.com/html5/documentati
Also, you need to be testing on the actual device and not the simulator to see the effects.