The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Destroying/ unset a session variable? it changed for a while but then somehow the old value comes back

I have 3 kind of session stored for each user. first variable session is their username/login second is their cart list third is their region I have no problem overwriting cart list. I have no ...
0
votes
0answers
12 views

How to close a gtk window and open another (python)

How to close a gtk window and open another (python)? I tried something like this: gtk.main_quit() #or window.destroy() os.system("./script.py") #there is working code ...
0
votes
1answer
11 views

spring destroy bean manually instead of ctx.close()

is it possible to tell the container of spring to destroy a specific bean (prototype) in order to save up memory? I dont want to user ctx.close() in order to see this bean destroyed, but rather on ...
1
vote
0answers
46 views

JQuery Draggable DIV in Draggable LI move to new DIV or create new DIV

I'm new to js and jquery, and it's hard for me to code this task: I have a big DIV (.pins_dragger) element, it is fixed on layout. DIV.pins_dragger contains some other DIVS (.group) which are ...
0
votes
1answer
20 views

Rails Device and has_many association with promotions privilege

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user, for the users i used devise so: when I delete a promotion, I would like that the users ...
-1
votes
1answer
22 views

gameObject clone doesn't destroy

I play this code on the bullet, this clone bullet with the code is spawned by a hotkey but it doesn't destroy on a trigger plz could anybody find my error? var myTransform : Transform; var moveSpeed ...
-1
votes
0answers
50 views

Android webview destroy / re-initialized

I am working on small application which has couple of webviews. As such application is working fine but due to webviews the memory utilization is very high and the activity gets killed automatically ...
0
votes
0answers
22 views

Android: destroy thread

