Posted by Oscar
2016-01-20

Dear: Tom I need to Auto Sort with Id First Column how can I change the code and where is so I can change.
Posted by Tom
2016-01-20

Open web/staff/app/df.fieldlist.inc.php in a text editor and
find the following array.
'lead' => array(
XA_CLASS=>'cls_fl_lead',
XA_SPEC_FILE=>'df.fl.lead.inc.php',
XA_TABLE_NAME=>TBL_LEAD,
XA_ID_NAME=>'lead_id',
XA_INIT_ORDER_BY=>'rlog_create_date_time DESC',
XA_INIT_PAGE_SIZE=>20
),
Set XA_INIT_ORDER_BY to lead_id ASC.
The result should look like:
'lead' => array(
XA_CLASS=>'cls_fl_lead',
XA_SPEC_FILE=>'df.fl.lead.inc.php',
XA_TABLE_NAME=>TBL_LEAD,
XA_ID_NAME=>'lead_id',
XA_INIT_ORDER_BY=>'lead_id ASC',
XA_INIT_PAGE_SIZE=>20
),