hello
i´m creating an app in web2py for mobile devices
i have an issue
i have a view that needs to parse a list . This list can go up to 1300
rows of data!
Sometimes the pages loads empty and i started to play with range values.
{{extend 'plugin_jqmobile/layout.html'}}
<ul data-role="listview" data-inset="true" data-filter="true">
<li data-role='list-divider'>{{=key}}</li>
{{for x in range(0,*890*):}}
<li>
{{=allAlm[x][0]}} {{=allAlm[x][2]}}
</li>
{{pass}}
</ul>
if the range is from (0,999) the page loads empty like some error or limit
was exceeded.
Does anyone knows something about this?
If the list has only 400 or 500 rows of data to parse, i have no problem
with this code.
thank you