jqgrid如何在一个页面点击按钮后,传递参数到新页面

利用 Content/Scripts/dw-framework.js 中的AddTableMenu属性

<div class="Task" style="background-color: #E7191B" onclick="AddTabMenu(‘5756418a-13f7-46c2-8882-e9280c0e2e55‘, ‘/WemarineModule/Resume/Index‘, ‘简历管理‘,  ‘vcard.png‘,true)">

当传递参数到打开table中的时候有参数传递的时候记得IsReplace参数写为true(详情参考function AddTabMenu(tabid, url, name, img, Isclose, IsReplace, IsVisitorModule))

        {
                    label: ‘学生列表‘, name: ‘id‘, index: ‘id‘, width: 80, align: "center", sortable: false,
                    formatter: function (cellvalue, options, rowObject) {
                        var id = rowObject[‘id‘]
                        return "<button onclick=\"AddTabMenu(‘530b9428-25d9-4166-9dc2-ea994b90cdd6‘, ‘/School/Students/StudentsList?id=" + id + "‘, ‘学生管理‘, ‘group.png‘,‘true‘,true)\"> 点击我</button>";
                    }
                },

时间: 2024-10-08 22:49:02

jqgrid如何在一个页面点击按钮后,传递参数到新页面的相关文章

点击按钮后实现页面跳转

<button onclick="location.href='http://www.baidu.com';">点我跳转</button> 点击按钮后实现页面跳转,码迷,mamicode.com

JS实现单击按钮后弹出新的窗口页面

点击按钮后,弹出指定大小的页面窗口. 效果图: 源码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <me

【HTML5】页面点击按钮添加一行 删除一行 全选 反选 全不选

页面点击按钮添加一行    删除一行   全选   反选  全不选 页面效果图如下 html页面代码 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.css" /> <script type=&qu

053点击按钮后改变按钮的文字

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController 4 @property (strong, nonatomic) UIButton *btnState; 5 6 @end ViewController.m 1 #import "ViewController.h" 2 3 @interface ViewController () 4

jquery实现&lt;body&gt;中点击按钮后,在&lt;tbody&gt;中显示一连串文本框

HTML中的代码如下: 1 <div style="background:#fff;border-style:solid; border-width:1px 1px 0 1px;border-color:#B8D0D6;"> 2 <div > 3 <div style="margin:-6px 0 0 0"> 4 <button class="button gray" type="button&

点击按钮后延迟跳转

<script> function goto(url,dalay) { setTimeout("window.location='"+url+"'",dalay); } </script> <button onclick="goto('http://www.k688.com',3000)">点击按钮3秒后跳转到jzzy</button> 是否可以利用这个功能,简单的在手机上实现点击按钮,看到hove

点击按钮后到底发生了什么,Touch,LongClick或者Click?

按钮点击事件详解 最近一个项目需要给应用初始界面上的动态按钮添加在不同状态的变换效果,如点击(俗一点也可称为按压)后实现背景图的更换或者图标的缩放等效果.由于按钮点击的时间有长有短,所以采用OnTouchListener监听器对点击事件进行监听,并利用对应的onTouch(View v, MotionEvent event)方法来实现按钮图标的变换效果(背景图更换或者图标缩放).但是项目中除了利用Touch事件来处理按钮基本的变换外,还需要响应LongClick或者Click事件来为用户做进一步

listview点击item后跳转到详细页面后返回listview数据不显示问题

原因: 触发返回按钮后跳转到listview主界面,数据要重新加载,这时要想加载数据,就要在启动Activity的时候程序自动加载,而handler里面写的是主线程,一定会执行,所以在后面添加 /**   * 处理消息(主线程),更新适配器,如果在Thread里处理可能会出错   * */   handler = new Handler() { @Override    public void handleMessage(Message msg) {     switch (msg.what)

如何点击按钮后在加载外部的Js文件

或许有朋友遇到过,想等自己点击按钮之后才执行某一个js文件,那么,你运气好,看到了我的代码了哈哈, <html> <head> <title></title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script> <scri