I have the following question. For example, we have custom class View, and in it the invalidate method is caused in a separate thread. public class myView extends View { //initialization ... Bitmap ...
1
vote
3answers
31 views

how do i delete all div with an id that beginns with xyz with dojo 1.8.3?

I want to delete all witch id beginns with xyz from the dom tree. I know that this can be done with dojo.query and dojo.destroy but i never used this combination before EDIT: i tried this but it ...
0
votes
1answer
19 views

how can i delete a div that i created with dojo?

i create a div with heading and UL inside with dojo.create. how can i totaly delete this div with heading and UL children so that i can create a div with this id again (with different content)? I ...
1
vote
1answer
40 views

KinteticJS - destroying nodes, infinite while loop because child doesn't get removed

KinerticJS version: 4.4.3 I have this problem when i want to remove a layer from stage. When I call Layer.destroy() kinetic runs upon an node which can't be removed. I don't get any error, but the ...
0
votes
2answers
32 views

Destroy link in Rails 3.2 shows the data instead of deleting it

I created a new scaffold rails generate scaffold scores score:integer route_id:integer and ran rake db:migrate. This works well, but when I go to the scores page to delete some data the delete link ...
0
votes
2answers
39 views

Rails - How To Destroy Users Created Under Devise?

For my application, I have user accounts that people can sign up. I use the devise gem for the setup. I also have a users page that lists out all the users registered to the site along with a ...
0
votes
3answers
48 views

Call function when class is deleted/garbage collected

I have a class that opens a sqlite database in its constructor. Is there a way to have it close the database when it is destroyed (whether that be due to the programmer destroying it or being ...
0
votes
1answer
22 views

ScrolledPanel not resizing after DestroyChildren

I got this code from a topic on Stackoverflow ScrolledPanel inside Panel not sizing. It works well for me. However I want to destroy all children of the scrolled_panel then recreate its new children. ...
2
votes
2answers
341 views

Tkinter example code for multiple windows, why won't buttons load correctly?

There must be something very obvious about why this code is wrong. I'm hoping somebody will be able to point it out. I am new at Python and even newer at Tkinter. Can you tell? ; ) The reason I am ...
0
votes
0answers
49 views

jquery tools scrollable destroy reinitialize

I use the jQuery tools library and more precisely the scrollable component to make a slider with the navigator function. // initialize scrollable together with the navigator plugin ...
0
votes
0answers
16 views

dijit tree destroy a node cause a error when click on treenode

Code: self.selectNode.destroyDescendants();//delete its children self.selectNode.destroy();// delete himself I have delete the selectNode, but cause a error: cannot call method 'setAttribute' ...
-2
votes
2answers
50 views

How to destroy an activity

In fact, I am new to Android App Development. In my application, I have a couple of activities and I have provided my users with an exit option menu to be able to leave the application. But there is a ...
-3
votes
3answers
39 views

is that possible to session_destroy single post variable?

is that possible to session_destroy single post variable? if it possible then how could i session_destroy single post variable except all $_SESSIONS which are included login $_SESSION ? For Example ...
1
vote
1answer
63 views

Backbone: clear all data from memory

I have a menu that upon click, creates a backbone view and binds controls. This happens every time I click on the menu. What I need to know is to how clear backbone objects from memory before the ...
0
votes
2answers
76 views

How to destroy static field when app exits?

I got a singleton class in my application, which is defined just somewhat like: public class SingletonTest { private SingletonTest() {} private static SingletonTest instance = new ...
0
votes
2answers
56 views

model.destroy() returning errors with sinatra backend

I'm having an issue getting my model.destroy method to work properly in backbone. This is my function deleteEvent: function(){ var self = this; var check = confirm("Are you sure you want to ...
0
votes
1answer
11 views

sending _destroy param not deleting association

I have an invoice which has many invoice lines. On Edit I use javascript to set a hidden _destroy field to a value of 1 when the delete button is clicked for an invoice line. When submitted it should ...
0
votes
1answer
45 views

Destroy a variable in ruby [duplicate]

I want to destroy a variable in ruby as if it had never existed. Here is an example: > defined? a => "nil" > a = 1 > defined? a => "local-variable" Now I need to set variable a to ...
0
votes
2answers
52 views

Remove nested attribute rails

I have a Post model that has_many photos The Post model has accepts_nested_attributes_for :photos In my Post edit form i show all the images that are currently associated with the post <% ...
0
votes
1answer
154 views

ExtJS 3.4 destroy elements but memory does not decrease

I have written a very simple code in order to create a tabpanel which contains a grid, the problem is when I try to detroy the elements and the handlers the memory doesn't decrease. I take heap ...
2
votes
2answers
79 views

C++: When and why is the destructor called?

I have a simple program to test whether my cross product of two 3D-Vectors works. #include <iostream> #include "math\Vec3.h" using namespace std; int main(int argc, char **argv) { Vec3 ...
0
votes
1answer
60 views

Backbone View events don't get destroyed

I've been having trouble with unbinding view events. I create a view i.e var myView = Backbone.View.extend({ events : { "click .item" : "nextPage", "scroll" : ...
1
vote
3answers
70 views

The difference between implementation of back and cancelbutton?

I m a newbie an trying to learn Java/Android-programming. I m doing an app for Android in Eclipse and created some buttons. I have a back and a cancel button. Example: I have a EditText there you ...
0
votes
0answers
11 views

Destroying a Dijit widget and it's descendants

I would like to clarify if I understand how destroyRecursive() works. From my understanding, if I have this template: <div data-dojo-type="a"> <div data-dojo-type="b"></b> ...
1
vote
1answer
200 views

Unity3D - Problems after reloading scene via Application.LoadLevel

I have a problem... There are four scenes in my game: An opening scene, a scene to select players, the actual game play scene, and the game over scene. I am running into problems when I load my ...
0
votes
1answer
66 views

dojo widget already registered

I am getting a widget is already registered error when running this code using the Dojo library. In the console I can see that there is a widget with this ID, but I cannot destroy it. function ...
0
votes
1answer
138 views

Submit button confirm for delete not working in rails 3

I'm still new to rails and trying to understand something when deleting multiple items. When I click submit, it works and I can delete multiple items, however, it deletes regardless of my ...
0
votes
1answer
65 views

backbone.js upon deleting model from db delete it from view

I have a problem - I've created a delete link for every model & it deleted from db... but I didn't manage to correctly set up a callback on delete event for it's correct visual display. class ...
2
votes
1answer
59 views

How to disable a collider when the trigger of another collider has been entered?

I am building a game where the player runs on a path. When the player triggers a collider, 2 enemy objects will spawn. What I want is when the first collider trigger has been entered, I want the ...
0
votes
2answers
65 views

Difference between hyperlink and address bar-browsing? (Issue concerning sessions)

I've got a problem concerning sessions. To make this short I have a login page which stores the POST-value of email in a session variable. I use this session to check whether the user has got the ...
2
votes
0answers
59 views

Destroy one plugin within another plugin

Bare with me on this one This is long but I desperately need some help on this. If you'd prefer to look at the working site where the problem exists see the Credentials section (I am animating the ...
0
votes
1answer
52 views

can't destroy view of related model

I've got a model which is being destroyed in a form view, and I need it to also remove the related element from the list view. in my form view I have delete: function(){ ...
0
votes
1answer
37 views

Remove and destroy object in a list

Extending a little on this question. Removing an object from a Python list is easy enough, but I'm going to have a "busy" list -- frequent removals and frequent additions -- so I want to guard ...
0
votes
0answers
58 views

Closing a thread in QML pyside

I have a bit of a problem. I'm creating a qml object in pyside and in that object I'm starting a thread. The problem is how to close the thead, I want to be able to close the thread when the code that ...
0
votes
1answer
97 views

refresh table data after successful delete

looking at how i can refresh the event list partial after a successful destroy has gone through _event_list.haml (partial for refresh) %table.twelve#events %thead %tr -#%th Game/Event ...
0
votes
0answers
21 views

Does Dojo free the used resources when an exception occurs in dijit's postcreate?

I write a custom templated dijit that throws an error in its buildRendering method depending on the parameters (if they are incomplete) passed to the constructor: var Control = declare("mydijits.", ...
0
votes
1answer
74 views

Android GLSurfaceView 2.x SDK preserve conext. Is destroyed when screen turns off

Im making a game. Not long ago i had a problem. I wanted to preserve GLContext of GLSurfaceView for old sdk versions. I've solved this problem by getting newest source of GlSurfaceView and putting it ...
0
votes
0answers
40 views

Sprite Callback to Only Play Once

I'm hoping someone out there can help me out. I have an animation that occurs when someone clicks on my "about" link. When the user clicks on the "about" navigation link, the site scrolls to that ...
-1
votes
2answers
50 views

Android: Activity LifeCycle

I'm learning about android programming from official website(http://developer.android.com). I understand most of life cycle, but I'm not sure when system is destroying activity. From what I ...
0
votes
1answer
86 views

print still writes old Session variable value after destroy

I use some Session variables. When i logout, function show_number should write 0 number but it doesnt. logout.php: <?php session_start(); session_destroy(); require_once('upper.php'); ...
3
votes
2answers
675 views

PHP - Session_Destroy upon pressing Back button

Here is my issue: I have a login page called login.php (containing no HTML code). When the user types in his credentials correctly he's redirected to a specific page; we'll say test.php for this ...
-1
votes
2answers
64 views

what's the correct way destroy different kinds of objects in objective c?

I have this object that contains references to other objects: 1)views 2)view controllers 3)dictionaries 4)arrays 5)custom objects. what's the best way to destroy it? do I need to create a destroy ...
0
votes
0answers
66 views

Perl/Tk Memory Leak When Using destroy() Command

I am having an issue with a large leak in Perl/Tk running on Unix. I am unable to post most of the code due to certain restrictions, but I have been able to identify what is causing the memory leak ...

1 2 3 4 5 6