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
0 answers

WooCommerce: After Order is complete -> Do something and show message in Admin Orders Metabox...how?

I would like to "do something" (make a REST Request to a shipping company) after an order is completed (which happens on the edit order page by selecting a new status.). Then "do something" and present the result (Success or Error) on this edit…
Mister Woyng
  • 391
  • 2
  • 16
0
votes
0 answers

get cell content of WPF DataGrid after CellEditEnding and format numbers in DataGrid

Now I've searched for hours but didn't find an answer. I have a WPF app with a DataGrid and want to edit data directly within a DataGrid cell. I can read the Data before change but not after change and therefore I can't save the changes. And the…
Hein Kurz
  • 1
  • 1
0
votes
0 answers

phpMyAdmin v5.x.x - Wrong result window after edit/save a record when using multiple databases in config.inc.php

I upgraded my phpMyAdmin (pma) from version 4.8.1 to 5.2.0 and then downgraded to version 5.1.4 when I encountered the problem below, but 5.1.4 presents me with the same problem. I enter more than one database in the config.inc.php file and start…
Geert-Emo
  • 11
  • 5
0
votes
0 answers

How to edit location of text in a pdf using python

I am trying to edit the location of a text box in a pdf using Python. I found many ways to add text to a specific location but not a way to move existing text. For example: Is there a module that can do that? I am open to using other languages if…
Elias
  • 131
  • 2
  • 9
0
votes
1 answer

SlickGrid editable width in a column is smaller than column width

When we select a cell for editing, the maximum editable width is significantly less than the column width. This can leave long strings clipped and in the case of Slick.Editors.LongText, a popup that cannot be stretched horizontally to the full…
Geoff
  • 1
0
votes
1 answer

jqgrid - editing a newly added row

When a new record is added via a form add, and the DB has a sequential key, the value for the id of the new record is not correct in the row that is auto populated in the grid. Is there a way to make jquery get the actual new id of the grid from the…
brent
  • 31
  • 2
0
votes
0 answers

How to Edit Elements in a ListView

I would like to know how to edit my Elements like Name, adress etc In there i just have the name of the Restaurant displayed. So by Pressing the Name i would like to change the Elements listed on Side. final List entries = ['A',…
ajiin
  • 1
0
votes
1 answer

ItextSharp System.ObjectDisposedException: 'Cannot access a closed file.'

I found this sample to edit a pdf...but I receive an exception on the line psStamp.Close() error: System.ObjectDisposedException: 'Cannot access a closed file.' any idea? Public Sub ReplacePDFText(ByVal strSearch As String, ByVal scCase As…
0
votes
0 answers

How to replace a keyboard input to specific text outside terminal input?

For example when you type "abcd" anywhere on your device, it replaces it with "hello". probably this https://pynput.readthedocs.io/en/latest/keyboard.html could help but im not sure
0
votes
1 answer

How to make edit button with php, html only no mysql

I want to bring many $_REQUEST from Tag but only $_REQUEDT['editid'] works. how to solve it. echo "Edit"; //when I put $_REQUEST['editid'] in input it…
0
votes
0 answers

Filtering in R using climate data

I have two parts (a) : i solve it using map , (b): depend on (a) using filter. (a) plot all the cities in the data set using map (b) based on (a) plot citys dot is coloured by the variable(wsdi) predicted for year(2100) in scenario(…
Mary
  • 1
0
votes
0 answers

Need help creating an add/remove method for an indexable hashmap

I'm new at coding and can't seem to find a solution for my problem here. My teacher told me I should be able to make an easier method than my current one. I'm making a medicine list where the current user should be able to add a medicine to the…
0
votes
0 answers

How to save and edit 4/5 images by ckeditor in Laravel 8 correctly

I am saving some images which created & upload by CKEditor in my Laravel application and it getting saved properly. But when I want to edit the content, sometimes I am getting the content from DB and load it into CKEditor. But Most of the cases, the…
0
votes
0 answers

Flutter: cant change file in dependency

All im trying to do, is that in a file documents.dart, there is a function: Future> search( Map searchParameters) async { return await _apicall.get( '$_endPoint/search', queryParams:…
Ruder Buster
  • 219
  • 2
  • 14
0
votes
0 answers

How can my client edit the website I have built for them using webpack once the site is live?

I am in the process of building a website for a local company, the site is built using webpack, no frameworks, just vanilla js with import/export, css and html, is there a way, once the website is complete that the client can edit the site without…