Tagged Questions
-1
votes
1answer
53 views
how to send id with <a href > of an element in struts jquery grid
i want to retrieve and send an id of an element in struts jquery grid.
<sjg:grid id="gridtable"
caption="Editer Eleves"
dataType="json"
width="755"
...
0
votes
1answer
92 views
delete and edit in jquery grid struts2
i passed two days trying to add delete and edit links to a jqgrid using json and struts2 but in vain.
<script type="text/javascript">
function deleteLinkFormatter(cellval, options, rowObject, ...
0
votes
0answers
104 views
jquery filter toolbar searching not working properly with more than one filter search dropdown
I am trying to have two dynamic dropdown lists("Test Scenario Id" and ""Action Command") in a custom filter toolbar search using jquery-struts2. But both the lists seem to take the same values,i.e ...
0
votes
1answer
50 views
How do I increase the textbox size of a row in Struts2jquery grid?
<sjg:gridColumn name="scenarioDescription"
index="scenarioDescription"
title="Scenario Description"
sortable="true"
editable="true"
...
2
votes
1answer
49 views
Jqgrid Column Expanding after updation
I am developing an site for college. In that i am displaying Staff Details in jqGrid along with Employee Name, Address, Mobile Number and
Departments. The grid looks like the below and the DB ...
0
votes
1answer
121 views
How to set readonly property only for edit grid window columns?
i am doing my project using struts2 and hibernate and i am using jqgrid for data display. Now i want to set readonly property for id field on the editGrid window. but not for add window. My sample ...
-4
votes
1answer
194 views
struts 2 jqGrid not getting displayed
I have read all followed the example showed in showcase of jqgrid with struts2. But my grid is not getting displayed. Please help me out. Below are my code snippets. When i type the action name in ...
0
votes
1answer
146 views
why updated values are not getting post in jqgrid
I am implementing jqgrid using struts2-jqgrid-plugin. My problem is when I change a value of hidden field in form-element ,the updated values are not reflected when i post these hidden field with my ...
0
votes
1answer
514 views
Retrieve value from JavaScript to Action class in struts2
I am using jquery struts2 grid plugin. I am using my own form to update, delete and insert object. I had created a hidden field to retrieved the value from javascript but it did not work... What seems ...
0
votes
1answer
125 views
restrict jqgrid from auto-refreshing
I am using struts2-jquery-jqgrid. I am having filterSearch on the grid. Here in filter I have a drop-down list on column Assigned To containing the list of users, and based on the users,data can be ...
0
votes
0answers
68 views
data is not getting fetched to action [closed]
I am using struts2-jqgrid-plugins for grid-implementation in application. I want to have filter-search on jqgrid , I am having filters something like this link ...
0
votes
2answers
485 views
how to populate drop down list in jq-grid filters using struts2-jqgrid-plugin
I am using struts2-jqgrid-plugin to so show data in Grid-view, I want to have filters on the grid. I am able to show filters on Grid, I am also able to the data suppose name of the users on the column ...
0
votes
0answers
222 views
How to reload jqgrid in struts2 after INLINE editing
I'm doing inline edits on a grid and i want to reload my jqgrid after editing or adding or deleting a row, the CRUD methode works
correctly but the grid doesn't reload !!
This is my jsp file :
...
2
votes
1answer
477 views
Struts 2: Not getting data in jquery grid
Grid.jsp
<html>
<head>
<title>jqGrid Example Part 1</title>
<link rel="stylesheet" href="jquery-ui-1.8.14.custom.css" type="text/css"/>
<link ...
-1
votes
2answers
261 views
disable specific rows in struts2-jqgrid
I am using Struts 2.3.7, struts2-jquery-grid-plugin-3.5.0.
<sjg:grid
id="gridtable"
caption="Issue-Summary"
dataType="json"
href="%{remoteurl}"
pager="true"
...
-7
votes
1answer
150 views
How to use JQuery Grid Plugin in Strut2?
I want to display data using JQuery Grid Plugin in Struts2.
-2
votes
1answer
179 views
show data in jqgrid column
I am using Struts 2.3.7, struts2-jquery-grid-plugin-3.5.0 and hibernate 3.6. I am using one to many mapping to join two entities.
These Entities
Issue.java
public class Issue implements ...
1
vote
2answers
346 views
how to show two tables data in jqgrid using struts2 - jqgrid plugin and hibernate
I am using Struts 2.3.7, struts2-jquery-grid-plugin-3.5.0 and hibernate 3.6. I want to show data on jqgrid which is coming from two different tables.
My problem is that I have to show two tables data ...
0
votes
0answers
71 views
browser got crashed by executing grid.trigger(“reloadGrid”)
Hi I am trying to reload the jqgrid. I am using struts2-jquery-grid-plugin-3.5.0 in this way
function approoveButton()
{
var grid = jQuery("#gridtable");
$.ajax({
...
0
votes
1answer
376 views
how to reaload a jqgrid on the success of an ajax call
I am using struts 2.3.7, struts2-jquery-grid-plugin-3.5.0 and hibernate 3.6.
I want to reload the jqgrid after an ajax call made.
I have an jDialog box which have three buttons,After clicking the ...
1
vote
0answers
745 views
Trying to make ajax call, display Json data using jqgrid
I have following json-data, after an ajax call to struts2 action-class:
{"jsonData":[{"age":1,"name":"Aifa"},{"age":2,"name":"Afraa"},{"age":27,"name":"Zafar"}],"searchId":0,"searchName":""}
...
0
votes
0answers
65 views
Getting Exception when loading JQGrid?
I am using jqgrid for displaying grid and struts2.0 as the action . I have a page where am displaying a grid with some search criteria . It worked fine in my development environment , but when i moved ...
0
votes
0answers
197 views
Struts2 jqgrid multiple search query
I have a jqgrid which I've configured to perform a multiple search for different fields. So far, after pressing "Search" I go to the action which has the following code:
public String execute() {
...
1
vote
0answers
84 views
getchangedcells returns empty array
After changing the value of a cell, I call getchangedcells but the array returned is always empty. this is my jqgrid (I'm using struts2-jquery plugin):
<sjg:grid id="tableau"
...
1
vote
1answer
189 views
Error when using jqGrid getChangedCell method
I'm using jqGrid 4.3.2, that contains grid.base.js; jquery.fmatter.js; grid.custom.js; grid.common.js; grid.jqueryui.js modules.
when calling method getChangedCells
var modified = ...
1
vote
1answer
612 views
pass an arraylist from jsp to action class using struts2
I have one jsp page with jqgrid I want to pass that grid data to action class.I am editing jqgrid data using cellEdit and now i want to pass this new data to action class to update this data in ...
0
votes
1answer
213 views
Json response is not loaded in JQGrid
I tried solutions given for this problem. But still, it is not working. I feel JSON response is not in the right format.
Have implemented JQGrid in struts2. Create a user list in action and returned ...
0
votes
1answer
256 views
Struts2 jQGrid Plugin Case Insesitive toolbar searching
Can anybody help with this?
I find this tow topics very useful:
(first: Case insensitive search in jqGrid including hidden fields),
(second: jqgrid search in the middle by default),
but i dont know ...
0
votes
1answer
304 views
Display row wise actions in struts2-jquery-grid-plugin-3.3.3?
How to display rowaction's i..e, edit,delete in every row the grid using struts2-jquery-grid-plugin-3.3.3.Pleas check the image
0
votes
1answer
182 views
change jqGrid options in Struts 2
Where can i change this options:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options
in jqGrid Struts 2 plugin + Eclipse.
I need this to change the ignoreCase option.
Thanks.
0
votes
2answers
494 views
Struts2 grid filter column with dynamic list (drop down) not supported
I am unable to get Struts2 grid filter column with dynamic list (drop down) to work.
The code is below. I am using struts grid 2.2. Tried edittype="select" on column. no luck :(
<sjg:grid ...
0
votes
0answers
347 views
Validating inline edit column data in Struts2-jQuery Grid
Is there any validate for inline edit column data using Struts2-jQuery Grid.Actually i tried with editrules="{required:true,minValue:1,maxValue:100}".but page was is not displayed.I didn't seen any ...
0
votes
1answer
313 views
Custom grid button to load ajax content depending on selected row
I need to make a custom buttom in my grid that will open a modal which will render a select field with options depending on selected row.
So the user will select a row and click the button. The row ...
1
vote
0answers
214 views
I can't get rowid parent of a subgrid in jquery grid plugin
I work in a Struts 2 project with the Jquery Grid Plugin (3.3.3)
I'm using a grid (<sjg:grid>) and subgrid nested component . In the editurl action of my subgrid I've implemented rowid where it ...
0
votes
0answers
210 views
Can we add edit anchor in struts2jquerygrid
In struts, to display list we use display tag. And we can use edit action in the grid to edit a particular record in a separate jsp page. So here we can edit all values of that record, even though ...
0
votes
1answer
253 views
struts2 jqgrid subGridUrl parameters are lost
I am using a jqgrid with a child grid in a struts2 application. I have two parameters in my subGridUrl. Those parameters are lost when the data request goes to backend. The request to the backend only ...
0
votes
0answers
378 views
JSON results from different Action classes included in the same JSP page
I wonder if it is possible to have a page which contains many Ajax elements but not all of them sending resquest to the same Action class. I use:
struts2-jquery-plugin, struts2-json-plugin and ...
0
votes
0answers
382 views
How to invoke editrules through custom button in my jqGrid or sjg:grid
We are using Struts2-jQuery Grid (sjg:grid) which is built on top of jqGrid
We have added editrules defined in my gridcolumn and they are getting invoked when i click on the 'Save' button that comes ...
1
vote
1answer
781 views
How to Increase jqGrid toolbar / navbar icon size for visual accessibility?
Here is a requirement that we received, can we increase the size Struts2-jQuery Grid /jQGrid 'Toolbar Icons' ? like Save/Delete/Find/Add etc ?
Our users would need visual accessibility in ...
0
votes
2answers
2k views
Edit Multiple rows in Struts2 jQuery Grid via Inline Edit
The struts2-jQuery grid offers a wide variety of edit features. But for one of our requirements, the Out-of-the-Box 'Edit' feature in this grid is not suitable. we want to customize it as follows..
...
0
votes
1answer
2k views
Struts Jquery plugin - grid showing json data, grid is displayed within a modal dialog
I have a jsp page (page1.jsp). This page has a grid, the grid gets loaded using say action class A and on one of the grid columns I have a onclick open a dialog. The dialog on open calls a different ...
1
vote
1answer
507 views
JQGrid server side pagination not working?
am new to JQGrid
Let me explain the issue am facing ...
I am using struts2-jquery grid , which is internally using JQGrid , and am controlling the grid outside , example : am using search elements to ...
-1
votes
1answer
1k views
Navigator Add options of jqgrid using struts2-jquery tag?
I am using jqgrid (struts2-jquery tag).what are the default parameters for Navigator Add Options in sjg:grid tags
Some options i found were
...
0
votes
0answers
388 views
jQuery client side validation in <sjg:grid /> to avoid duplicate value
I've a grid as ,
<div id="GridContainer">
<s:url id="loadGridURl" namespace="/workflow" action="getAll" />
<sjg:grid
id="PROCESS_LIST_GRID"
autowidth="true"
...
0
votes
2answers
325 views
sopt value to ignore case sensitivity
In my struts2jquery grid I've given
<sj:gridColumn name="processName" index="processName" title="Process Name" search="true" searchoptions="{sopt: ['bw','cn']}"/>
For sopt we've values like
...
2
votes
1answer
342 views
Filtering in <sjg:grid> without case sensitivity
I'm using a struts2jquery grid in which I've given filter="true". So it's filtering the data in client side. But It's filtering only on case sensitivity. I need to get data without case. So what ...
0
votes
1answer
481 views
jqgrid: JQGrid scripts not loading in IE
i am working on struts2-jquery plugin . the below snippet is working fine in Firefox ,Chrome .but the JQGrid related libraries is not loading in IE , there by its not allowing to make normal Ajax call ...
0
votes
1answer
1k views
struts2 jquery grid: data not displayed on grid
I'm trying to use struts2-jquery grid plugin.
When debugging my gridmodel is getting updated correctly, but nothing is getting displayed on the grid.
This is my action class:
private ...
0
votes
0answers
659 views
struts2 jqgrid editable cell not editable
I have two jqgrid tables. The first one is not editable but i want the second to editable. i want to perform cell editing. On click of a row on the first grid, the second grid reloads. But when it ...
0
votes
1answer
299 views
column grouping in jqgrid with struts2?
i want to know how to use group field in jqgrid with struts2 .
i want to make group of column in jqgrid. please give me any example or suggest me any website which is usefull with struts2


