jQWidgets Forums
jQuery UI Widgets › Forums › Grid › grid loads selected row and run event
Tagged: grid selected row
This topic contains 3 replies, has 2 voices, and was last updated by Peter Stoev 11 years ago.
-
Author
-
hello How do I run a grid event ?
examplevar source =
{
url: ‘/Crew/Crew/CrewGridList’,
datatype: “json”,
type: ‘POST’,
id: ‘c_ID’,
cache: false,
datafields: [{ name: ‘C_ID’, type: ‘string’, },
{ name: ‘Name’, type: ‘string’, },
{ name: ‘LastName’, type: ‘string’, }],
};var dataAdapter = new $.jqx.dataAdapter(source);
$(“#CrewGridList”).jqxGrid({
width: 400,
source: dataAdapter,
editable: false,
theme: ‘Summer’,
pageable: true,
selectedIndex:0, not working
showfilterrow: true,
filterable: true,
selectedIndex: 0,
keyboardnavigation: true,
rendergridrows: function (params) {
return params.data
},
columns: [{ text: ‘Id’, datafield: ‘c_ID’, width: 200, hidden: true },
{ text: ‘Name’, datafield: ‘Name’, width: 200 },
{ text: ‘Last Name’, datafield: ‘LastName’, width: 200 },
//$(“.CrewList”).jqxGrid(‘hidecolumn’, ‘Id’)
]});
$(“#CrewGridList”).jqxGrid(‘selectrow’, 0);
$(“#CrewGridList”).on(‘rowselect’, function (event) { // First loading the Grid How do I run event ?
var crewId = event.args.row.C_ID;
alert(‘I first 0 row ‘+crewId);});
Hi Serdar,
There is no such thing as selectedIndex.That is the reason why it is not working.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/hello You did not understand me, My english is not good..
$ (“# CrewGridList”) jqxGrid (‘selectrow’, 0).;
this selected row is getting ok is working..
andI want to run this event automatically
. $ (“# CrewGridList”) ‘rowselect’, function (event) {(
var crewId = event.args.row.C_ID;
alert(‘I first 0 row ‘+crewId);or example
How to get selected row ID from Gridview?$ (“# CrewGridList”) jqxGrid (‘selectrow’, 0).;
alert(rowselectedIndex)Hi Serdar,
Yes, I understand you. There is no property called selectedIndex in jqxGrid. I hope you will understand my response as well.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.