4
votes
2answers
46 views

Can I get to the object of a property if I have a reference to the property only?

I have the reference to a property of an object in a variable,is it possible to access the object to which this property belongs?
0
votes
2answers
27 views

JavaScript property & field reflection

I came across this little snippet of code for property reflection in JavaScript: function GetProperties(obj) { var result = []; for (var prop in obj) { if (typeof obj[prop] !== ...
1
vote
1answer
28 views

Referencing an object property with numeric value in JavaScript

I've run into a - what seems - somewhat strange problem. Let's say I have a JavaScript object like this one: var Object = { Property1: 0, Property2: 1, TxtProperty: "Sample text", ...
2
votes
2answers
23 views

accessing a javascript's object property without knowing that property name

Situation I have a json object being returned. Below is an example of one. The who in this particular example can change to whatever property name is required. So for example next time this will be ...
0
votes
1answer
33 views

Some questions about OOP

I have an object called clock. I have a method of said object called time. If I used this.propertyName inside my time method, this will give the property to my clock object, right? But what if there ...
0
votes
2answers
46 views

javascript array member of object

I would like to create in javascript an object that contains an array of other objects. i.e. var xobj = { d: 0, e: 0, f: 0 }; var topObj = { x: [], a: 0, b: 0, c: 0 }; ...
-4
votes
3answers
75 views

JavaScript object properties - connect them together?

I have 3 objects in an array. myArray = [ {name: "iPhone", link: "www.apple.com"}, {name: "Nokia", link: "www.nokia.com"}, {name: "Google", link: "www.Google.com"} ] How to make a loop and put ...
0
votes
2answers
39 views

How to make an events base class in javascript?

I am trying to make an events class for a little canvas library that I am making! This is what I have so far, function Events() { }; Events.prototype.addEvents = function() { this.mousemove = ...
0
votes
1answer
36 views

Object doesn't support property or method 'dataTable' error

On my previous question, I have added the JQuery library and have fixed my style errors, however, I am now getting a new error: "Object doesn't support property or method 'dataTable'. Here is my ...
0
votes
1answer
36 views

Python3 @Property.setter and Object has no attribute

I am learning about objects with Python with "the Quick Python Book" second edition. I am using Python 3 I am trying to learn about the @property along with the setters for the property. From page ...
0
votes
2answers
68 views

In Javascript, how do you access key value data from an object in a mixed array?

my name's Mike and my question is two-fold: How can I access the objects in my array so that they properly appear in my question prompt, and How can I access the properties of the randomely ...
1
vote
2answers
47 views

How to get ALL properties of an object without using for-in loop in JavaScript (Firefox)?

I was trying to get/count properties of an object and found this QaA, and this cross-browser solution. However, Object.keys does not always return the same as with for-in loop. var obj = {foo: ...
0
votes
1answer
46 views

Randomly selecting an object property

I guess a step back is in order. My original question is at the bottom of this post for reference. I am writing a word guessing game and wanted a way to: 1. Given a word length of 2 - 10 characters, ...
1
vote
4answers
66 views

Trying to add multiple properties to Javascript object using a loop

I hope the day finds you well. So I have an object with no properties. I'm trying to add multiple properties to this object using a loop. Each property added to the loop will appear in the object ...
0
votes
5answers
117 views

Instantiate Object Java

Let's say I have 10 objects. Now, I create them and the only way I store them is a String array of some value in that object. I don't store the actual objects themselves anywhere. Is there any way I ...
0
votes
0answers
55 views

Php calling of property like this, bad practice?

I'm wondering if doing this is considered bad practice? class myClass { public static $someVars; public static function setVars() { self::$someVars = new stdClass; ...
3
votes
2answers
30 views

Strange behavior of Reflection::getProperties() with numeric keys

$obj = (object)array('a', 'b', 'c'); $refl = new \ReflectionObject($obj); $props = $refl->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED); foreach($props as ...
1
vote
2answers
35 views

I cannot get object properties as function

Halo guys.. I'm quite new here in this site, so any help would be appreciated. please let me know if my question already exists in another topic. i have the following problem.. i create an object ...
1
vote
3answers
39 views

Getting 0 (zero) from properly defined PHP object property

I have a PHP object stored in var $category which has the following properties (dumped with print_r()): jstandCategory Object ( [category_id] => 1 [category_image] => ...
1
vote
4answers
76 views

Remove array element based on object property

I have an array of objects like so: var myArray = [ {field: 'id', operator: 'eq', value: id}, {field: 'cStatus', operator: 'eq', value: cStatus}, {field: 'money', operator: 'eq', value: ...
3
votes
4answers
35 views

How to Monitor the Setting of new Properties on Javascript Objects

How could I get a callback whenever new properties are set on a Javascript Object..? I.e. I don't know which properties are going to be set, but want a callback for any properties that are set. What ...
0
votes
3answers
70 views

How do I refer to properties of object array inside jagged array in c#?

this question is probably going to be a bit confusing, as I'm just starting c# and object-oriented coding in general, but I'll do my best to explain things clearly! For context, I'm trying to make a ...
0
votes
1answer
41 views

Extracting Objects Based on Property Value in CodeIgniter/PHP

I'm trying to retrieve all delegates from a $delegates object that have an 'event_id' that matches the current event id, which is stored in the variable $current_event_id. That said, I've created a ...
0
votes
4answers
58 views

Why can this class and its member be directly referenced?

I came across this code: pc = new PendingCommands(pause, wait); PendingCommands.ProcessCommands = true; I wonder two things: 1) Did the coder mean to write: pc.ProcessCommands = true? 2) ...
4
votes
2answers
56 views

php serializing objects whose properties evolve (object evolution)

This is my first question on SO, though I've searched substantially; I apologize if this has already been touched on. The question/issue has to do with PHP's serialize() functionality. I am using ...
1
vote
1answer
71 views

Access JavaScript object property using Java

Here is the JS code: var build_info = new Object; build_info.BUILD_DISPLAY_VERSION = "Build 201302232300"; Here is the Java code: ScriptEngineManager mgr = new ScriptEngineManager(); ...
4
votes
2answers
75 views

Difference in instancing object - C# basic [duplicate]

I am beginner in object oriented programming and I have one simple question. What is difference between: public class Calculation { private _externalObject = new ExternalClass(); public ...
0
votes
1answer
92 views

getting object property value from json response in c#

I am trying to access the "success" property to get its value. Right now, it is hitting catch saying "Object reference not set to an instance of an object. " How do I get the string value? { ...
0
votes
1answer
63 views

Accessing properties of objects in array to display in UITableViewCell

I am using an XML parser to get information from a blog to create a feed reader app. I created an object with properties that are the data for each blog entry (title, published, author...). I'm ...
0
votes
1answer
37 views

How do I access properties of an object when inside another custom object in Xcode / Obj C?

As I newbie I sort of understand how to create and access properties for an object with dot notation.. eg I have an object golfCourse with a property courseName so golfCourse.courseName=@"My Course" ...
0
votes
1answer
41 views

Constants for each instance of a matlab class

I want to save data to a constant field (different for each instance). Think of that like a fiel with the creation date of the object. I can not find out, how to do that. Reading Property Attributes ...
-6
votes
5answers
85 views

How do I manipulate an object's properties after it has been added to a List in C#

Say I have a class like this: class public Person { public string firstName; public string lastName; public string address; public string city; public string state; public ...
0
votes
1answer
60 views

Property Change Logging

Currently on my application I am doing logging on any value the user changes, which works fine. I have a class object MyObject and Logs object and on each property I am raising an event as such: ...
2
votes
1answer
331 views

Get length of irregular object in a BW or RGB picture and draw it into picture for control

I face a well known problem which I am not able to solve. I have the picture of a root (http://cl.ly/image/2W3C0a3X0a3Y). From this picture, I would like to know the length of the longest root (1st ...
0
votes
4answers
137 views

object has keys but evaluates to null

the problem is, there is no "standard function" you can write to detect if some thing "is set". for example, if it truly is a null object, then, you don't want to work with it; but, if it has keys, ...
3
votes
6answers
104 views

PHP object return false if no properties

I am trying to make a class what will contain a set of properties. it will be used like so: $class = new test_class(); $class->property; $class->second_property; Basically, if the properties ...
0
votes
1answer
108 views

how to check if a nested object property is undefined in Javascript?

I have a Javascript object and I'm struggling mightly to check in a loop if postsome is undefined. Here is my object: var indices = [{ "indexAB": [{ "postsome": [ ...
0
votes
2answers
59 views

Getting properties from a variable function?

I have this code: var rect2 = new drawRect({ h: 100, w: 100, x: 280, y: 20, colour: '8CB5CF', name: 'Office 2' } Is it possible for read the ...
0
votes
4answers
132 views

Access elements in json object like an array [duplicate]

Possible Duplicate: I have a nested data structure / JSON, how can I access a specific value? I have a json object, like the one below: [ ["Blankaholm", "Gamleby"], ["2012-10-23", ...
0
votes
2answers
31 views

How do I make an assignment of a new member of a javascript object dynamically?

Lets say I have a javascript class that looks like this: var Person = { //Private members getXmlRequestObj : function() { if (window.XMLHttpRequest) { return new ...
0
votes
4answers
61 views

javascript class object properties as call back functions

I am writting some javascript class code, which will accept array of 'Steps' objects, and will perform steps navigations. What I am planning to do is , whenever Next() method is called, it should ...
0
votes
0answers
43 views

php set object properties like array_fill_keys($keys, '') does for array

I would like a PHP method that lets me set an object's properties like: array_fill_keys($keys, ''); does for an array's indexes
0
votes
0answers
52 views

PHP object property access

I´m trying to access to a property of an object but I have a problem when the property contains an array. Initial situation My object contains a property called "member" that contains an array of 2 ...
0
votes
0answers
64 views

FT Scroller: Accessing Return Values of Object Properties

I'm using FT Scroller (https://github.com/ftlabs/ftscroller) for a little project that calls for multiple vertical scrollers in a horizontally paged scroller. The setup was pretty easy, but I want to ...
0
votes
1answer
66 views

Lazarus: How do I find detailed docs (class info) of objects?

Is there a way to find complete class info of an object in Lazarus. F1 doesn't work. For example, I want to know the methods, events and properties of TSQLQuery. More specifically, I'm trying to find ...
1
vote
3answers
48 views

Accessing Values From Object property that is an array

How can I access values from an object property that is an array? For example: $myObject = new MyClass; $myObject->myproperty = array(1 => 'English', 2 => 'French', 3 => 'German'); ...
2
votes
1answer
59 views

can't copy object properties to another in javascript

this should be simple enough, but i'm having trouble copying the properties of an object to another. var tableFormatting = { table: { style: { width: "100px", ...
-4
votes
1answer
927 views

the value of the property “if” is null or undefined, not a Function object [closed]

I am creating a quiz template that I will be using for module assessments. In the process I have created a True/False question with radio buttons. When I click on the score button to check my answer, ...
1
vote
3answers
147 views

Getting property key from json object

Preamble: I'm Italian, sorry for my bad English. I need to retrieve the name of the property from a json object using javascript/jquery. for example, starting from this object: { "Table": { ...
1
vote
2answers
32 views

How to give IDs to Objects to use in any method?

I'm coming into C# from the JavaScript language and I can't seem to find a way to assign string ID names to objects in my Form application that can be used in many methods. For example, string ...

1 2 3 4 5 6