Can I change the number of list display of administrator screen on IM-Common Master?

 
You can change it with plugin settings. 

There are below two ways to set it. 

1. Set entirely. 
2. Set individually. 

[Solution 1: Set entirely]
Use master_config tag of WEB-INF/plugin/jp.co.intra_mart.master.standard_8.0.0/plugin.xml. 

Change version here due to plug-in specification. 
Create folder to align plugin.xml on IM-Juggling. 
(Example: plugin/jp.co.intra_mart.master.config_8.0.1)
Make plugin.xml and display changed version that is master_config tag of extension points: jp.co.intra_mart.master.config. 

■Setting points
You can specify number of lists that can be displayed at 1 page by changing default_page_length attribute value of paginate tag in below. 

<plugin>
<extension point="jp.co.intra_mart.master.config">
<master_config name="standard" id="jp.co.intra_mart.standard" rank="1" version="8.0.1">
<paginate mode="client" default_page_length="10" />
</master_config>
</extension>
</plugin>

[Solution 2: Set individually]
You can change it by changing each plugin value. 

WEB-INF/plugin/jp.co.intra_mart.master.xxxxxx_8.0.0/plugin.xml
Xxxxxx: Word that means function

* Like solution 1, change corresponding points by aligning plugin.xml on IM-Juggling

In this example, change user list at public group display. 
Add “rows_per_page=”(display numbers)”" at compatible list tag that is under extension point at below file. 
WEB-INF/plugin/jp.co.intra_mart.master.publicgroup_8.0.0/plugin.xml
Belonging tree: jp.co.intra_mart.foundation.master.setting.publicgroup.treeview
Search list: jp.co.intra_mart.foundation.master.setting.publicgroup.search

■Setting points
(Before edit: jp.co.intra_mart.foundation.master.setting.publicgroup.treeview)
 <extension point="jp.co.intra_mart.foundation.master.setting.publicgroup.treeview">
<treeview_config ...>
 :
  <list>
  ↓
(After edit)
 <extension point="jp.co.intra_mart.foundation.master.setting.publicgroup.treeview">
<treeview_config ...>
  :
  <list rows_per_page="100">

(Before edit: jp.co.intra_mart.foundation.master.setting.publicgroup.search)
 <extension point="jp.co.intra_mart.foundation.master.setting.publicgroup.search">
<search_config ...>
 :
   <list>
  ↓
(After edit)
 <extension point="jp.co.intra_mart.foundation.master.setting.publicgroup.search">
<search_config ...>
 :
   <list rows_per_page="100">
Both need to restart after changing.
Individual settings specified at solution 2 will be preceded as setting value. 


-- Target ------------------------------------------------------------------------
iAP/Accel Platform/All Versions
--------------------------------------------------------------------------------


FAQID:424
Was this article helpful?
0 out of 0 found this helpful
Powered by Zendesk