本文整理汇总了PHP中sadaf_datagrid::AddCurrencyStringRow方法的典型用法代码示例。如果您正苦于以下问题:PHP sadaf_datagrid::AddCurrencyStringRow方法的具体用法?PHP sadaf_datagrid::AddCurrencyStringRow怎么用?PHP sadaf_datagrid::AddCurrencyStringRow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sadaf_datagrid
的用法示例。
在下文中一共展示了sadaf_datagrid::AddCurrencyStringRow方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
if ($item_accessObj->FullDeleteAccess()) {
$dg->deleteButton = true;
$dg->deleteHandler = "function(){WritFormObject.DeleteItem();}";
}
if ($item_accessObj->FullUpdateAccess()) {
$dg->addButton("", "ویرایش", "edit", "function(){WritFormObject.EditItem('');}");
}
} else {
$dg->addButton("", "مشاهده", "view", "function(){WritFormObject.EditItem('view');}");
}
$dg->width = 550;
$dg->EnableSummaryRow = true;
$dg->EnableSearch = false;
$dg->EnablePaging = false;
$dg->title = "اقلام حقوقي حکم";
$dg->AddCurrencyStringRow(5);
$curItemsGrid = $dg->makeGrid_returnObjects();
}
?>
<style>
.blueText{color: #0D6EB2;font-weight: bold;}
.XX_button
{
font:normal 12px tahoma,verdana,helvetica;
width: 150px;
height: 24px;
padding-bottom: 4px;
}
</style>
<script>
WritForm.prototype.afterLoad = function()
示例2:
if (!$readOnly) {
$dg->deleteButton = true;
$dg->deleteHandler = "function(){WritFormObject.DeleteItem();}";
$dg->addButton("", "ویرایش", "edit", "function(){WritFormObject.EditItem('');}");
$dg->addButton("", "عدم پرداخت کلیه قلم ها ", "not_pay", "function(){WritFormObject.DontPayItem();}");
} else {
$dg->addButton("", "مشاهده", "view", "function(){WritFormObject.EditItem('view');}");
}
$dg->width = 500;
$dg->height = 350;
$dg->EnableSummaryRow = true;
$dg->EnableSearch = false;
$dg->EnablePaging = false;
$dg->autoExpandColumn = "full_title";
$dg->title = "اقلام حقوقي حکم";
$dg->AddCurrencyStringRow("value");
$dg->EnableRowNumber = true;
$curItemsGrid = $dg->makeGrid_returnObjects();
}
?>
<style>
.blueText{color: #0D6EB2;font-weight: bold;}
.XX_button
{
font:normal 12px tahoma,verdana,helvetica;
width: 150px;
height: 24px;
padding-bottom: 4px;
}
#InfoPanel td {height :21px;}