The <gm:pager /> tag works fin on my mashups that use the built in
feeds like $[test} and it also works when my data source is a Yahoo
Pipes feed. But I can't get it to appear when the data source is a
GBase query URI.
Is there a special format or setup that needs to be done with these
feeds? My query looks like this ("Plants" is a custom item type I used
for my GBase Records):
http://www.google.com/base/feeds/snippets?start-index=1&&max-results=250&bq=[itemtype:Plants]
I experimented by leaving out the max-results and start-index
attributes with no success is getting the <gm:pager /> tag to render
itself.
Here's my gm:list:
<gm:list id="myList" data="***see above URI***" pagesize="5"
sort="titleSort" template="plantList" >
<gm:sort name="titleSort" ref="atom:title" />
</gm:list>
... and here's what the template looks like that displays the list:
<gm:template id='plantList'>
<b><gm:pager /></b><br />
<table style="margin: 3">
<tr repeat="true" style="font-family: Verdana, Arial, Helvetica, sans-
serif; text-align: left;">
<td style="font-size: smaller;"><gm:text ref="g:fdid" /> </td>
<td><i><b><gm:html ref="atom:title" /></b></i></td>
<td><gm:text ref="g:common_names" /></td>
</tr>
</table>
</gm:template>
maybe someone can spot something messed up?
thanks!