Questions tagged [jqgrid-inlinenav]

54 questions
1
vote
1 answer

jqgrid inlinenav - custom row id and delete

Each row has an id in our db different to the jqgrid row id. How can I send this lineid when saving a row? Also, is there a way to delete a row? This is my code so far: var mydata = [ { lineItemId: "785", …
Mark Steggles
  • 5,369
  • 8
  • 40
  • 50
1
vote
1 answer

Custom Buttons in inline editing like we have in pagination div in jqgrid

Is it possible to add the custom button in each row while using inline editing in jqgrid like we have a provision to add in pagination div using .navButtonAdd() function? If possible can any one suggest how to do the same...
user1996823
  • 579
  • 1
  • 4
  • 10
1
vote
1 answer

JQGRID Saving a new row

I have used jqgrid several times before and without too many problems, except this time I've hit a brick wall. I'm building a website which requires the user to have access to a products database table via a manager front end, which is where JQGRID…
Jim Grant
  • 1,128
  • 2
  • 13
  • 31
1
vote
1 answer

How one could use server side sorting and paging with Azure Mobile Services

I am using jqGrid (inlineNav) with data from azure service and interested in learning how one could use server side sorting and paging with Azure Mobile Services. Please share thoughts around this.
Mohit
  • 39
  • 1
  • 2
  • 10
1
vote
1 answer

How to implement inline editing (Edit) of Azure Mobile Services Tables. How to process errors handling

I am using jqGrid (inlineNav) with data from azure service and interested in learning about inline editing and error handling with azure mobile service table. Please share thoughts. Code update 1: Code update based on Oleg's suggested way of using…
Mohit
  • 39
  • 1
  • 2
  • 10
1
vote
1 answer

jqGrid with Ajax data (JSON) : load data in grid using "url" parameter from azure database

I have one doubt with ajax implementation. I could find that "url" parameter need to be defined as "service_name1.azure-mobile.net/tables/" to fetch data to populate grid. But I need to add request header "X-ZUMO-APPLICATION" to define application…
Mohit
  • 39
  • 1
  • 2
  • 10
1
vote
1 answer

JQGrid InlineNav delete option

I am using "inlineNav" for my jqgrid. It has all the required features for Addition, edit, Cancel add. but cant find anything for deletion. I tried using "navGrid" delete but then that gives error "error Status: 'Not Found'. Error code: 404". So can…
Siddhartha
  • 15
  • 1
  • 6
1
vote
0 answers

jqGrid inline editing with dynamic scroll - scrolling issues

I'm using jqGrid with dynamic scrolling and I'd like to use the Inline editing with inlineNav incl. Oleg's solution which makes inline editing finaly useful. I found dynamic scrolling problematic because not all rows are loaded (and rendered) and…
dmnc
  • 966
  • 1
  • 9
  • 19
1
vote
1 answer

jqGrid inline editing - addRow keys not working for the first time

I want to use inline editing with Esc and Enter keys and I'm using inlineNav method. I already set keys: true for editRow method and keys are working. While I'm usig "add row" button, keys are not forking for the first time. I must cancel this…
dmnc
  • 966
  • 1
  • 9
  • 19
1
vote
0 answers

how to add a new row button for the jqgrid inline navigator whitout showing the modal dialog form?

I am using the example in the jqGrid Demos page located in Row Editing > Inline Navigator, but I need to have my add button out of the navigator like in example Live Data Manipulation > Add Row. I have already placed the add button:
Floyd Barber
  • 107
  • 1
  • 3
  • 10
1
vote
1 answer

search in jqGrid

i'm starter in jqGrid, i write this code for build jqGrid in ASP.NET var grid = $('#list'); grid.jqGrid({ url: 'jQGridHandler.ashx', postData: { ActionPage: 'CostTypes', Action: 'Fill' }, ajaxGridOptions: { cache: false }, direction:…
Pouya
  • 1,908
  • 17
  • 56
  • 78
0
votes
1 answer

How to make editable:false for jqgrid cell in INLINE edit?

I tried this to make cell non editable as per condition but don't know where to place this code, in $( document ).ready(function() or in onSelectRow : function(rowid, status, e) and what are the meanings of the parameters passed to that function?…
VijayD
  • 826
  • 1
  • 11
  • 33
0
votes
1 answer

In Inine edit of jqgrid, unable to cancel out the earlier edit event and switch to new event

When do inline edit in jqgrid row, then it allows to do but, again click on another row then, it is not cancelling earlier row and both will remain in edit mode. I need it to be cancel last one if user has clicked new row to edit as at single time,…
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
1 answer

How to make free jqrid font awesome action buttons bigger

Free jqgrid 4.8 with font awesome icon set is used. Standard action buttons are defined using…
Andrus
  • 26,339
  • 60
  • 204
  • 378
0
votes
1 answer

Hide a column while viewing selected row from JQGrid pager button.

I have one column in JQGrid. { name: 'Action', index: 'Action', width: 70, sortable: false, formatter: 'actions', formatoptions: { keys: true, editformbutton: false, editbutton: true, delbutton: false } } I want to hide the above column while…
Anand
  • 823
  • 1
  • 10
  • 19