473,466 Members | 1,661 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Getting "object" instance for calling methods

Ok guys, I'm really looking for someone to tell me how bad a hack this
is, and if I'm close to where I should be with it.

The basic situation is that I have a class which creates a basic
calendar control, the only difference is I stole the navigation scheme
from Vista (e.g., if you click on the year you zoom out to the months
list, then out to the decade, and back in when you click a year, then a
month).

I ran into some trouble setting the onclick events dynamically, then did
some reading on why I was getting a "too much recursion" error, which I
fixed. No problem. Now what I have is this:

function VistaCal() {
VistaCal.instance = this;
}

and then later on, when I am building the calendar controls:

mNameCell.onclick = function(){ updateCal("year", dateString);};

Where mNameCell is the year header, you click it, it zooms you out to
the list of months.

The updateCal function is outside the prototyping, and uses
VistaCal.instance to call the member function I need:

function updateCal(type, date) {
VistaCal.instance.displayChange(type, date);
}

I couldn't find any other way to get a reference to the current
VistaCal, and I looked. I fought with this thing for three hours last
night, and I got it working, but it feels like a hack.

Thoughts?

~A!
Dec 24 '07 #1
4 2135
Peter Michaux said:
I think it is worth programming these silly rollover widgets and then
a tabbed pane (less than 50 lines of code) every time I play with a
new architecture. The investment is small and the insight is worth it.

The second example (functional style) always seems to be shorter and
have more appeal to me but I've only programmed large widgets like the
first example (prototype OOP) as it has seemed easier to reuse code
and to extend the widget to make something like MyFancyRollOverWidget.

Peter
I think that was EXACTLY what I needed, the example of the event handler
in the class. I write big stuff, but I always brute-force my way through
it, trying to pick up from you guys a better way of doing things.

Seems to be working. Thanks, I really appreciate that.

~A!
Dec 24 '07 #2
My Pet Programmer said:
Peter Michaux said:
>I think it is worth programming these silly rollover widgets and then
a tabbed pane (less than 50 lines of code) every time I play with a
new architecture. The investment is small and the insight is worth it.

The second example (functional style) always seems to be shorter and
have more appeal to me but I've only programmed large widgets like the
first example (prototype OOP) as it has seemed easier to reuse code
and to extend the widget to make something like MyFancyRollOverWidget.

Peter

I think that was EXACTLY what I needed, the example of the event handler
in the class. I write big stuff, but I always brute-force my way through
it, trying to pick up from you guys a better way of doing things.

Seems to be working. Thanks, I really appreciate that.

~A!
Oh, if you want to take a look:

http://mypetprogrammer.com/vistacal.html

It's just a little prototype at the moment, I'm working on the
architecture as of the moment I read your post.

~A!
Dec 24 '07 #3
My Pet Programmer wrote:
Ok guys, I'm really looking for someone to tell me how bad
a hack this is, and if I'm close to where I should be with it.

The basic situation is that I have a class which creates a
basic calendar control,
By which the nearest you can mean is that you have an aggregation of
code that attempts to implement the concept of a 'class' in javascript,
as javascript has no 'classes' (or it has only one class; the native
ECMAScript object).
the only difference is I stole the navigation scheme from Vista (e.g.,
if you click on the year you zoom out
to the months list, then out to the decade, and back in
when you click a year, then a month).

I ran into some trouble setting the onclick events
dynamically, then did some reading on why I was
getting a "too much recursion" error, which I fixed.
No problem. Now what I have is this:

function VistaCal() {
VistaCal.instance = this;
}
If you assign the - this - value to a property of the constructor inside
the constructor then that means that there can only ever be one instance
of - VistaCal -, and if there can only ever be one instance it is
difficult to see how this can be a implementation of the concept of a
'class' in javascript (as 'classes' are things that are expected to have
multiple instances).
and then later on, when I am building the calendar controls:

mNameCell.onclick = function(){ updateCal("year", dateString);};

Where mNameCell is the year header, you click it, it zooms you
out to the list of months.

The updateCal function is outside the prototyping, and uses
VistaCal.instance to call the member function I need:

function updateCal(type, date) {
VistaCal.instance.displayChange(type, date); }

I couldn't find any other way to get a reference to the current
VistaCal, and I looked.
Closures are frequently employed in this context. See:-

<URL: http://jibbering.com/faq/faq_notes/closures.html >
I fought with this thing for three hours last night, and I got it
working, but it feels like a hack.
It would not be anybody's first choice to use a single global reference
to refer back to the object instance. But if there can only be one such
object and it is properly named (Your chosen name is obscure) then that
is not too big a deal. However, from the little code you posted it looks
like the creation of that single object could be much better handled,
and it would need much re-working if there were ever to be more than one
instance of that object.

Richard.

Dec 24 '07 #4
Richard Cornford said:
>
It would not be anybody's first choice to use a single global reference
to refer back to the object instance. But if there can only be one such
object and it is properly named (Your chosen name is obscure) then that
is not too big a deal. However, from the little code you posted it looks
like the creation of that single object could be much better handled,
and it would need much re-working if there were ever to be more than one
instance of that object.

Richard.
Thanks for the extensive feedback, Richard, much obliged. The reason I
posted it here in the first place was because the way I did it there
could only be one, and I knew it was messed up. Luckily a couple of you
guys came along this morning and helped me out, and I'll rework it.

It's actually not a lot of rework that it needs, all the events are
handled from the same spot, so however I fix them there will propagate,
and heck, if it doesn't, I get to learn a bunch more about the technology.

And you'll have to forgive me thinking about things as objects for a
bit, I'm coming from an oo background, and Javascript's more advanced
features are a very different concept.

I really appreciate the response, thank you.

~A!
Dec 24 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object...
4
by: Tim Johnson | last post by:
Hello All: I would like to expand upon the typeof operator. Using 'typeof' I can distinguish between string and array for instance, because typeof returns "object" for array. How can I...
6
by: Lauchlan M | last post by:
Hi. Usin ASP.NET, getting an "Object reference not set to an instance of an object" error. In my login.aspx page I have: string arrUserRoles = new string {"UserRole"};...
3
by: Steve Lutz | last post by:
Hi All, I have a Windows Service that runs well. The service hosts a remote object. The purpose of the object is so that I can "peak" into the service to see what it's doing. I wrote a small...
4
by: Piotr Perak | last post by:
Can someone explain the "object instance" term that is used i many of C# books? I have C++ background. In C++ instance and object meant the same. I could say that I have object of some class or...
2
by: Andrzej Kaczmarczyk | last post by:
Hi, I have following problem: (warning, quite long post with lots of code) I have an object of a known type like this. class MyClass { public int Property1; public string Property2; }
18
by: Microsoft | last post by:
When I try this in my code I alwas get an errormessage: "Object reference not set to an instance of an object" Dim g As System.Drawing.Graphics g.DrawString("Test", New Font("Arial", 12,...
7
by: Andy B | last post by:
I have an instance of an object that needs to be accessed by all members of a page like page_load, button_click events and so on. Where in the codebehind would I put the creation of the object...
3
by: Sarah | last post by:
Hi - Please be gentle. I am quite new to visual basic, but I have been going through tutorials and reading up. I found a code snippet on the internet that I wanted to see if I could re-purpose...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.