1
vote
1answer
30 views
jQuery Callback Scope
Lets say I have this code
$(document).ready(function()
{
$('.checkbox').change(function()
{
$('.hidden').slideUp('slow', function()
{
alert(checkbox val …
2
votes
4answers
120 views
Variable Scope in C#
My web service program is supposed to generate a random code and return it to the client program. Right now it returns "" as the code instead of the randomly generated code. What i …
2
votes
4answers
89 views
Python Scoping/Static Misunderstanding
I'm really stuck on why the following code block 1 result in output 1 instead of output 2?
Code block 1:
class FruitContainer:
def __init__(self,arr=[]):
self. …
1
vote
2answers
56 views
Closing The Sale With Difficult Customers [closed]
We have all had situations where a new potential customer (which means money coming in the door) is presenting his/her idea for a particular project with enthusiasm and passion. Th …
0
votes
2answers
62 views
not declared in this scope
I'm getting an error msg
DataReader.h:13: error: 'String' was not declared in this scope
DataReader.cpp:5: error: redefinition of 'std::vector<Data*, std::allocator<Data*> …
6
votes
5answers
166 views
Difference between ‘using’ and scoping?
What is the difference between the following two snippets of code:
using (Object o = new Object())
{
// Do something
}
and
{
Object o = new Object();
// Do somethin …
0
votes
2answers
67 views
Can I access the __dict__ object for the local scope?
Here is my situation...
I am trying to dynamically generate a bunch of stuff in my settings.py file on a django site.
I am setting up several sites, (via sites framework) and I w …
1
vote
2answers
25 views
Rails: Why is with_exclusive_scope protected? Any good practice on how to use it?
Given a model with *default_scope* to filter all outdated entries:
# == Schema Information
#
# id :integer(4) not null, primary key
# user_id :integer(4) …
0
votes
4answers
110 views
friendship scope c++
In section 11.5.1 of "The C++ Programming Language", Bjarne Stroustrup writes:
Like a member declaration, a friend declaration does not introduce a name into an enclosing scope …
0
votes
1answer
30 views
In JSP, is there a way to see all available variables in the specific scope like in PHP?
Or better yet how do I dump all the variables in a given scope in jsp?
(In php you can use a function call to see all the system, global and user-defined vars and functions availa …
0
votes
1answer
106 views
In what order do C++ objects passed as arguments to constructors of other objects go out of scope?
When I compile the following code with g++, the object of class A seems not to be destructed when the object of class C is constructed, and the B.ref_a reference is not broken when …
1
vote
3answers
156 views
Question about pointers and objects?
Just wondering, if I statically create an object that has a pointer as a data member and then the object goes out of scope, what happens to the pointer?
Chuma
0
votes
2answers
38 views
Help with calling an internal method of a jQuery plugin
I've written a plugin to highlight terms used to find a page. The source is also available.
My problem is, if you look at the first link's inline JavaScript, I've made a custom te …
2
votes
1answer
72 views
Complex object initialization scope issues with nested functions
OK, so I'm trying to use S4 classes to build a very complex object, with slots including a half-dozen matrices, a few lists, and probably a kitchen sink or two in there. The object …
1
vote
1answer
36 views
XSLT: Use result of expression inside a loop outside of that loop
I'm trying to transform certain parts of an XML file to another XML file. The source file:
<CUSTOMERS>
<CUSTOMER>
<CUSTOMER_NUMBER>12345678</CUSTOMER_NU …
