Jquery Mobile Simple ul li style problem
Hello,
Below is my code,
LoadPage.Mobile.cshtml
var data = ""; foreach(var row in rows){ data += "<li style='padding: 4%;'><a>"+ @Posting.ShowTotalCounts(row.postingID.ToString())+"</a>"+ "</li>"; } Response.ContentType = "application/json"; Json.Write(data, Response.Output); }
So, I retrieve my data using JSON
<div data-role="content"> <ul data-role="listview" id="resultscroll" data-theme="e"> <JSON DATA WILL BE RENDERED HERE> </ul> </div>
Here is my outptu, So basically I need UL Li output with stlyed background like in right hand side of the coulmn
Thanks