Questions tagged [edit]

to modify (a computer file) by, for example, deleting, inserting, moving, or copying text.

Edit can be done as part of coding or changing configuration files.

The tool which is used for editing is called an Editor. Common editors include vi, emacs etc.

3207 questions
0
votes
2 answers

Text of a cell is highlighted after starting editing

I load the contents of a database (mdb) into a DataTable object and display them in a DataGrid so that I can edit them. As soon as I start editing a cell (pressing F2), the entire text is selected. Is there a way to prevent this marking? My…
Mario Allw
  • 13
  • 5
0
votes
2 answers

edit the text of a cell?

I have a UITableView, and want to let users edit the text of a cell. I want to popup a new UIView to let them enter some text in textfield, then dismiss the view and replace the cell's label text. Is it possible?
Vikas
  • 1
0
votes
1 answer

display, edit then get final changes in JSON data in angular

I have successfully display my JSON data into an accordion but my problem was that I can't find the way to get the final data after modification :( . this is the source code link…
0
votes
3 answers

Bash: How to edit a file onto/into itself - without using a secondary file

Note: I am particularly looking for a coding hack, not for an alternative solution. I am aware that awk, sed etc. can do this inline edit just fine. $ echo '1' > test $ cat test > test $ cat test $ Is there a way, to somehow make the second…
Roel Van de Paar
  • 2,111
  • 1
  • 24
  • 38
0
votes
1 answer

Remotely changing a chrome config file on a raspbian system via MacOS' ssh

Long time listener (and a massive fan, this platform has me gotten out of predicaments more times that I can count), first time writer: I am looking after a project where we run several Raspbian installs (Jesse Lite) that run chromium via an server…
FL K
  • 1
0
votes
1 answer

Edit button to edit a task in a To-Do List not functioning properly

I'm making your typical to-do list practice project, which is structured in a way most of you are probably familiar with. You have projects, and within each project the user adds tasks via a popup form. each task has a button to delete or edit the…
0
votes
1 answer

Swift Change EditButton()

is there a Way to change the look of the swift EditButton() like: EditButton(){ label: { Image(systemName: "plus.circle") .padding(.top) .font(.title) …
0
votes
0 answers

Edit API Dropdown

I populated the country list in my select option and when I click on country in user menu data save successfully and afterward while updating the user field the country name is not showing/or the old list from api loads this happens in laravel…
0
votes
1 answer

how can i edit a room reservation in laravel 8.the update on the controller does not work

controller(update) :as you can see in the update i'm trying to edit the room reservation(time and date),but onlly one part work the if or the else! public function update(Request $request, Roomreservation $roomreservation) { …
malk
  • 1
  • 1
0
votes
0 answers

Changing shopify dropdown menu to select a certain preview image

I was just wondering if there is any way to select a shopify preview image, so that when it is clicked, it selects the product from the dropdown menu. It can all be set individually, however I need it site wide. I've attached an image to show what…
Shea G
  • 1
  • 1
0
votes
2 answers

Edit contact (swiftUI)

well so the problem: when i open the EditViewScreen i need to get the title(-text) and body(-text) of that post. But I always get the title and body of the first cell. then I didn’t understand the meaning of this post either: 2022-06-03…
user15549045
0
votes
1 answer

Using subprocess to automate repeated executions of computationally intensive program

What I am trying to do I am using a program called MESA (https://docs.mesastar.org/en/latest/index.html) and the relevant steps for each run are: Edit a few lines with input parameters in a text file Execute the (bash) shell command “./mk” Execute…
0
votes
1 answer

Adding new columns to trac AccountManager plugin

I want to add new columns to the trac AccountManager plugin, I already edited the admin_user.html, but in python what do I have to edit, which files. I want to add two more data field. ex: group and telephone, How can I do that? UPDATED This is…
Mokus
  • 10,174
  • 18
  • 80
  • 122
0
votes
2 answers

Python CSV check fields with same id in column if value is null in another column

I want to check all fields with a specific ID and delete the rows if their values are null in another column. for example in the below table, I'm checking the Id (84) fields in patientId column, if all fields are null in pathology column, then i…
Reda Khalaf
  • 115
  • 2
  • 10
0
votes
1 answer

Alexa Skills - Editing existing live skill in VS Code

I started developing skills for Alexa some time ago. I managed to add one skill to the Alexa Skills Store. Now I would like to make some changes in my code, but I don't want these changes to be deployed in my skill right away. I want them to be…