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

jEditable - update new values to database

i'm a newbie to web development world. Let me explain what i want. id car make 1 panamera porsche 2 italia ferraris 3 avantador lamborghini 4 slk mercedes I have this simple table in my database and i'm gonna…
0
votes
1 answer

Edit in place with jquery and submit updated content through a form

this is my scenario... In a form, i am using some jquery edit in place to allow users to edit some content. What i need, is for this edited content to be submitted in the form. I thought maybe i can use the jQuery clone function to 'pick up' the div…
Miro
  • 131
  • 2
  • 19
0
votes
1 answer

How to return a new table after modifying the columns, instead of changing the original table?

How to return a new table without changing the original one when I use tmpTB.replaceColumn!(args)? Is there a parameter like inplace=False in pandas?
YaN
  • 407
  • 1
  • 6
0
votes
0 answers

In Excel we can use the "ADVANCED Filter". How can I "Filter the list in place" of records based on a list (not by condition)?

I have a problem in Google Sheet with filtering records in place. For example, in Excel we can use the "ADVANCED Filter". By clicking "Filter the list in place", we can select "list range" and "Criteria Range". Then we can filter the list in place…
0
votes
1 answer

Uninitialized Constant in rails 3 in_place_edit

I want to edit the name of my object temp_thing in place by using the in_place_editor_field. In my view I use the following code for my object @temp_thing: <%= in_place_editor_field :temp_thing, :name %> now when changing the name and clicking…
Sebastian Müller
  • 5,471
  • 13
  • 51
  • 79
0
votes
1 answer

javascript mvc framework design practice for edit-in-place interface

I am programming a CMS that allows creating and editing elements (content blocks) on the site in a WYSIWYG manner. basically, when logged in, you see visually the same website, but hovering and clicking on elements brings up either editors (like…
0
votes
1 answer

how to remove 'another in place editor' from a field (jQuery inplace.js plugin)

I am able to set up the inplace editor no problem, everything works great, but I haven't found a way to remove it once it is attached to a field, anyone know how? I am talking about this plugin here:…
naspinski
  • 34,020
  • 36
  • 111
  • 167
0
votes
2 answers

Inline edit component in Swing

I'm wondering an inline edit Textfield for Swing does exist. I googled around a bit and checked all swing libraries which I know, but i did not find such a component. Has anyone implemented such a edit-in-place swing component or does someone know…
Dominik Obermaier
  • 5,610
  • 4
  • 34
  • 45
0
votes
2 answers

powershell in-place remove double quotes in text file where line starts with double quotes + some other text

I need to remove double quote in a text file, only if lines start with "https". File contents is like this: ... "bla, bla, bla" "https://example.com" "bar, bar, bar" ... I've to match "https://example.com", remove both double quotes,…
0
votes
1 answer

jquery-edit-in-place pass dynamically parameter

i use an jquery-Plugin: https://code.google.com/archive/p/jquery-in-place-editor/ . In the following section I use "JEIP" instead of the full name. I try to bind JEIP not to an ID but to many objects by css class.
0
votes
1 answer

Edit in-place multiple input fields

I'm building a page where users can place multiple containers with input fields that can be edited in place. My script at the moment allows me to edit in place the input fields on click but I'm running into 2 issues: I need to edit each form…
Nesta
  • 988
  • 2
  • 16
  • 44
0
votes
1 answer

list[:] and list: which one to use if I want to change the list in place?

I want to reverse a list from the kth element IN PLACE and here's my code: list[:] = list[len(list) - k:] + list[:len(list) - k] I know that this is the right code while the following code is incorrect. Anyone know why? list = list[len(list) - k:]…
CathyQian
  • 1,081
  • 15
  • 30
0
votes
1 answer

in place edit in rails for textbox

I have an application, in which I have textboxes, how to do in-place edit I tried all, I am getting nothing and I am not able to set up as per guides of…
summu
  • 388
  • 2
  • 7
  • 25
0
votes
0 answers

Unable to update value with X-editable using AJAX

I'm using the bootstrap version of x-editable plugin to update the url value present in the table. When a user changes the values of the select box an ajax call is fired to retrieve the corresponding url for the store. Though I unbind the x-editable…
DhiwaTdG
  • 748
  • 1
  • 10
  • 26
0
votes
1 answer

How do I make a table with dynamic models editable-in-place in Rails?

This is the view of a table that I have: <% @campaign_events.each do |campaign_event| %> <% model_name = campaign_event.class.name.tableize.singularize %> <%= link_to campaign_event.title,…
Satchel
  • 16,414
  • 23
  • 106
  • 192