Scope is an enclosing context where values and expressions are associated. Use this tag for questions about different types of scope as well for questions where scope may be unclear.

learn more… | top users | synonyms

0
votes
0answers
2 views

Accessing Button Properties In Java

i have a button in my android app that i need to access after a certain amount of time has elapsed. i've created a button object for the button in the oncreate function and using a timer for the count ...
3
votes
1answer
33 views

Whats wrong with this javascript object-literal notation?

I'm trying to implement a .js file for my website considering the holy global namespace. This time I want to do it the right way so please help me with this maybe too easy question: What I have so ...
0
votes
1answer
13 views

javascript/jquery loaded in div can't use functions in initial page load

My code is built as follows: Initial page load. jquery library and Noty plugin gets loaded with script tag. I can successfully create a Noty notification(in a script tag). In the same page. I ...
3
votes
1answer
37 views

lua: module import regarding local scope

There are two script files with the following script //parent.lua function scope() local var = "abc" require "child" end //child.lua print(var) This way, child.lua will print a nil value ...
1
vote
1answer
21 views

Trying to add multiple D3 graphs

I'm trying to figure out how to include 2 or more graphs on my website. I am currently using the Area Graph and the Pie Graph. If I disable one of them, then the other works fine, but when I try to ...
1
vote
1answer
31 views

How to use one object every time on form submit?

I am working with sockets in PHP and Yii. I have a form with following fields: ip port message Action is called containing following socket programming code and packet is sent successfully when I ...
1
vote
3answers
76 views

Javascript Array Scope Issue

SOLVED - This example code worked, so I compared it to the non-working I had and found a discrepancy. In my code, the one that did not work, when declaring the color array I forgot to add a "var" ...
0
votes
3answers
22 views

Can't use value on the outside from inside a function with PHP [duplicate]

I have a function in location.php with this code: $isp = $ipInfo["isp"]; $country = $ipInfo["country"]; $state = $ipInfo["state"]; $town = $ipInfo["town"]; echo "ISP: " . $isp . ...
0
votes
1answer
25 views

Scopes doesn't work with STI

I want to do STI in Rails. class AbstractUser < ActiveRecord::Base self.table_name = 'users' belongs_to :organization, :inverse_of => :users # reporter user has_many :requests, ...
0
votes
1answer
13 views

Scope to fetch Associated data from Database Rails 3

Basically i wanted to use scope to fetch data using association. Association between user and posts. belongs_to :user # on posts model has_many :posts, :dependent => :destroy #on user model ...
0
votes
1answer
25 views

jQuery bind inside a for loop variable scope

I know this question has been asked many times but I haven't been able to resolve from what I found on Stack O. Here is my code for(var i=0; i<retrievedSearchesListLength; i++){ ...
0
votes
1answer
20 views

Wordpress - plug-in functions is available in templates but not available to other plug-ins

Case: Plugin A specifies a function that can be called in a WP template. But, calling this same function from within the code of Plugin B yields the error: Fatal error: Call to undefined ...
0
votes
2answers
26 views

Scope of PDO used in a function

