Hide paging section in specific list page

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
thalassa3003
User
Posts: 62

Hide paging section in specific list page

Post by thalassa3003 »

Hi,

I would like to hide the paging section, including the number of record and dropdown bow number of records per page on a specific list page. So the complete section.
I need some help with the following:

  1. I suppose this is done at the 'Server events > Table Specific > List Page > Page_Render'?
  2. What is the syntax for this? Something like: $this->OtherOptions["SECTIONNAME"]->Visible = FALSE;?

Much appreciated!


danielc
User
Posts: 1601

Post by danielc »

Click the table node of any table in the database pane and then click the [Table] tab to go to the Table Setup page. Uncheck [Use Global Setting] in Table Setup. Then, you can specify your setup. See Table Setup in help file.

Or add code in Client Scripts->Table-Specific->List Page->Startup script:

$('form[name="ewPagerForm"]').hide();


thalassa3003
User
Posts: 62

Post by thalassa3003 »

Yep, that did the trick.
Thx!


Post Reply