Expose per-page size picker for grids
This commit is contained in:
		
							parent
							
								
									9a48a60d28
								
							
						
					
					
						commit
						47b2c603ef
					
				
					 1 changed files with 15 additions and 1 deletions
				
			
		|  | @ -160,7 +160,21 @@ | |||
| 
 | ||||
|     % if grid.pageable and grid.pager: | ||||
|     <template slot="footer"> | ||||
|       <div class="has-text-right">showing {{ firstItem }} - {{ lastItem }} of {{ total }} results</div> | ||||
|       <b-field grouped position="is-right"> | ||||
|         <span class="control"> | ||||
|           showing {{ firstItem }} - {{ lastItem }} of {{ total }} results, | ||||
|         </span> | ||||
|         <b-select v-model="perPage" | ||||
|                   size="is-small" | ||||
|                   @input="loadAsyncData()"> | ||||
|           % for value in grid.get_pagesize_options(): | ||||
|               <option value="${value}">${value}</option> | ||||
|           % endfor | ||||
|         </b-select> | ||||
|         <span class="control"> | ||||
|           per page | ||||
|         </span> | ||||
|       </b-field> | ||||
|     </template> | ||||
|     % endif | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Lance Edgar
						Lance Edgar