-1

我想在 jqgrid 的添加/编辑表单中将数据库中的数据显示为标签。

参见例如:要向 jqgrid 添加数据,我们将单击 + 图标。将打开一个弹出窗口进行数据输入。文本框或复选框可以显示在给定的 jqgrid 示例中。但我想在那个添加/编辑弹出表单中显示一个标签。

jqgrid中是否有任何内置功能,例如

要在添加/编辑弹出表单中显示复选框,我们将指定以下代码。

$col = array();
$col["title"] = "Closed";
$col["name"] = "closed";
$col["width"] = "50";
$col["editable"] = true;
$col["edittype"] = "checkbox"; // render as checkbox
$col["editoptions"] = array("value"=>"Yes:No"); // with these values "checked_value:unchecked_value"
$cols[] = $col;

上面的 col 选项将显示复选框...就像我想在标签中显示数据一样

4

1 回答 1

0

尝试这个:

$col = array();
$col["title"] = "cname";
$col["name"] = "cname";
$col["width"] = "50";
$col["editable"] = false;
$col["edittype"] = "textbox"; 

$cols[] = $col;
于 2013-03-25T10:06:42.197 回答