Questions tagged [edit-in-place]

Edit-in-place is a user interface component, typically web-based, that hides input elements until an action is taken by the user (such as a mouse click).

Edit-in-place is a user interface component, typically web-based, that hides input elements until an action is taken by the user (such as a mouse click). Upon activation, the input field appears. When the input field loses focus, the input field disappears.

99 questions
0
votes
2 answers

What is my document onLoad hander in Rails?

I want to use a plugin to make most of my models inline editable, but I don't understand the following: To use it, include jquery.rest_in_place.js in your template and execute the following in your document’s onLoad…
Satchel
  • 16,414
  • 23
  • 106
  • 192
0
votes
2 answers

Using variables and functions in an object literal

I am trying to get the ckeip jquery plugin to parse the id of my textarea to my php file. The plugin is activated by the class name of my textarea: $('.ckeip_edit').ckeip({ And then data is passed to my php file with an object literal: data:…
0
votes
1 answer

Add div javascript and then edit in place jquery

I've used the code from Add/remove HTML inside div using JavaScript to make it suite my needs but unable to make any added
or editable with any of the edit in place scripts that I found. As you can see the last editable field is working…
Alex
  • 27
  • 7
0
votes
3 answers

Avoiding a large amount of hidden elements for in place editing with angularjs

I have a rather large list with todo items for which I want to add in place editing for: [ ] first todo [ ] second todo [ ] third todo after clicking on the second todo, the text of the second todo can be edited but you can also set some…
rve
  • 5,897
  • 3
  • 40
  • 64
0
votes
1 answer

In-place Editing of Angular Material Checkbox Label

The following code gives me a checkbox with a label: This Label should be editable Actual state: I can (un)check the box by clicking either the box itself or clicking on the label. The cursor is a…
Markus
  • 1,222
  • 1
  • 13
  • 26
0
votes
2 answers

Python in-place write to file at arbitrary position

I'm trying to edit a text file in-place in python. It is very large (so loading it into memory is not an option). I intend to replace byte-for-byte strings I find inside. with f as open("filename.txt", "r+b"): if f.read(8) == "01234567": …
0
votes
1 answer

Dom issues when using jquery filter plugin

I am using https://github.com/chromawoods/instaFilta for filter a table The table has dynamic row insertion using ajax and each row cells can be updated using edit in place using: https://github.com/itinken/jinplace Now when i add a new row and…
George
  • 13
  • 3
0
votes
1 answer

p:inplace still toggle back when validation fails

I'm new to PrimeFaces and when I try to use with for multiple input fields, it still toggles back even though the validation fails. The code is as following:
0
votes
1 answer

How to make jQuery target and attach a plugin call to hundreds of CSS ID's with an ID number at the end of them?

I am using one of my favorite JavaScript libraries for in-place editing call X-Editable https://github.com/vitalets/x-editable I am building a Project Management application. ON a project page there is multiple Task Lists and each list can also…
JasonDavis
  • 48,204
  • 100
  • 318
  • 537
0
votes
1 answer

Apply HalloJS to elements created after initialization

I recently replaced Aloha editor with HalloJS in my CMS for several reasons, the most important of which are HalloJS being more leightweight and a lot easier to customize. A severe problem I have however run into is that it doesn't seem possible to…
0
votes
1 answer

How can I use do edit-in-place on three different models from a View for a model those three belong_to?

I would like to enable edit-in-place functionality in a View that displays values from different models: This is what I use currently and it does NOT work, but would like some alternatives: I have a model called Campaign. In the controller, I do…
Satchel
  • 16,414
  • 23
  • 106
  • 192
0
votes
3 answers

best_in_place show dropdown menu option

I figured that this would be a common need, but have been unsuccessful in finding a solution. I followed this ASCIIcast by Ryan Bates http://railscasts.com/episodes/302-in-place-editing?view=asciicast and now have functional in place editing on my…
ohhh
  • 972
  • 9
  • 24
0
votes
1 answer

jquery.editinplace inputs error when using jquery 1.10.2 (example below)

I am using this library https://code.google.com/p/jquery-in-place-editor/ Here is the example: http://jsfiddle.net/2jCWL/2/ (the function call is at the bottom of script section) So my question is, how to make it work with JQuery-1.10.2 or is it…
jovanMeshkov
  • 757
  • 5
  • 12
  • 29
0
votes
1 answer

How to solve the issue in in-place editing the text box through jquery when table is dynamic

I have generated dynamic tables which will generate a list of tables rows and columns. If i double clicked a particular column that particular td should be available for in place editing. In place editing is working fine. But when i double click and…
user3614760
  • 9
  • 2
  • 7
0
votes
1 answer

editableText plugin enabling problem

I've been experimenting with this plugin http://valums.com/edit-in-place/, so far so good... But i ran into this problem. I want to update my page when update or new request to save data is sent but if i update this function(edit-in-place) it will…
noName
  • 1