Questions tagged [jqgrid-inlinenav]

54 questions
0
votes
0 answers

Edit jqgrid column

as i am new to jqgrid,my question be stupid one, my requirement is that i need to implement an editable jqgrid.but the problem is i want one column to be in editable form by default. { name: 'Description', index: 'Description', classes: 'align_left…
SidD
  • 5,697
  • 4
  • 18
  • 30
0
votes
1 answer

Undefined value of Action column in case of Formatter: "actions"

I have My grid.I want to have an action column in my jqGrid with an options ADD/Edit/Delete. I read the documentation of JqGrid and I came to know JqGrid provide me functions for this using formatter action,I implemented the same in my code but …
0
votes
1 answer

jqgrid inline edit with inline button

I need to edit the jqgrid row as below: 1) Edit button should apppear on each row. (at last column). 2) on click of edit button, inline edit should enable and (Save and Cancel ) button should appear. Please guide me . I found, many exmaple but, its…
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
1 answer

How to disbale inline grid edit for full grid depending on some value

I have something like authorization and lets say if the user doesnt have edit authorization, then I dont want to provide the inline edit option. How is this possible. if(NotAuthorized) { $grid.jqGrid('hideCol', "act");} UPDATE Have updated the…
user2375298
  • 1,001
  • 4
  • 15
  • 28
0
votes
1 answer

How to remove right bottom pager text from jqgrid

In jqgrid, I want to remove text appearing on pager i.e. View 1 - 2 of 2. all other things are fine on pager. My grid/pager is as follow:
for pager: rowNum: 5, …
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
1 answer

jqGrid Highlight error cell when validation fails

I am using jqgrid 4.6. I tried implementing the code give in the link below to highlight error cell. But I get error 'Unable to get property 'rows' of undefined or null reference'. Can you please help me resolve it. Thanks! Link:Oleg's answer in…
0
votes
1 answer

jQgrid after Click on Reload Grid button, all data get disappear

I am new in jqGrid programming. I am using inline editing jQgrid with add, edit and reload grid functionality. When I come on page, grid loaded successfully. But after Click on reload grid button, all data from grid get disappear. The worst part is…
Rahul More
  • 615
  • 3
  • 13
  • 41
0
votes
1 answer

How to change color theme and font size of jqgrid

I have created application in MVC 4, jquery and jqgrid. I have used jqgrid in one of page as below: $('#g).jqGrid({ ajaxGridOptions: { error: function () { $('#g')[0].grid.hDiv.loading =…
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
0 answers

jqgrid inlinenav save/edit not available with hidden id column

I have a jqgrid with an id that is a db sequence and thus the user doesn't need to see it. When the column is marked as 'hidden : true' the inlinenav edit is not clickable and the save won't save. It works fine when I comment that…
0
votes
0 answers

jqGrid inline edit: strip HTML before edit

I am unable to strip HTML inserted by the formatter before inline editing. I am using MVC5 with EF6, so my grid definition is in the GridViewModel. In my jqGridSelectRow event handler (the View's scripts module), I have the following snippet of…
Ungaro
  • 522
  • 6
  • 15
0
votes
2 answers

Replace Delete Icon of jqGrid with custom Icon

I wanted to change just the delete Icon of jqGrid in actions column with my own Icon(newTrash-icon.png). I've seen that jqGrid loads Icon from one png icons file. How do I replace the default trashcan Icon with some other trashcan Icon. I tried…
0
votes
1 answer

jQuery ui autocomplte in jQGrid popup position issue

I have following code in jQgrid and I am using jQuery ui autocomplete in one of the field. But the pop up of autocomplete displays somewhere else as shown in figure. From IE developer tools I noticed the results are attached to body tag, which is at…
0
votes
2 answers

JQGrid set value in cell based on condition

I need to set the JQgrid cell value based on the condition, suppose the variable value is one then i need to set a bike, if it is 2 then i need to set as car, and so on. Can anyone please explain how to achieve this?
user2724215
  • 165
  • 5
  • 16
0
votes
1 answer

beforeShowform in inline editing

is it possible to fire the beforshowform event in inline editing, because as per wiki i m not able to find any solution to call before show form in inline editing with option editformbutton:true . Any help is much appreciated
user1996823
  • 579
  • 1
  • 4
  • 10
0
votes
1 answer

jqGrid with localArray - Inline Navigation : get delete row button and call custom function

I am using jqGrid with localArray data. I am fetching this array from azure db and binging to grid. After this on manipulation of every single row, I am planning to update it in DB. I am using inline navigation bar. On clicking of "add row", "save…
Mohit
  • 39
  • 1
  • 2
  • 10