I am using a structure like the one below - class foo{ . . . function bar($colID){ try{ $dbo = new PDO(get_db_DSN(), get_db_USR(), ...
3
votes
1answer
46 views

R 'object XX not found' error thrown inside function, but not in script

I am fairly new to R, so my apologies if this question is a bit silly. I am calling a function in an external package ('mmlcr', although I don't think that is directly relevant to my problem), and ...
0
votes
1answer
23 views

Access outer members in Javascript module

I have a module something = { value : "", anotherVal : "", method : function(){ this.anotherVal = "I think it is accessable here"; GLOBAL.action( func : ...
0
votes
1answer
70 views

Variable scope try, finally

This is my code. I have a try and finally statement. Within the try block i have a fixed statement which sets a pointer variable. try { fixed (char* chRef = p) { //code } } ...
0
votes
2answers
73 views

Understanding dependency injection in AngularJS controllers

Just learning dependency injection, and I think I'm starting to understand it. Please tell me if I'm on the right track... E.g.: Are these two equivalent? /* injection method */ function ...
0
votes
2answers
19 views

Rails scope for ApplicationController methods

When I call a method which lives inside ApplicationController from an inheriting controller like UsersController < ApplicationController, what will be the scope of that method? ...
-2
votes
1answer
37 views

How to access variable across files in C? [duplicate]

I have a file1.c and file2.c. If I define a variable in file1.c, and assign a value to it, how can I access this variable from file2.c? How should I declare the variable in file1.c and how to ...
0
votes
1answer
31 views

Locally declared object's internal memory intact outside scope?

The function f1 creates an instance of foo and sets foo.ptr[0] = 2. #include <iostream> using namespace std; class foo { public: int *ptr; inline foo(int a) { ...
0
votes
2answers
48 views

Passing variable to another view: best practice

I've got a form in a view, for example say: form.xhtml <h:form> <h:panelGrid columns="2"> <h:outputLabel value="Name" /> <h:inputText value="#{bean.name}" ...
0
votes
1answer
39 views

AngularJS Directive and Isolate Scope

I am trying to understand how to pass data through my directive so that I can bind it at the view level. I believe I understand the separation of controller scope vs. the directive isolate scope but I ...
1
vote
4answers
34 views

Explain this Uncaught TypeError: Property 'x' of object [object Object] is not a function

Can someone please explain why I get the results I do in each of the following situations? I wish to understand why the outcomes are what they are regarding how JavaScript works with scope, if this is ...
0
votes
1answer
18 views

how to maintain application scope in Tomcat clustering?

I have configured the load balancing and the Clustering with Tomcat 6 in multiple machines and my Java application is deployed in all machines. This works fine for me to maintain and to share the ...
0
votes
2answers
15 views

Spring Beans Scope - taking into account Controllers \ Services \ Repositories

I'm having 1 @Controller bean in my project and 2 @Service beans that this controller calls. the services using 2 different @Repository beans for persisting. My question is : my server is about to ...
0
votes
0answers
10 views

AST parsing, detect current scope

When parsing AST with visitor, how could visitor detect when scope changes? For example, when we are in Class node, we create Class scope, but how to detect when we leaving a class node, to close the ...
1
vote
1answer
35 views

how to pass a variable to lm within a function in R

Here is a (non)working example of how I would like to do things. The restriction is that all this has to happen within a function and that K should not be appended to x. What's the right way to do ...
1
vote
1answer
45 views

C++ Outputting strings from a .txt file in to a dynamic array outside of a member methods local scope

To start with, is what I'm asking possible? I currently have a program with one member method (Read) that reads in strings from a .txt file locally in one member method and just outputs the same data ...
0
votes
0answers
14 views

Token generated from Facebook application has no scope

I am working on a native Android App for Facebook. I so created an account on Facebook developers in order to create a new app. In the field "User and friend permission", I choose user_likes and ...
5
votes
2answers
131 views

C++ pointer to objects which go out of scope when function returns - why does this work?

Both these calls to get_string and get_string2 return objects which go out of scope when the function returns. Shouldn't the returned object be an address in memory which goes out of scope after the ...
1
vote
1answer
59 views

Scope of string inside lambda

I have an interesting scenario in which I've built a validation checking system that maintains a series of requirements in the form List<Tuple<Func<bool>, string>> where the Func ...
0
votes
1answer
16 views

scopes with lambda and arguments in Rails 4 style?

I'm wondering how the following is done in Rails 4 or if I just use the Rails 3 approach for using a lambda that can pass an argument the same way with 4 as I do with 3. I'm pretty new to Rails 3 ...
0
votes
1answer
15 views

Is it possible to define a default_scope in Mongoose?

In Rails there is default_scope (http://apidock.com/rails/ActiveRecord/Scoping/Default/ClassMethods/default_scope) which allows specifying a default set of rules that are applied, when querying models ...
1
vote
1answer
52 views

How to get environment of a variable in R

I was wondering if there is anyway to get the environment of a declared variable. Say I already have declared a variable to an environment and want to use that variable's environment to declare a few ...
3
votes
4answers
40 views

Scope of variables in JavaScript, function does not return correct value

Good day, I've stumbled upon a trouble with scopes of variables in JS. I have a function like this var address = ...; //it may be or may not be defined earlier. // It is not the only variable passed ...
-1
votes
2answers
51 views

How to use a variable from a method (inside Try-Catch) in another class?

So I'm trying to create a basic RPG userID selection menu using JFrames; I opted to display the ID options using radio buttons. Once the user selects and ID I burp it back using a JOptionPane. All ...
0
votes
1answer
17 views

spring web flow enable scopes

Spring web flow provides additional bean scopes like flow, conversation, flash etc. I can define flow scope beans in flow.xml using var or i can set values to new scoped variables. How i can define it ...
4
votes
1answer
69 views

Automatic variable has static lifespan if not initialized?

I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
0
votes
2answers
31 views

Object scope. Why does this give a null object

initialize: function () { var store = {}; var item = {}; var me = this; Ext.Ajax.request({ url: "some_valid_url", success: function ...
0
votes
0answers
11 views

size of the tree, Not in scope

Here is my code: data Binary_Tree a = Null |Node {element :: a, left_tree, right_tree :: Binary_Tree a} deriving (Show, Eq) --depth_of_tree dot :: Integral b => ...
-1
votes
2answers
57 views

C++ variable scope for class friends

I have: class Game... class D3DGraphics... I have a variable of type D3DGraphics called gfx declared in my Game class. I make another few classes: class Font... class Viewport... I make them ...
1
vote
2answers
52 views

Two pages for the same resource - ActiveAdmin

Currently I have User model, which is registered in user.rb as a new resource for ActiveAdmin. Generated page displays all users with scopes (all/journalists/startup_employees). Now I want to create ...
0
votes
1answer
30 views

ActiveRecord: class methods without scoping

I need to create a class method of my ActiveRecord. But that method is not meant to be a scope, so I'd like to prevent misusage of it like a scope. Is it possible to do?
-2
votes
3answers
41 views

Access a variable from inside a do while loop

How can I access a variable from inside a do while loop in Java? This is the exercice i'm currenty working on ... We ask the user write a value until the value entered is not is between 0 and 10 ...
1
vote
4answers
54 views

stopping a recursive function call onclick button1 from a different function onclick button2

I'm trying to determine how to stop a recursive function call that came from a click to 'start_button' by calling a different function when 'stop_button' is clicked. User clicks 'start_button' and ...
0
votes
1answer
37 views

Demo program error: '' was not declared in this scope

I am new to Qt and have started with the demo program found here. I have renamed the class AddressBook to Dialog. It compiles and executes just fine. I want to add my own code to the example, so I ...
0
votes
0answers
15 views

Changing datamembers within a limited scope

I am looking for a way to change the value of some datamembers of a C++ class, but in a temporary fashion, i.e. limited to a given scope {} within my main program. Say I just have a trivial setter: ...
-2
votes
2answers
38 views

write parent function var in javascript

How do you change the value of a variable in the parent function in javascript For example: function parent() { var changeme = 0; function child() { changeme = 1; } } ...
2
votes
2answers
42 views

Issue with resolving components - scope

private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 450, 300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().setLayout(null); ...
4
votes
1answer
88 views

What's the logic behind this python global scoping magic?

I was messing around with the scoping in python and found something that I think is rather strange: g = 5 def foo(a): if a: global g g = 10 else: g = 20 ...

1 2 3 4 5 73