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

Editing an item in an array with vue js

I'm a newbie and I fetched some data from firebase and after being able to display, add and delete them successfully. I also want to edit them and update them to firebase again. So I bind the post I wish to edit to an input wth v-model, called an…
Mayana
  • 15
  • 5
0
votes
1 answer

Laravel Livewire Edit Role Spatie

Help, I work with laravel and spatie for roles and permissions. I want to edit my permissions with a checkbox list from a window Attached code: En el componente: public $role; public $rol_id, $name; public $chek = []; public…
0
votes
0 answers

django admin Postoffice queued mails are not editable

I am working on two separate Django apps. We are sending mail in Django. Due to some mistakes in the mail, sometimes it is required to edit the queued mail. But for some reason, one of the apps allows editing the queued mail, whereas the other app…
Abhishek
  • 1
  • 3
0
votes
0 answers

Can I change the max_allowed_packet setting in my mysql database inside phpmyadmin?

I'm using IIS 8. need to change the max_allowed_packet setting.
user2494737
  • 339
  • 1
  • 3
  • 7
0
votes
0 answers

Cannot do axios PUT request in Django REST+ React framework - Request failed with status code 400

When i try to update data in my Django SQLite database through reactJS it shows an error like this, but it works the last day fine even though I didn't change any code here now it's now working and it shows error that I had mentioned below PUT…
0
votes
0 answers

How to get information when some one change the value in edittext in android Studio

As I have the next button and webview which is attached with the webview. And My website refreshes with the value upgradation, But when someone types the value in the text field app web view doesn't reload. So please help me to reload my webview…
0
votes
2 answers

replacing certain substrings in lines of a text file

Similar questions to this question have been answered before. I want to replace particular substrings in lines of a text file. Based on the answers to similar questions, I came up with the following. with open('grammars.txt', 'r') as file3: #…
NBS
  • 3
  • 2
0
votes
2 answers

MacVim :e expands to Edit, and Edit! won't let me discard changes?

When I type :e, MacVim automatically expands this to :Edit. The problem with this is that I can't discard my current buffer with :Edit!, because I get an error message saying that "!" isn't allowed. I have two questions: Why does :edit! work and…
Eric R.
  • 933
  • 1
  • 9
  • 19
0
votes
0 answers

How to save and re edit Brush Strokes in Android for PhotoEditor

https://github.com/burhanrashid52/PhotoEditor I am using this library and overwrite most of its files and make them almost custom made. But I am unable to save brush and re-edit them.
0
votes
0 answers

Having issue with updating data in react-data-table-component , particularly when editing data

I want to display a set of questions, which when the user adds, are displayed in a react table. For this, I am using a react-datatable component. However, I am having issues with the data being re-rendered when edited. The data does re-render on…
0
votes
1 answer

How to Properly Detect User Edits Properly with GTK Text Buffers?

In an attempt to implement a text editor with simple highlighting functionalities using the text view widget in GTK, I find myself in need of pinning down -- or at least narrowing down -- the section of the text whose highlight needs to be adjusted,…
0
votes
1 answer

Edit data after FILTER in Google Docs

I have FILTER some range like "=FILTER(E1:M11;E1:M1=B1)" but I use FILTER for simple access to the cell-data, that must be edit, trying to wright something in to FILTER celLs given an a formula FILTER error...
0
votes
1 answer

PHP EDIT form. Previous dropdown data not populating

I have a simple order form with name (text), date (date), and then 2 sets of dropdowns. Each set contains a dropdown for flange and one for quantity. Basically the set repeats a couple times giving the user the ability to select a flange and then…
0
votes
0 answers

Map box locations that don’t have edit available

I’m trying to edit a few locations in Mapbox that don’t have the edit function available. These are mainly government tags. Some need to be moved to an accurate location, renamed, or deleted due to being redundant. How do I do this?
BrianKoch
  • 1
  • 1
0
votes
1 answer

Sending an email whenever Google Sheets specific range is edited

I have a simple app script that will send an email whenever my G-sheet is edited. This works fine but it will send an email for every edit in any cell. So, I need to define a specific range as B3:E7 in my Gsheet and the email should trigger only…