我在我的MVC项目中使用了Kendo UI(版本Q2 2015 SP2)。
我想在我的视图中使用模板列。
但我的问题是,当页面完全加载时,模板单元格将为空。
我意识到当禁用jQuery时,我的问题将得到解决。但其他部分不起作用。
我的jQuery版本是1.9.1
我的观看代码是这样的:
/*
if (file_exists('setup/index.php')) {
// show only if setup script is available, allows to disable this message
// by simply removing setup directory
?>
<div class="group">
<h2><?php echo __('More settings') ?></h2>
<div class="group-cnt">
<?php
echo sprintf(
__(
'You can set more settings by modifying config.inc.php, eg. '
. 'by using %sSetup script%s.'
), '<a href="setup/index.php" target="_blank">', '</a>'
) . PMA_Util::showDocu('setup', 'setup-script');
?>
</div>
</div>
<?php
}
?>
</div>*/
如何正确显示模板列?