jqGrid-ASP.NET is a commercial grid component for ASP.NET & PHP based on the world's most popular and flexible jQuery grid plugin jqGrid.
0
votes
0answers
5 views
Jqgrid + postdata+grid reload
I am using jqgrid in my asp.net 4.0 web app.
I am showing jqrid with default values(order id ,date/status) on page load. User can perform customized search by entering values for order id ...
0
votes
2answers
24 views
How to attach a JavaScript event handler to a dialog popup?
Okay, here's the problem.
I have a jqGrid dialog that only generates in the HTML after you click the "add records" button.
I attached a "Click" event handler to a button in that dialog to open a ...
0
votes
0answers
6 views
maintain selected view in the jqgrid after postback
I am using jqgrid in my asp.net application, having issues when the user filters the grid using the built in search button found in the bottom left corner of the jqgrid. The user selects a column name ...
0
votes
0answers
8 views
Can we position the custom_func in jqgrid?
Am facing a problem where popup for custom function is displaying out of the jqgrid,as its need to be displayed within the grid. So is there any way to position the custom_func in jqgrid. As it should ...
0
votes
1answer
30 views
jqGrid grouping rows overriding “spacer” columns that I build into my grid
When I add grouping to a grid it works great other then one problem. The row which contains the grouping information is being built with a colspan for the "width" of the grid and this means it sits ...
0
votes
0answers
7 views
Web service + Jqgrid asp.net
I have a asp.net web application . I am trying to implement jqgrid. I have a web service asmx in same namespace as my web app. Web service is not called from jqgrid. Please point out my mistake.
...
0
votes
0answers
21 views
Retrieving Row Id/Row Index when we have the Row Data in jqGrid
We can get the RowData by this very easily.
if ($('#txtRoll').val() != "") {
for (var i = 0; i < records; i++) {
var index = i;
var rowId = jQuery('#tblRollDetails tr:eq(' + ...
2
votes
1answer
22 views
Retrieving row data from jqGrid
var rowdata;
var records = $("#tblWorkGroupDetails").getGridParam("reccount");
for (var i = 0; i < records; i++) {
var index = i;
var rowId = ...
0
votes
0answers
4 views
setting the Column names in jqgrid from C# code
Hi i want to set the column name in my jqgrid based on some conditions in code behind in my asp.net application and in am doing this
grdTransactionDetails.DataSource = MyObject;
...
0
votes
0answers
8 views
Comparing date in jqgrid filter to null
hi i have a filter that looks like this
filter = { groupOp: "AND", rules: [{ field: "CityID", op: "eq", data: cityId }, { field: "SiteID", op: "eq", data: siteId }, { field: "BuildingID", op: "eq", ...
1
vote
0answers
22 views
populate jqgrid from database
I am trying to populate a jqGrid with data from database in N-tier architecture. I have looked at the jqGrid code and documentation thoroughly. I need another set of eyes to look at the code below and ...
0
votes
0answers
12 views
selected rows in jqgrid not retained when page changed
Hi i have a jqgrid in my asp.net web application. I have enabled MultiSelect and when i click on a few rows they get selected but when i change the page number of the grid or search for something in ...
0
votes
0answers
19 views
JQgrid Dialog not displaying in search operator dropdown
why dialog search never show operators drop down(equal-not equal-contains-is in,.....) !?!?
this is my code :
<trirand:JQGrid runat="server" ID="JQGrid1" DataSourceID="AccessDataSource1">
...
0
votes
1answer
38 views
Paging not working when loadonce:true in jqGrid
In jqGrid have property loadonce:true then i am getting only first page records. how can i get second and third page records.
code:
$(function () {
$("#pendingAppgrid").jqGrid({
...
0
votes
0answers
12 views
issue with filterToolbar in jqGrid Search
search functionality is not working. when hitting action method in controller parameters looking like "_search=true", "searchField=null", "searchString=null" ,"searchOper=null", here i am not getting ...