Table Editor

Go to : Control Panel -> Code Builder -> Your module -> Click button gear -> Edit  -> Table

By Default , after build new module , grid will displaying all field into table



You can control Field to show ( table grid ) , view detail ( view detail page ) , sortable ( allow users to sort order by field ) , download ( include field to be downloadable )

Limit
Used for limit view , means : field only able to view by spesific ID users 
Usage :
1,2,3,4,5 
Number indicating userID 

Connect / Lookup field
Connect field to database to get real value

Caption / Label 
Multiple lang Field required ajax plugins

Show
Field are show at grid table / index 

VD ( View Detail )
Field available/ shown on view detail every row 

ST ( Shortable )
Display table are able to be shorted by this field

DW ( Download )
Field are included on generated download files

Width *
Define width for spesific field 

Align *
Display field align to left , right or center 

Formatter 
Format field value into other format value
Date
Reformat Date into your own desire 

You can use PHP format from native php  , please check here http://php.net/manual/en/function.date.php


Usage :
F j, Y, g:i a                 // March 10, 2001, 5:16 pm
m.d.y                         // 03.10.01
j, n, Y                       // 10, 3, 2001
Ymd                           // 20010310
H:i:s                         // 17:16:18
Y-m-d H:i:s                   // 2001-03-10 17:16:18


Image
Display current value into format image or download
Usage : 
/uploads/_your_folder_name/
Example : 


Link / Mailto
Make current value as link to other page or other web
Usage :
http://yourlink.com/{field}


Checkbox / Radio
Make current into readable format
Usage :
Value:display_as1 , value_2:display_as2,...


Files Download
Make current value download link
Usage :
/upoads/_your_folder_name/
Example 


Function * ( Required Ajax Plugins )
This is wild function for format current value into any format where its not covered by default formatter from sximo builder
Usage :
Class|method|params
Make sure the class is exists before register function into grid table . to make your own class , create new file  inside folder /app/Library/MyFunction.php

Helpers Class Format 
<?php 

class MyFunction {

public function firstFunction()
{
return 'some value';
}
}
Composer dump-autoload

Example :


Database * ( Required Ajax Plugins )
Format curent value into value from database 
Usage :
Table_name|id|field_to_display
Example :