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

Xcode Instruments - How to open the offending file for editing?

I'm using a couple of third party libraries that appear to have memory leaks. Instruments highlight the offending lines of code on it's own window, but then I have to look myself in the Xcode editor window for the corresponding file and the…
rraallvv
  • 2,875
  • 6
  • 30
  • 67
0
votes
1 answer

InfoVis SpaceTrees: node information update after form submit

I'm trying to use InfoVis SpaceTree to allow users to manage some information. Upon clicks on a node, a form is created and shown to the user, which allows him to update that specific node's properties, by ajax. Also, the tree is displayed using…
thyandrecardoso
  • 801
  • 1
  • 7
  • 12
0
votes
0 answers

jQuery - Edit in place - with hidden fields and no POST

Many solutions I've found involve live POSTing the data that was changed. I don't want that. I am looking to: transform a div / span (on click / focus) into an input (like any normal Edit it place does) hide the input but keep it in the DOM so that…
Valentin Despa
  • 40,712
  • 18
  • 80
  • 106
0
votes
1 answer

authlogic and ajax in place editing with rails, also routing issues

I'm trying to use Authlogic to protect some in place editor fields I have on a page. I've protected all the methods in my controller, but it looks like in_place_editor is calling some weird generated stuff that doesn't even show up in my routes,…
V_H
  • 1,793
  • 3
  • 34
  • 59
0
votes
2 answers

Primefaces p:inplace component: how to read state in JavaScript?

How to access the state of PrimeFaces p:inplace component in Javascript? I need to check if the component is in state inline or not, in order to call toggle()function when needed... AFAIK toggle() can only change the state and not set the state to…
Danubian Sailor
  • 1
  • 38
  • 145
  • 223
0
votes
2 answers

In-place UITableView edtiting: Adding a row crash

My tableview uses in-place editing and adding. A new row is added when the edit button is pushed and this new row can be edited and commited. When commiting the new row into the tableview, the new row is added and the blank cell is moved down which…
Jace
  • 145
  • 2
  • 11
0
votes
1 answer

Is it possible to have edit in place in a KendoUI ListView for each field separately?

For instance if I have a ListView of items with a Title and a Description, is it possible to to edit each field separately using KendoUI? If so, is it possible to have that using KendoUI MVVM?
Ricardo
  • 199
  • 2
  • 9
-1
votes
4 answers

How to sort this array this way in python?

You are given an array, for example: arr = [['AB','KR','EH'],['EE','DD','PS'],['GH','LM','XK']] Then, through a function, you have to get this: The array must be sorted ascending as a whole and not only by rows. You can not create new arrays for…
-2
votes
1 answer

open textfield after click on span does not work

I am not able to create an edit in place feature with JavaScript/ jQuery. I could not use the plugin editinplace, because I need to put a datepicker on it. My code below does not work for some strange reason: function…
alpham8
  • 1,314
  • 2
  • 14
  • 32
1 2 3 4 5 6
7