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
16
votes
1 answer

"copy con" or "type con > " equivalent in Powershell?

On Command Prompt you can create a text file inline by doing this: copy con file.txt Hello World ^Z Or: type con > file.txt Hello World ^Z Is there an equivalent command in Powershell? Neither of the two commands I listed above work.
Govind Parmar
  • 20,656
  • 7
  • 53
  • 85
15
votes
1 answer

Edit in place vs. separate edit page / modal?

I have some data that is broken up into sections, much like the Resume feature of StackOverflow Careers (it's not resume data, though), that is editable/create-able via a jQuery web app. It's a bit more hierarchical (jobs can have sub-jobs, etc.) so…
Matt Rogish
  • 24,435
  • 11
  • 76
  • 92
14
votes
5 answers

jqGrid - Inline edit - Detect dirty / changed cells

is there an example of using jqgrid's getChangedCells method to determine if data has changed? I grepped getChangedCells in the downloadable demos for jqgrid, and could only find the function definition, not example usages of getChangedCells. What…
Nathan Neff
  • 553
  • 1
  • 6
  • 9
14
votes
3 answers

jQuery - Edit a table row inline

I have a table with arbitrary columns and rows. This fact is irrelevant though really, all I want to do is develop a function that will turn a row (or multiple rows) into a series of text inputs containing the data in the table (or empty if no data…
adam
  • 22,404
  • 20
  • 87
  • 119
13
votes
2 answers

Powershell Hotkey to Erase Current Line?

I would like to execute a hotkey that would erase the current line in the powershell session. Is such a thing possible?
MattUebel
  • 2,737
  • 4
  • 21
  • 22
11
votes
3 answers

Kendo grid with inline editable list

I need to implement a grid with editable entries. One of entity fields is list of strings. For example, it's an order list and each order may have several tracking numbers. So I need it to implement a widget that will support displaying the list of…
the_V
  • 801
  • 3
  • 12
  • 21
10
votes
2 answers

x-editable in bootstrap 4?

I am currently exploring Bootstrap 4. In Bootstrap 3, I had implemented inline editing using x-editable. But for Bootstrap 4, I couldn't find how to implement inline editing. Any suggestions?
Bhushan Gadekar
  • 13,485
  • 21
  • 82
  • 131
10
votes
2 answers

in-place edit in Rails 3

There are a few options for editing a model in-place while in the Show page, i.e. without having to load a form in the Edit page. For example, see http://www.ruby-toolbox.com/categories/rails_in_place_editing.html. Has anyone had any experience…
futureshocked
  • 2,105
  • 4
  • 23
  • 32
10
votes
1 answer

x-editable access attribute value of trigger element

I am using x-editable for in-line editing inside my web app. I would like to pass additional parameters to server, which I would like to read from data- attributes on trigger element. Here is my editable element:
Primoz Rome
  • 10,379
  • 17
  • 76
  • 108
9
votes
3 answers

Angular.js inline-editing

I'm trying to find the best approach of inline-editing with angularjs. In my case it's kind of a data-grid with an "edit" button. So it's inside ng-repeat. What I've seen people do is have both actual data and editing inputs in the same row, with…
fxck
  • 4,898
  • 8
  • 56
  • 94
9
votes
2 answers

Enable CKEditor4 inline on span and other inline tags

I'd like to know if it's possible and how to enable the CKEditor4 inline/contenteditable editing feature on and other inline elements. This is something which I cannot find in the official docs. With this markup:
mnorrish
  • 479
  • 5
  • 11
9
votes
1 answer

How does workflowy implemented inline editing?

It's really great UI-feature that I can edit my lists on click without specific buttons. It looks like big wysiwyg editor with link and tags highlight. Which js technique are they use? Contenteditable for spying focus and then textarea for editing?
Aleksey Kulikov
  • 625
  • 1
  • 5
  • 7
8
votes
2 answers

Inline editing of Webgrid row in MVC3

public class UserDetailsModel { public int ID { get; set; } public string LoginID { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string IsDeleted { get;…
user1120418
  • 261
  • 3
  • 8
  • 18
7
votes
4 answers

When doing AJAX edit to the database, should I update the interface immediately with the new data

I'm using inline-edit to update text in the database with AJAX. This is basically the process, pretty usual stuff: text is not editable I click the text, it becomes editable I type the new text then click to send the updated text to the database…
sameold
  • 18,400
  • 21
  • 63
  • 87
6
votes
9 answers

How to remove the "title" attribute that the CKEditor 4 add automatically on inline editing?

When using CKEditor 4 Inline Editing on a object the CKEditor add a "Title" attribute that include a text and the object id. e.g. In the CKEditor inline example we can see the next code:

Roy Shoa
  • 3,117
  • 1
  • 37
  • 41

1
2 3
17 18