User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:adminmanual:businessmappings:kanban [2021/12/10 10:30]
artemisa.puci
en:adminmanual:businessmappings:kanban [2021/12/28 16:32] (current)
artemisa.puci
Line 9: Line 9:
 The actions supported are: The actions supported are:
  
-* lanefield: module field name you want to be showed in kanban lane view +  * module: Module name to appy the Kanban view 
-* showsearch: ​show the search in kanban view(boolean value) +  ​* lanefield: module field name you want to be showed in kanban lane view 
-* showfilter: ​show the filter in kanban view(boolean value) +  * showsearch: ​shows the search in kanban view(boolean value) 
-* applyfilter:​ put the filter name you want to apply +  * showfilter: ​shows the filter in kanban view(boolean value) 
-* pagesize: number of records to show per lane +  * applyfilter:​ put the filter name you want to apply in kanban view 
-* name: value of module field name to address the changes +  * pagesize: number of records to show per lane 
-* sequence: ​move of a lane +  * lanes: here you can customize each lane 
-* library: LDS library name +  ​* name: value of module field name to address the changes 
-* icon: LDS icon name +  * sequence: ​the place a lane is going to have in a row 
-* color: CSS color to put to the specific value +  * library: LDS library name 
-* title: module field name to show as title inside a lane's record +  * icon: LDS icon name 
-* field: main field to show inside a record +  * color: CSS color to put to the specific value 
-* morefields: more fields to be added inside a lane's record+  * card: here you can show fields inside a lane's record 
 +  ​* title: module field name to show as title inside a lane's record 
 +  * field: main field to show inside a record ​  
 +  * morefields: more fields ​you can choose ​to see inside a lane's record
  
  
Line 53: Line 56:
         <​field>​Module field name</​field>​         <​field>​Module field name</​field>​
         ...         ...
 +      </​morefields>​
 +    </​card>​
 +</​map>​
 +</​code>​
 +
 +Here is a custom template you can try: 
 +<code xml>
 +<map>
 +    <​module>​Accounts</​module>​
 +    <​lanefield>​rating</​lanefield>​
 +    <​showsearch>​1</​showsearch>​
 +    <​showfilter>​1</​showfilter>​
 +    <​applyfilter>​all</​applyfilter>​
 +    <​pagesize>​6</​pagesize>​
 +
 +<​lanes>​
 +    <​lane>​
 +        <​name>​Acquired</​name>​
 +        <​sequence>​1</​sequence>​
 +        <​color>​red</​color>​
 +   </​lane>​
 +   <​lane>​
 +        <​name>​Active</​name>​
 +        <​sequence>​2</​sequence>​
 +        <​color>​red</​color>​
 +   </​lane>​
 +   <​lane>​
 +        <​name>​Market Failed</​name>​
 +        <​sequence>​3</​sequence>​
 +        <​color>​red</​color>​
 +   </​lane>​
 +   <​lane>​
 +        <​name>​Project Cancelled</​name>​
 +        <​sequence>​4</​sequence>​
 +        <​color>​red</​color>​
 +   </​lane>​
 +   <​lane>​
 +        <​name>​Shutdown</​name>​
 +        <​sequence>​5</​sequence>​
 +        <​color>​red</​color>​
 +   </​lane>​
 +</​lanes>​
 +
 +    <​card>​
 +      <​title>​accountname</​title>​
 +      <​showfields>​
 +        <​field>​industry</​field>​
 +      </​showfields>​
 +      <​morefields>​
 +        <​field>​email1</​field>​
 +        <​field>​phone</​field>​
       </​morefields>​       </​morefields>​
     </​card>​     </​card>​