The destroy tag has no wiki summary.
7
votes
2answers
60 views
How to find out who ran the TFS Destroy Command?
I have reason to believe that the TFS Destroy command was run on my server. Does TFS provide a way to find out who and when it was done?
7
votes
4answers
370 views
What is the correct way to dynamically create/release runtime forms?
I always try to create my Applications with memory usage in mind, if you dont need it then don't create it is the way I look at it.
Anyway, take the following as an example:
Form2:= ...
6
votes
2answers
612 views
jQuery Flowplayer Tools -> Tooltip destroy method?
I am using the jQuery Flowplayer Tools framework (specifically the tooltips plugin) in a table, in addition to jQuery ui calendar.
Each row of the table has the ability to insert a row above and ...
5
votes
7answers
537 views
Ever need to destroy singleton intance?
By using singleton, only one instance of it can be created. Do we ever need to destroy that instance?
I have a singleton DBManager, which manages a JDBC connection and query operations. By calling ...
5
votes
2answers
4k views
Why super.onDestroy() in java - Android goes on top in destructors?
I am new in java development! May someone tell me... according to witch logic super.onDestroy(); in distractors goes on top? for example:
protected void onDestroy() {
super.onDestroy();
...
5
votes
2answers
283 views
Why is object destructor not called when script terminates?
I have a test script like this:
package Test;
sub new { bless {} }
sub DESTROY { print "in DESTROY\n" }
package main;
my $t = new Test;
sleep 10;
The destructor is called after sleep returns (and ...
4
votes
1answer
681 views
Rails session gets destroy whenever model destroy link is clicked
If I click destroy on any record for my 3 models models, the user gets logged out. I'm using Devise and Ominauth.
#This logs out a user
def destroy
@rating = Rating.find(params[:id])
...
4
votes
2answers
214 views
Detecting global destruction in Perl
I'd like to detect if my object is being DESTROY'd as part of global destruction, and print out a warning (as that'd clearly be an error and lead to data loss). The obvious way to do that would seem ...
4
votes
7answers
258 views
Are reference attributes destroyed when class is destroyed in C++?
Suppose I have a C++ class with an attribute that is a reference:
class ClassB {
ClassA &ref;
public:
ClassB(ClassA &_ref);
}
Of course, the constructor is defined this way:
...
3
votes
1answer
138 views
Ruby on Rails — undo mark_for_destruction
In my rails app the child records get marked_for_destruction I want to undo that action and unmark them. Is there a way?
Thanks in advance.
3
votes
1answer
264 views
default_scope breaks (update|delete|destroy)_all in some cases
I believe this is a bug in Rails 3. I am hoping someone here can steer me in the correct direction. The code posted below, is purely for illustration of this problem. Hopefully this does not confuse ...
3
votes
3answers
3k views
Delete / Destroy is not working in rails 3 with Jquery
My delete/destroy is not working for rails 3.
Not for any scaffold or even for new projects.
<%= link_to 'Destroy', card, :confirm => 'Are you sure?', :method => :delete %>
From ...
3
votes
3answers
1k views
swfupload destroy session? php
hy, i need a little help here:
i use SWFupload to upload images!
in the upload function i make a folder call $_SESSION['folder'] and all the files i upload are in 1 array call $_SESSION['files'] ...
2
votes
5answers
65 views
Session Handling in PHP 5
i've a problem with php session handling that i can't explain to myself.
I'm studying php from scratch, and i can't figure out how to mantain a session live:
This is my index page, where a user can ...
2
votes
3answers
58 views
Best way to destroy PHP object?
As far as I know (which is very little) , there are two ways, given:
$var = new object()
Then:
// Method 1: Set to null
$var = null;
// Method 2: Unset
unset($var);
Other better method? Am I ...
2
votes
2answers
61 views
Improperly routed Rails Destroy method on nested resource
I have a List object, with nested Tasks. I have created a page that displays individual tasks, and also a page that allows a user to edit individual tasks. I now want to add the ability to delete a ...
2
votes
2answers
277 views
Destroying a Postgres DB on Heroku for DJANGO
The Django support just got launched at Heroku, so I've given it a shot. Only problem is that I want to destroy the database but I'm not sure what the command would be. Does anyone know how to do ...
2
votes
1answer
61 views
Rails: On-the-fly Destroy cascade?
I know that destroy cascade will work if proper relationships are setup in the models, but I want to know whether there is a way to destroy cascade on-the-fly, without needing to have everything ...
2
votes
4answers
88 views
Destroy session, but keep one variable set
I am using session variables to control logins and page access. I use variables to control different user groups that a user belongs to, so I have quite a few session variables.
I also use a session ...
2
votes
1answer
142 views
Threads are destroyed?
I create a pool of threads with an Executors.newFixedThreadPool, but after a time I noticed that some of them stoped to answer (call this method below).
They was destroyed? I doing synchonization and ...
2
votes
0answers
245 views
Node.JS/V8: Is it possible to destroy a context?
There is a memory leak in Node.JS or in V8 that removes my ability to re-use a process to jqueryify many HTML pages.
The bug is here: https://github.com/joyent/node/issues/1007
Bug meanwhile, is it ...
2
votes
3answers
459 views
php newbie question: destroy class object?
i wrote a little class for storing global variables/functions.
my question is - is it necessary to destroy the class object after the script has finished?
or will php destroy that object itself?
...
2
votes
1answer
402 views
Records in join table destroyed automatically in HABTM association?
Let's say I have an association where User has and belongs to many Roles. When I destroy the user, is the record in the join table automatically removed as well? Or do I need to use :dependent => ...
2
votes
2answers
673 views
ActiveRecord 'destroy' method returns a boolean value in Ruby on Rails?
I am using Ruby on Rails 3 and I would like to know what type of return will have the following code:
@user.destroy
I need that to handle cases on success and fault in someway like this:
if ...
2
votes
2answers
266 views
Is it necessary to destroy a tooltip?
In my application I am handling the WM_HELP message and then creating a tooltip for a control using this method:
Taken from: http://msdn.microsoft.com/en-us/library/bb760252(v=vs.85).aspx
HWND ...
2
votes
3answers
701 views
Correct thread destroy
Hello
At my form I create TFrame at runtime. At this frame I create background thread with executes commands in endless loop. But when I destroy this frame I should destroy this thread.
I try
...
2
votes
1answer
1k views
How to destroy the php session with one button
I'd like to make a simple form button which completely destroys the session when you click on it. I am just starting to use PHP for the first time, and do not see how I implement it into my HTML code.
...
2
votes
1answer
517 views
What happens to thread as onDestroy is called when device is rotated
I would like to know as to what will happen to the thread which has been created by an activity and the device is rotated. I have observed that the onDestroy method is called when this happens. Will ...
2
votes
2answers
137 views
Does JavaScript have an equivalent to Perl's DESTROY method?
Is there any method that is called or event that is dispatched right before an Element is cleaned up by the JavaScript garbage collector?
In Perl I would write:
package MyObj;
sub new {bless {}}
...
1
vote
3answers
29 views
Rails :dependent => destroy, want to call another action instead of destroy
I have a has_many :through model that works perfectly.
has_many :varietals
has_many :grapes, :through => :varietals, :dependent => :destroy
I would like to call another action instead of ...
1
vote
1answer
30 views
Rails before_destroy error message accessible from parent
Using Rails 3, I have an account model which has_many addresses. In the address model I have a before_destroy callback method defined which prevents the destroy and adds an error to the address object ...
1
vote
2answers
214 views
Location of jquery.js and jquery-ujs.js and why destroy links do not work
I'm a bit confused. In a lot of questions on stackoverflow I read you need jquery-ujs to manage your javascript code, especially if you want these destroy links do work. If I go on this page to follow ...
1
vote
0answers
43 views
After calling “destroy” in jQuery, cannot rebuild
I have a piece of code I am working with and there is a plugin being used to style the select boxes so it's hell or already.
I am destroying the element so that when I chose something from ...
1
vote
0answers
59 views
What is the correct way to fully remove a control from a parent control/form?
I have a UI element in my application where a Panel is used to host one of several potential custom UserControls. The Panel itself is hosted in a standardised UserControl that I am using something ...
1
vote
3answers
268 views
Android: Unable to destroy activity
I am using the following code to removes childs on every viewgroup:
protected void onDestroy() {
super.onDestroy();
this.liberarMemoria();
}
public void liberarMemoria(){
...
1
vote
1answer
189 views
SurfaceView with camera preview is not destroyed
I have a Tab Activity with 2 tabs (activities). Each tab has a 3d Open GL scene drawn on top of a SurfaceView with camera preview.
Yet, depending on device orientation, tabs are being switched.
The ...
1
vote
1answer
49 views
Destroy DialogActivity by clicking besides it
I have an activity in my project, which is shown as a DialogActivity by this entry in the manifest:
<activity android:name=".ActivityDialog" android:theme="@android:style/Theme.Dialog"> ...
1
vote
2answers
87 views
Use before_destroy to delete another model's entry?
So I have a model, let's call it Notes. On the notes, you can but several posts. So the notes model has the line:
has_many :posts
And the posts model has the line
belongs_to :note
Now, when a ...
1
vote
2answers
47 views
Why doesn't this simple destroy method expectation work?
After doing some research here, and using Google I'm still confused as to why this simple spec isn't working:
describe CartsController do
#stuff omitted...
describe "carts#destroy" do
it ...
1
vote
2answers
39 views
Protect deletion of category, when something is associated with it
Category has many products, videos, music etc.
When category in question will be destroyed, all stuff, associated with it, will be broken.
Sure, I can manually implement #before_destroy method of ...
1
vote
1answer
71 views
Deleted migration.rb file? Potential bug in rails?
I am not sure if this is a bug or if this actually removed a migration.rb file. I used generate to create the following migration:
$ rails generate migration add_delta_to_submissions
invoke ...
1
vote
0answers
264 views
Rails 3: HABTM, destroy and before_destroy callback
If I have read the rails guides correctly, a before_destroy callback that returns false will stop the object being destroyed by issuing a rollback command.
However, while the object itself is not ...
1
vote
1answer
202 views
PHP Session Destroy
How do I destroy a session in php?
the thing is when the user clicks the logout button the session will end and he will be redirected to the index.php here's my code
Customer.php
<?php
...
1
vote
2answers
75 views
Spring init and destroy methods
package com.idol;
public class Auditorium {
Auditorium(){
}
public void turnOnLights() {
System.out.println("Lights are turned on");
}
public void turnOffLights(){
...
1
vote
1answer
70 views
Deleting just a join table record in Ruby on Rails
I have the following simple models:
class Event < ActiveRecord::Base
has_many :participations
has_many :users, :through => :participations
end
class Participation < ActiveRecord::Base
...
1
vote
1answer
169 views
Rails 3 data errors with link_to
I've been searching for a while for a solution, but haven't been able to find out what is wrong with my code.
I'm trying to delete an item using an ajax call on an event page, but it doesn't seem to ...
1
vote
1answer
181 views
No route matches {:action =>“destroy”
I'm getting the following error when trying to destroy a user's vote on a "contribution":
No route matches {:action=>"destroy", :controller=>"contribution_votes",
...
1
vote
2answers
145 views
PHP: How to destroy / unset all classes in application
Question is, does it make sense, and how to, free memory and destroy / unset objects? Does exit() kill the app and nothing else has to be done?
1
vote
1answer
204 views
Rails - AciveRecord use :dependent => :destroy on condition
What will be the best/DRY way to destroy all the dependents of an object based on a condition. ?
Ex:
class Worker < ActiveRecord::Base
has_many :jobs , :dependent => :destroy
has_many ...
1
vote
1answer
573 views
Testing destroy methods with capybara
I've written some tests using Capybara, but I'm not using selenium and neither any other JS drivers. But my doubt is if I can test a destroy method this way? Since I need to confirm a JS confirmation ...