Posted by Tahmidul
2015-06-21

Hy Tom, I'm sorry for late feedback !
I'm really happy to say your second method working perfectly for me !

Thank you very much for your co-operation ! :)

Will you please do me another favor ?
When I check the contact list, it shows the result like 1003 then 1002..1001.
Actually I need them in this sorting order, 1001,1002,1003.

Will you please tell how can I do this ???
Thank You again. :)
Posted by Tom
2015-06-22

Open web/staff/app/df.fieldlist.inc.php and find the following code:
'forms' => array(
XA_CLASS=>'cls_fl_forms',
XA_SPEC_FILE=>'df.fl.forms.inc.php',
XA_TABLE_NAME=>TBL_FORMS,
XA_ID_NAME=>'forms_id',
XA_INIT_ORDER_BY=>'forms_id DESC',
XA_INIT_PAGE_SIZE=>20
),
Change forms_id DESC to forms_id ASC like this

'forms' => array(
XA_CLASS=>'cls_fl_forms',
XA_SPEC_FILE=>'df.fl.forms.inc.php',
XA_TABLE_NAME=>TBL_FORMS,
XA_ID_NAME=>'forms_id',
XA_INIT_ORDER_BY=>'forms_id ASC',
XA_INIT_PAGE_SIZE=>20
),