Hi,
First off, totally new to css and wondering if the experts here can point me to what I am doing wrong.
trying to get a listview on a mobile app using jquery
looking at this example:
http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_themes_a
I want my list to include that little-arrow and the data-autodivider but the <a href="#"> is being translated by aware as a normal hyperlink and not following the CSS???
I loaded the following into the Header section of my Custom Form
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
on the body of my Custom form, I have the following
<div class="aw-data-item">
<div class="aw-custom-line">
<div data-role="main" class="ui-content">
<ul data-role="listview" data-autodividers="true">
<li><a href="#">{Visit_Date}</a></li>
</ul>
</div>