Questions tagged [rowdeleting]

91 questions
0
votes
1 answer

Angularjs: Deleting row from ng-repeat table with confirmation box

I want to delete a row from ng-repeat table by clicking a delete button. The button works correctly but i want to show a confirmation box after clicking delete button if the user selects yes then only it should delete that particular row otherwise…
0
votes
3 answers

Performance issue : Removing A LOT of cells from a UITableView

I have a table view with more than 1000 cells (I display about 10 on the screen). Following a "filter" action by the user I want to remove about 80% of them, then after a second filter another 80%. When working with 100 cells it's roughly…
0
votes
1 answer

Delete Row if Columns K:R all contain blanks VBA Excel

Bit of a background: I'm trying to copy a table from "Create Form" N2:AE14 Set r = Sheets("Create Form").Range("COPYTABLEB") Selection.Copy Set dest = Sheets("Sample Data").Range("B1").End(xlDown).Offset(1, 0) r.Copy dest.PasteSpecial…
0
votes
0 answers

How to delete rows dynamic in SQLite tables

I wrote a python function for updating two tables of SQLite.db file with measurements from a Sensor. I store data every 15min on my Raspberry Pi. Because of the limited hard disk space of the SD-Card (16GB), i need to delete the data dynamic. It is…
Niclas Resse
  • 31
  • 1
  • 9
0
votes
3 answers

VBA - Delete duplicates in a FILTERED column

I'm looking for a quick way to delete duplicates in a specific column but only in a filtered range. So, basically I would like it only delete visible duplicate values, but leave the rest that is "unfiltered and hidden". I have this piece of code and…
user6996470
0
votes
1 answer

I am not able to generate alert in angular js when a button is pressed

I have a Cancel button which gets activated when an item is selected from a table. I want to display an alert when Cancel is pressed which asks if the user is confirm he wants to cancel. If he is sure then the row gets deleted, else the alert…
Tedsville
  • 21
  • 1
  • 5
0
votes
5 answers

Delete All Record of a User From Database

I am working on a small project in university.I am getting a problem that i want to delete all the record from database of a specific User. I am using a query to get all the record from database. SELECT…
0
votes
1 answer

Deleting rows of data for multiple variables

I have over 500 files that I cleaned up using a pandas data frame, and read in later as a matrix. I now want to delete missing rows of data from multiple variables for the entirety of my files. Each variable is pretty lengthy for its shape, for…
0
votes
1 answer

MySQL deleting from table if item from the being-deleted row meets a criteria

I am creating a site with admins that are allowed to delete a user if the users accesslevel is less than 8. I tried this as well as a few other solutions, but it doesn't work. How should I be going about this? @id is defined previously in the same…
Sub 6 Resources
  • 1,674
  • 15
  • 31
0
votes
1 answer

Delete selected row from DataGridView

I need to delete the selected row from my DataGridView. Currently I managed to execute the select command but i do not know with what code to continue to remove/delete the selected row. The code that i use is : (refTofrPlanMain.dGVPlan.DataSource…
Stefan Siman
  • 49
  • 2
  • 10
0
votes
2 answers

C# Deleting a Row from AccessDatabase / Converting String to Int

I'm a novice programmer trying to delete a row from an AccessDatabase using a "DELETE FROM " query. It requires converting a string to an Int which is where the problem occurs Here's the Code I'm running : private void BtnDelete_Click(object sender,…
Josh
  • 115
  • 1
  • 3
  • 17
0
votes
1 answer

domConstruct place button not firing

I am creating table rows dynamically using dojo domConstruct. One of the column contains a button for delete function.But i dont know how to connect onclick event for the delete button. Below is my js code for creating the…
sanvica
  • 99
  • 2
  • 12
0
votes
2 answers

How to clear all data EXCEPT columns X, Y & Z?

I would like to clear ALL (not delete) the content in a worksheet EXCEPT columns X, Y & Z (for example)? These columns are stored in a variable.
STAD
  • 11
  • 1
  • 3
0
votes
0 answers

TableView: the last line becomes unselectable after row deletion -Is this a bug

for more information see this link Sometimes TableView cannot select last row after row deletion. the problem only appears when the TableView must contain exactly 6 lines. if I delete the fourth or fifth line, the last line (necessarily fifth)…
Kachna
  • 2,921
  • 2
  • 20
  • 34
0
votes
1 answer

Delete row from datatable

I want to delete rows from my dataset. Below is the code... When the checkbox is selected a value is getting stored as a hiddenfield value The code is not firing. The values are not getting added to the "rowstodelete". protected void…
Aditya
  • 73
  • 9