Home > Web Front-end > JS Tutorial > body text

jQuery select all effect implementation code_jquery

WBOY
Release: 2016-05-16 18:54:56
Original
965 people have browsed it

多选效果如下图

代码如下:

复制代码 代码如下:














$i = 1;
foreach($this->details as $item) {
echo "n";
echo "n";
//item name
echo "n";
//unit
echo "n";
//Ordered Qty
echo "n";
//Received Qty
echo "n";
//Quantity
echo "n";
//Remark column
echo "";
echo "n";
$i ;
}
?>
Item Name UM Ordered Qty Received Qty Quantity Remark
" . $item["item_name"] . "" . $item["unit_name"] . "" . $item["quantity"] . "" . $item["received_qty"] . "


局部多选如下图

代码

复制代码 代码如下:



if (isset($this->user)) {
echo "

Privilege Setting For User " . $this->user ."

";
}
elseif (isset($this->role)) {
echo "

Privilege Setting For Role " . $this->role . "

";
}
else {
echo "

Privilege Setting

";
}

?>



$model_name = "";
foreach($this->privileges as $privilege) {
if ($model_name != $privilege['model_name']) {
$model_name = $privilege['model_name'];
echo "n";
echo " n";
echo " n";
echo "n";
}
echo "n";
echo " n";
echo " n";
echo " n";
echo "n";
}
?>
$model_name
" . $privilege['display_text'] . "



$button_panel = new ButtonPanel();
$button_panel->setButtonAlign("center");
$button_panel->addButton(array("text" => "Save", "type" => "submit"));
$button_panel->addButton(array("text" => "Reset", "type" => "reset"));
$button_panel->addButton(array("text" => "Back", "onclick" => "window.history.back();"));
$button_panel->render();
?>


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!