Questions tagged [inline-editing]

Inline editing is a quick way to update database information by making changes directly in the row of the grid.

267 questions
3
votes
2 answers

jqGrid - inline editing with autocomplete

I am sure that I saw it already in an example but can't find it again :( I have a jqGrid with inline editing. That works fine. One column has a select box with 200 entries. Those get retrieved from a database query already. Since 200 entries are too…
Antonia
  • 31
  • 1
  • 2
3
votes
2 answers

Angular inline edit table singleton

I am trying to create inline editing for a table (similar to angular-xeditable), but I want to only allow only one row to be editable at a time. Currently you can any number of rows to be in edit mode. Options Keep a list of rows in edit mode, and…
Mohammad Ali
  • 353
  • 1
  • 6
  • 18
3
votes
2 answers

Shell: In-file converting first field of a text file from decimal to hexadecimal

This is my example text file: $ cat RealVNC\ MRU.reg "10"="Lamborghini-:1" "16"="Terminus-" "20"="Midnighter-:5915" "35"="ThreepWood-:1" "81"="Midnighter-:1" "58"="Midnighter-" And I would like to convert values of the first field (the numbers…
Sopalajo de Arrierez
  • 3,543
  • 4
  • 34
  • 52
3
votes
1 answer

Inline editing for HTML table

I have following jquery function that displays table. $(function() { $("#table-contact > tbody").html(""); $.ajax({ "url" : '/Contact/' + id, type: 'GET', success: function(data) { …
Futuregeek
  • 1,900
  • 3
  • 26
  • 51
3
votes
3 answers

Why is my jQuery jEditable, edit-in-place callback not working?

I am using a jQuery jEditable edit-in-place field but when the JSON function returns and I try to return a value from my edit-in-place callback all I get is a flash of You can see this here... http://clareshilland.unknowndomain.co.uk/ Hit Ctrl+L…
unknowndomain
  • 985
  • 1
  • 10
  • 34
3
votes
1 answer

Inline editing mode an dynamic object

I've created a grid with a dynamic object and I'd like to use the GridEditMode.InLine to update and add data. The popUp mode is working but with the InCell and the inline I'm getting the following error: Templates can be used only with field…
Dzim
  • 31
  • 2
3
votes
1 answer

How to do inline editing in angularjs without Template?

am trying to write an inline editing function without using a template as outlined here http://plnkr.co/edit/EsW7mV?p=preview
Priya Bose
  • 665
  • 1
  • 7
  • 8
3
votes
1 answer

Primefaces inline editing of datatable not working

I am trying to provide a possibility to inline-edit a row of a datatable with primefaces, but it doesn't seem to work properly. I can visually edit the values but when I click the save-icon, it doesn't update the changed values... Here is the…
xeraphim
  • 4,375
  • 9
  • 54
  • 102
3
votes
3 answers

jQuery EasyUI: confirm/save datagrid inline editing

I am using jquery & EasyUI to create a table from a SQL database. I have managed making some of the columns editable via inline editing following this tutorial, where the possible cell values are given by a combobox. I have a php file for the…
Bernd
  • 675
  • 3
  • 13
  • 23
3
votes
1 answer

jqgrid onClickSubmit and afterSubmit events of inline Save button

I've been looking around for an answer for a little while now and cannot find an one that sufficiently answers my question... I have a JQ Grid that utilises both inline and form editing and uses blockUI to show a 'working' message while the server…
Andrew Humphries
  • 167
  • 3
  • 15
3
votes
0 answers

Browser Word Document Editor

I've been looking at Adobe Buzzword and Zoho Writer and the functionality their editor controls provide is something that I need to incorporate into an application I'm working on. To be clear, I'm not looking for a WYSIWYG HTML editor like FCKEditor…
lomaxx
  • 113,627
  • 57
  • 144
  • 179
3
votes
1 answer

Django GenericTabularInline for multiple databases

I've been trying to make the GenericTabularInline class work in a two-admin two-databases setup by inheriting from it and overriding some methods in the BaseModelAdmin class, as is done in the Django docs…
3
votes
3 answers

How can i integrate country_select gem with best_in_place editing

I am using the best_in_place gem to edit records inline and country_select to render a list of countries to select from. When using best_in_place to edit a select field i do this: <%= best_in_place(@home, :country_name, :type => :select, :collection…
Hishalv
  • 3,052
  • 3
  • 29
  • 52
2
votes
1 answer

jQuery inline-edit on double-click?

I'm using a jquery plugin for inline editing. But i would like to activate edition on double-click and not on single click. Here is a created jsFiddle : http://jsfiddle.net/N5cvv/2/ Could you please tell me how to solve my problem?
Arnaud
  • 412
  • 6
  • 12
2
votes
1 answer

Inline edit in vue js 3 with Composition API

I tried to make inline editing in Vue Js 3 with Composition APIand I face this problem. When I click edit, it impacts all rows. How do I make it to only work in one row based on id? Here's the result I have so far The codes are there, but if it…
Adriani Umar
  • 75
  • 1
  • 5
1 2
3
17 18