Posted by Sergey
2017-07-04

Thank you Tom for answer, but i find another good choice for me in... web/codelib/sys/CVField.inc.php i find:

function &BuildHtmlTag( &$msg )

and add this code:


if ( $this->Get(XA_INPUT_TYPE) != '' )
$ht->SetKV('type', $this->Get(XA_INPUT_TYPE));


after this code:


else {
if ( $this->Get(XA_SIZE) != '' )
$ht->SetKV('size', $this->Get(XA_SIZE));
}

then in web/codelib/asc/df.fl.table_name.inc i add in need array:


XA_INPUT_TYPE=>tel,

or any other, for example: password, area, number, date, ...


By this method i can add a "placeholder" string..
Posted by Tom
2017-07-05

OK, that's great!