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

Want to add two dynamic numbers in Laravel Php

I am a beginner with Laravel and PHP. I'd like to add two variables together (LBV + RBV), so that I display a total value: I have tried adding this snippet but no luck…
Lee Bossa
  • 1
  • 2
0
votes
1 answer

How to edit picture on Coudinary with Laravel

Any Idea how to edit pictures on Cloudinary using Laravel API? I did a lot of searches, but I didn't find any references. The add worked successfully, but I didn't find a solution for the edit. Add code $user->user_image = Cloudinary::upload( …
stack user
  • 37
  • 3
0
votes
1 answer

Display and EDIT opencv image using Tkinter

I have a simple GUI app to display image from chosen camera and transformed image. To do transformation I need to choose 4 points on image, so I would like to pick them by clicking. But in order to do that the picture must be an opencv image. So my…
Mike Pogo
  • 3
  • 5
0
votes
1 answer

how do i remove extra space from jqgird edit field value in edit form of jqgrid?

In jqGrid when we click on Edit button then jqGrid loads data in the Edit Form with extra spaces at the end of the field. for example when i see the username then its looks like as under: Username: farhan(space)(space)(space)(space)(space) How do i…
Siddiqui
  • 172
  • 1
  • 3
  • 16
0
votes
1 answer

IG - how to register changes to cell being edited - eg. to action shortcut key (Oracle Apex Interactive Grid)

We have common functionality across multiple pages: Cancel/Save/Back/Next (buttons). I added shortcut keys via app-level static JavaScript file: Alt-C/S/B/N (using common CSS on the buttons & jQuery binds). Problem: when using shortcut key whilst…
Clark
  • 21
  • 3
0
votes
1 answer

Edit a line in a file depending on user's input | Python

I'm working on a contact book application to improve my python skill, so far I've created functions to add new contact, view existing contact, but I'm stuck on a function to edit them, I don't know how to tackle this task (note that editing and…
user18355662
0
votes
1 answer

How do i edit/create a wave file for morse code in python?

im trying to make a python morse code translater, which takes in a string and should return a wav file containing morse code. now my problem is, how do i edit or create a wav file from text? i wanted to do something like this (not real code): def…
seven
  • 11
  • 1
0
votes
0 answers

Business Central - modify query of built-in report

I have been tasked with figuring out how to add a date to a remittance advise report in Business Central. Report number 400. There is a posting date in BC and we want to add it to the report. The built-in report doesn't have this field. We have so…
0
votes
1 answer

how to prefill input form in html and make it editable

I would like to make edit page in my react app but I am struggling how to display value in input form and make it editable. I am getting Recipe data via API and would like to display it to the user, make it editable and send it again with POST…
0
votes
2 answers

I have a production SSIS project and I need to change the destination server. Can I just edit the project or do I need to repackage it?

I have a production SSIS project in SQL Server 2016 that creates and exports a flat file to another server. The destination server has reached end-of-life and I need to change the destination path to the new server so we can decommission the old…
0
votes
1 answer

Edit Functionality React

import React, { useEffect, useState } from 'react' import '../assets/css/popup.css'; import { IoIosCloseCircle } from "react-icons/io"; import axios from 'axios'; import {useParams } from 'react-router-dom'; const Edit= ({closeSuspenduser}) => { …
cackle2
  • 1
  • 1
0
votes
1 answer

SwiftUI : How I can pass model's title to state string variable?

// // CreateReminderView.swift // SwiftUICaneldarProject // // Created by Chuljin Hwang on 2022/03/15. // import SwiftUI struct CreateReminderView: View { @Environment(\.presentationMode) var presentationMode @EnvironmentObject var vm :…
Kyungyun Lee
  • 115
  • 9
0
votes
1 answer

ASP.NET MVC 2 - Repopulating file inputs in an edit view

Is there a way to repopulate a form's file inputs in an Edit action's view? I'm using the same editor template for both my Create and Edit actions, and would like it so that when the form comes up during editing, the file input fields are…
Major Productions
  • 5,914
  • 13
  • 70
  • 149
0
votes
1 answer

Problem while trying to edit a Word document using a REST API in Node.js

I'm trying to edit a word document using a REST API in Node.js . Here's the code : // api initialization let editApi = groupdocs_editor_cloud.EditApi.fromKeys(clientId, clientSecret); let fileApi = groupdocs_editor_cloud.FileApi.fromKeys(clientId,…
0
votes
1 answer

How can I show data names field in vue-multiselect plugin in edit page?

I have a vue laravel SPA, and was working on the edit page of employees page. I already have create employees page and can display data on the vue-multiselect plugin (https://vue-multiselect.js.org/). Right now, I can display the employee id's from…
1 2 3
99
100