Hi,
I am looking for a way to restrict a view to display on the first [N] entries. For example I only want to display the first 10 times in the view. I’d like to use this type of functionality primarily on the web. Is there like an @top(n) command? If not, I guess I’d have to resort to doing this in script or something…
thanks…
Subject: Restricting view to display a certain number of entries
If it’s for the web, you have a number of options. Embedding the view on a form or page (or creating a $$ViewTemplate) will give you the opportunity to set the “lines to display” property of the embedded view object. You can also use the “&count=” parameter in a URL if you are using the default HTML view display.
Subject: RE: Restricting view to display a certain number of entries
Hi Stan, thanks…I was looking on the embedded view property page but didn’t see where to specify the “count.” I know I could use the &count as variable passed into the web page but if I have more than one embedded view on there and want to have different counts I’m not sure what the effect would be…
Thanks!
Subject: (oops I see where to set lines to display)
I will give this a shot. Thanks Stan!