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

Save modifications in Azure Workbook

I want to save a modified Azure Workbook. But after I click on Done editing I can not leave the page and move back to the resource group I get the message Your unsaved edits will be discarded. Do I miss to click on something? I can see the save…
betaros
  • 590
  • 7
  • 24
0
votes
2 answers

Saving file format after editing it with ConfigParser

i am using ConfigParser to write some modification in a configuration file, basically what i am doing is : retrieve my urls from an api write them in my config file but after the edit, i noticed that the file format has changed : Before the edit…
Sarahack
  • 1
  • 1
0
votes
1 answer

How to add multiple lines of code to multiple xml files using a Windows-based solution

I have hundreds of .xml files in a single directory, and I want to automatically add the same three lines of code to every file. In each file, after the first instance of this line: I want to add these lines: …
0
votes
1 answer

Is it possible to put two columns of checkboxes on PySimpleGUI to manipulate the values in a dataframe?

I have been trying to develop a simple program that allows me to make changes to a pandas dataframe by checking and unchecking boxes laid out on a PySimpleGUI. So far, I have managed to create a PySimpleGUI by following the code provided in this…
0
votes
1 answer

How do I add a vocabulary to a metadata in the item's metadata edit form in DSpace 6.x xmlui

I can add a vocabulary to a metadata in the submission form while creating an item. However, when I try to edit the item, I do not see the vocabulary to select the value from. I could not find any documentation relating to customizing the edit form…
0
votes
1 answer

Error with retrieving data to update Angular 13

i'm trying to edit data (a simple one just name ) and I cannot get the old value shown or read the id of my object which is a folder. so I have a component for the details of my folder and there's a button edit and once I click on it it shows me a…
Alex
  • 53
  • 7
0
votes
3 answers

CRUD with a modal for creation or edit process, does it need a route in React?

I have to make a CRUD views for a database table, but I don't see the need of assign a route i.e.: "/table/new" for the create process or "/table/edit" for the update (edit) process, so I ask if I can handle this process with modal windows and…
0
votes
0 answers

React Upsert - Create and Edit Record Same Form React

I would like to create and edit with the same React Form. The form is started by getting a token -- this token is used as a permission to both create and edit the form and will always be present on the landing page. The mode (create or edit) is…
karentut
  • 23
  • 7
0
votes
2 answers

how is the appscript code for editing data base but the data is the table?

First, I want to apologize if my english is not very good. I am a math teacher whom also use appscript to make teacher administration and student report. For teacher administration ,I make the student mark data base which can be save,find,search,…
0
votes
1 answer

Is it possible to edit/alter and save the code in a docker container or, failing that connect an editable app to a docker container, and run it

I need to make changes in a React/Node app, which because of problems/errors installing dependencies via npm or yarn, can only be acquired through docker. The docker version has the correct dependencies installed and works correctly. Please forgive…
0
votes
2 answers

How to remove strings from a cell in R while keeping other numeric values?

I'm trying to clean survey data in R and want to isolate numeric values from a longer…
PGJ
  • 13
  • 4
0
votes
3 answers

PDF editing with PHP

I have a PDF file with images, text and prices. I want to add a discount to the prices. Is it possible with PHP to find the prices and edit them? It would be easy to find the pattern with a regular expression, possibly /Price: [0-9,]*,-/. I also…
PDFedit
  • 59
  • 4
0
votes
2 answers

Swipe and delete row with two sections in table view and add deleted name to second section

please help, I have an array with names and when I select a cell I add the selected name to the second section of a table view and delete the name from that first section (all fine here) but if I don't want the name in second section for some…
0
votes
2 answers

TypeError: write() argument must be str, not tuple | writelines(l)

I wanna make a program who edit the save of a game by only editing one specific line (line 6) on a .ini file but there is an error (TypeError: write() argument must be str, not tuple save.writelines(lines) ) from tkinter import * from tkinter import…
Smoodie
  • 15
  • 6
0
votes
1 answer

Laravel Resource Not Updating Table

I have a blade project for CRUD with resource type controller in Laravel. it did using update method, but not updating anything to table, but it sending a value in dd. how do i fix it ? here the code 1. Blade @foreach ($produk as $product)
Ken Arya
  • 15
  • 6