The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Row Cell Editing in Jq Grid Using Jquery
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

SIVAPosted Feb 25, 2013, 9:16 AM
Hi, I am trying to bind my array object to jQgrid. But it's taking only and binding only 1st row. Here, I am creating columns dynamically and i created sample data. But when i am binding that array object its taking only 1st row. Please resolve it.. I am new for this...
sumanPosted Apr 2, 2012, 9:43 PM
I have a column called "Status" which has two html controls (texbox & image). on click of image a modal popup will be opened which has one one textbox and two buttons (ok & cancel). if the user enters some value in the textbox and clicks ok button the value should be binded to the jqgrid status column textbox. Issue: As i have two controls in a single cell, i dont know how to get only the textbox id and bind the value to it. My script code is... function getImage(cellvalue, options, rowObject) { return "<input type='text' id='" + options.rowId + "' style=width:300px;/><input type='image' onclick=\"ClickImage('" + options.rowId + "',this);\" id='imgsdfs' title='Edit' class='gridIcons' src='../../Content/images/search.png' onclick=\"LoadModalPopup(this)\" />" } function ClickImage(rowid, event) { debugger; $("#dialog").dialog({ modal: true, autoOpen: false, width: 500, height: 800 }); $("#dialog").dialog("open"); $('#modaldialogokbtn').live('click', function () { if ($(modaldialogText).val() != "") { var result = $(modaldialogText).val(); $("#dialog").dialog("close"); } }); $('#modaldialogcancelbtn').live('click', function () { $("#dialog").dialog("close"); }); } Please help
nmjh ShettyPosted Oct 17, 2011, 3:55 AM
its good Can it be done using sql Databases? if yes can provide the souce code
SuryaKant DixirPosted Sep 1, 2011, 5:48 AM
Hello Sir, I read this article .It is very good but my problem is that how to use arrow key Navigation in cells. and get particular cell value which is focus. Thanks in Advance.