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
6
votes
0 answers

squarespace opensource clone / features in ruby on rails?

Ive searched extensive but could not find anything that implements squarespace.com features only some blog posts on individual components like inline editing What I want to build is a very simplistic version of squarespace with editing inline…
5
votes
1 answer

I can't write into the EditText, it disappears when i try to write something, its because the getView() is called when i modify the data

EDIT: I found the reason which is that the getView() is called when i try to edit something, so the data from the DataAdapter is loaded & my edited changes disappears. EDIT: i observed one thing, if there are few rows in the listview then…
5
votes
1 answer

How to indicate to screen readers that content is inline editable?

My product has an area where we want to display a default value (let's say the name of a document page), but when the user focuses on it and hits the space bar, it becomes an editable field. We are trying to write accessible code, and I was…
caraclarke
  • 370
  • 1
  • 5
  • 24
5
votes
1 answer

How to rerun an inline loop in ZSH on single line (bash like behavior)

I'd like to know if there is a way to get inline loops in zsh to behave like in bash. I've started using zsh recently and so far I like it. There is one thing in zsh I would like to behave like in bash, inline loops. I often run quick loops like so…
Aaron Bandelli
  • 1,238
  • 2
  • 14
  • 16
5
votes
1 answer

Getting error "1366 Incorrect integer value: '1'" when importing file

I'm trying to inline upload data stored in UTF-8 text files, and I have two problems. Firstly, there's currently no primary key set on this table, and it's not set to auto-increment or forced to be null at this point; the first column will be the…
Neil
  • 83
  • 1
  • 1
  • 7
5
votes
1 answer

Display only datepicker in kendo inline editing not datetime picker

I have an issue to disply the datepicker in kendo inline editing. It shows datetime picker all the times. columns.Bound(k => k.datefrom).ClientTemplate("#= (datefrom == null) ? ' ' : kendo.toString(datefrom, 'dd.MM.yyyy') #").Width(150); I also…
4
votes
3 answers

updating a cell value based on another cell value in kendo grid asp.net mvc

I have been struggling with this problem for two days, any help is hugely appreciated. I have a kendo grid, in which i have given the grid excel like capabilities, i.e on hitting enter the column which is editable is highlighted and I can enter the…
4
votes
1 answer

Configure xeditable locally

Im trying to implement inline edit for my tables in my angular/react project.I cant understand exactly how I should make my changes in my local array defined in my component state ??? Im not using any database or server...and all of the examples are…
4
votes
1 answer

Validation with inline editing in jQuery datatables after trimming spaces

Using the jQuery datatable editor plug-in, the following code works as intended. It performs specified validations (some of the fields have been omitted for brevity). Editor::inst( $db, 'file_upload' ) ->fields( Field::inst( 'id'…
Tiny
  • 27,221
  • 105
  • 339
  • 599
4
votes
1 answer

Inline editing of ManyToMany relation in Django

After working through the Django tutorial I'm now trying to build a very simple invoicing application. I want to add several Products to an Invoice, and to specify the quantity of each product in the Invoice form in the Django admin. Now I've to…
vorpyg
  • 2,505
  • 4
  • 25
  • 22
4
votes
1 answer

jQuery DataTable Inline Editing

I have been trying to implement simple Inline editing in jQuery Datatable. But I cannot activate the edit that happens on click on a row cell. I used the same code as in their site Link:
lbrahim
  • 3,710
  • 12
  • 57
  • 95
4
votes
3 answers

Knockout Inline Edit Binding

I went looking for a knockout inline edit binding, but the only ones I found had external dependencies other than jQuery, or used more than just a binding. So I figured I would share the simple one I came up with (other answer's of course welcome,…
Kyeotic
  • 19,697
  • 10
  • 71
  • 128
3
votes
2 answers

TinyMCE problem with second show. Help

Added tinyMCE as inline editor. Have a next probllem : first time this is work good - show with custom style (as I setup), works correctly but when I click cancel and then start edit again I have empty editor - without text in edit area. so this is…
ZigZag
  • 539
  • 1
  • 8
  • 19
3
votes
4 answers

How can I remove text at beginning of a file using a regex?

I have a bunch of files that contain a semi-standard header. That is, the look of it is very similar but the text changes somewhat. I want to remove this header from all of the files. From looking at the files, I know that what I want to remove is…
GeoffreyF67
  • 11,061
  • 11
  • 46
  • 56
3
votes
2 answers

Ember: Call Action on Input Field on Focus Out with Argument

I'm creating a simple Todo App as I explore EmberJS v2.14. I want to build in a manual inline editing feature--the user will double-click on a todo line item text span, to open up a input field. The user will then edit the todo, which will be…
Michael R
  • 1,547
  • 1
  • 19
  • 27
1
2
3
17 18