Ich hab eine Seite in der ich eine Listview nachladen möchte das mach ich so
Code:
<!DOCTYPE
html PUBLIC "-//
W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/
html; charset=utf-8" />
<link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.2.0.css" />
<script src="jquery.mobile/jquery-1.8.2.js"></script>
<script src="jquery.mobile/jquery.mobile-1.2.0.js"></script>
<script type="text/javascript">//<![CDATA[
$(window).load(function(){
function updateliste() {
$('#liste').load("/admin?onlwebmode=update&id=liste");};
updateliste();
});//]]</script>
<style>
</style>
<title>Admin</title>
</head>
<body>
<p><div id="liste"><ul data-filter="true" data-role="listview">
</ul>
</div></p></body>
</
html>
Das Klappt auch aber leider hat die Listview kein CSS und Javscript mehr, wie kann ich das ändern.