本文整理汇总了PHP中Societe::datatablesFnRender方法的典型用法代码示例。如果您正苦于以下问题:PHP Societe::datatablesFnRender方法的具体用法?PHP Societe::datatablesFnRender怎么用?PHP Societe::datatablesFnRender使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Societe
的用法示例。
在下文中一共展示了Societe::datatablesFnRender方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
print '<thead>';
print '<tr>';
print '<th>';
print '</th>';
$obj->aoColumns[$i]->mDataProp = "_id";
$obj->aoColumns[$i]->bUseRendered = false;
$obj->aoColumns[$i]->bSearchable = false;
$obj->aoColumns[$i]->bVisible = false;
$i++;
print '<th class="essential">';
print $langs->trans("Company");
print '</th>';
$obj->aoColumns[$i]->mDataProp = "ThirdPartyName";
$obj->aoColumns[$i]->bUseRendered = false;
$obj->aoColumns[$i]->bSearchable = true;
$obj->aoColumns[$i]->fnRender = $object->datatablesFnRender("ThirdPartyName", "url");
$i++;
foreach ($object->fk_extrafields->longList as $aRow) {
print '<th class="essential">';
print $langs->trans($aRow);
print '</th>';
$obj->aoColumns[$i] = $object->fk_extrafields->fields->{$aRow}->aoColumns;
if (isset($object->fk_extrafields->{$aRow}->default)) {
$obj->aoColumns[$i]->sDefaultContent = $object->fk_extrafields->{$aRow}->default;
} else {
$obj->aoColumns[$i]->sDefaultContent = "";
}
$obj->aoColumns[$i]->mDataProp = $aRow;
$i++;
}
print '<th class="essential">';