datagrid中getSelected选中了一行,有什么方法可以把这一行置顶

问题描述

datagrid中getSelected选中了一行,有什么方法可以把这一行置顶

var selectRow = $('#table').datagrid('getSelected');

选中后点置顶按钮,这个置顶按钮和置顶方法该怎么写呀

解决方案

调用insertRow,指定index为0显示在第一行

insertRow param Insert a new row, the param contains following properties:
index: the row index to insert into, if not defined, append the new row.
row: the row data. Code examples:

// insert a new row at second row position
$('#dg').datagrid('insertRow',{
index: 0, // index start with 0
row: {
name: 'new name',
age: 30,
note: 'some messages'
}
});

解决方案二:

datagrid选中一行,而不是一格

时间: 2024-10-31 06:33:12

datagrid中getSelected选中了一行,有什么方法可以把这一行置顶的相关文章

easyui datagrid 中怎么选中所有页面的数据

问题描述 easyui datagrid 中怎么选中所有页面的数据 easyui datagrid 中怎么选中所有页面的数据.我有两页数据,第一页的复选框全选后,得到两页的数据. 解决方案 easyui datagrid 的数据加载

wpf的datagrid中Checked选中事件,包括全选,求代码!!

问题描述 <DataGrid.Columns><DataGridCheckBoxColumnWidth="70"Binding="{BindingIsSelected}"><DataGridCheckBoxColumn.Header><CheckBoxName="checkbox"Margin="22,0,0,0"/></DataGridCheckBoxColumn.Hea

在datagrid中使用radiobutton怎么样只选中一行并知道选中的是哪行?

问题描述 在datagrid中使用radiobutton怎么样只选中一行并知道选中的是哪行?datagrid用的是后台绑定 解决方案 解决方案二:你可以在datagrid加一列checkbox模板列,可以循环datagrid行并判断该行checkbox是否有选中,这样就知道了,

发送-datagrid中怎么删除选中的行????

问题描述 datagrid中怎么删除选中的行???? 不管是多选,还是单选,在表格上集成的有增加,删除,修改按钮.我现在想问,当我点击某一行的时候,怎么取出来对应行的各个数据?????因为这个datagrid是个集成的框架,不是自己写的table,对里面的语法,还有数据对象取值不知道怎么用,如果能取出来值,我就可以用Ajax发送到后台进行处理.现在就问你,怎么去table对象,row对象,cell对象,语法是什么????????????????????????????????? 解决方案 htt

用jquery判断datagrid中checkbox是否被选中的有关问题

问题描述 用jquery判断datagrid中checkbox是否被选中的有关问题 $(function(){ $('#pro_manage_show_grid').datagrid({ title:'标准任务执行查询' iconCls:'icon-ok' nowrap: true autoRowHeight: true striped: true collapsible:true method: 'post' url:path+'/monitor/f1/queryTasklogAll.do'

c#-用C#只删除了listview中的选中的一行,但没删除数据库中的

问题描述 用C#只删除了listview中的选中的一行,但没删除数据库中的 string strSQL = ""delete from GrindingWheelInformation where listView1.SelectedItems[0]'"" + listView1.SelectedItems.ToString() + ""'""; string connstr = ""Provider=Mi

各位高手,如何用javascript函数清空DataGrid中某一行第一个单元格中的数值

问题描述 各位高手,如何用javascript函数清空DataGrid中某一行第一个单元格中的数值 解决方案 解决方案二:隐藏可以不?解决方案三:你可以在ITEMDATEBING事件中给这个单元格设置个ID然后再在脚本中隐藏这个单元格

点击datagrid中的一行,将这一行的某两列中的一个字符串取出,然后显示在两个textbox中然后再另一页返回来,如何实现?

问题描述 点击datagrid中的一行,将这一行的某两列中的一个字符串取出,然后显示在两个textbox中然后再另一页返回来,如何实现? 解决方案 解决方案二:已经解决

请问我把DataGrid中的数据导入到Excel最后打开只有一行代码

问题描述 从datagrid中导入excel代码如下:Response.Clear();Response.Buffer=true;Response.Charset="utf-8";Response.AppendHeader("Content-Disposition","attachment;filename="+Server.UrlEncode(filename));Response.ContentEncoding=System.Text.Enc