class

jquery add remove class

Hi. I have 4 anchors, I want to add a class of current to an anchor as it is clicked and remove the class from the other 3 at the same time here's my code what am I doing doing wrong please? if ($("ul#thumb a").hasClass("current") { $("ul#thumb a").removeClass("current"); $(this).addClass("current"); }); and my html looks like...

Property interception of Grails domain classes

Hello, I would like to intercept calls to properties of domain classes to implement access control. My first try was to override setProperty and getProperty. By doing this, I disabled all nice functionality of Grails domain classes, such as domainClass.properties = params and the automatic conversion of data types. The next try was...

global php class in functions?

Hi, is there a way to access one instance of a class inside functions in php? like this: include("class.php"); $bla=new Classname(); function aaa(){ $bla->DoSomething(); //Doesnt Work } $bla->DoSomething(); //works. thanks! ...

use class and enum with same name?

I've a class and an enum value which have the same name. Inside the class I want to use the enum which gives an error. Is there any way to use the enum without renaming or moving to a different namespace? Example: namespace foo { enum bar { BAD }; class BAD { void worse () { bar b = BAD; // erro...

PHP Class Variables emptied in While Loop

I've been dabbling in writing a PHP Class for a few weeks now and I like to think I've got a handle on he basics but I'm a little stumped. As a simplified example of what I'm doing: I have declared and instantiated a public variable ($myURL) in my class (someClass) and in a external file (config.php) to the class filled the variable wi...

Class Inheritance

Hello, I am trying to get completely to grips with class inheritence in Python. I have created program's with classes but they are all in one file. I have also created scripts with multiple files containing just functions. I have started using class inheritence in scripts with multiple files and I am hitting problems. I have 2 basic sc...

Is there a way to implement constraints in Haskell's type classes?

Is there some way (any way) to implement constraints in type classes? As an example of what I'm talking about, suppose I want to implement a Group as a type class. So a type would be a group if there are three functions: class Group a where product :: a -> a -> a inverse :: a -> a identity :: a But those are not any fu...

Refering to the class itself from within a class mehod in Objective C

I hope i did not skip this part in the ObjC manual but is it possible to refer to a class from within one of its class methods? Like in PHP you would use "this" to refer to the current instance, while "self" refers to the instance's class the ObjC equivalent of "this" would be "self", so what would be the ObjC equivalent of PHP's "self",...

How do I dereference a hash that's been returned from a method of a class?

I have a class with a method that returns a hash. Ordinarily, I would get the result like so: %resp = $myclass->sub($foo); And then access members of the returned hash like this: $resp{key}{subkey}; in the case of a 2d hash. I figure there must be a way to combine this into a single, elegant line, something like this: $myclass->...

Adding data to a tableview from another class

hi, like i posted earlier and it messed up. i need to add data to a tableview from another class but the problem is i got a tableviewcontroller class and a datacontroller class. So i need to add data to the array list in datacontroller and reload data in tableviewcontroller? Im not very good with implementation system so. Anyone know? ...

jquery change == to contains?

I'm trying to alter the code below so that if "this" contains the class "search_init", it will only replace that class, as the markup itself has multiple classes applied to it. I tried ~= and ^=, but that gives me errors about missing (). $("tfoot input").focus( function () { if ( this.className == "search_init" ) { ...

How to load java applet from django template

My applet runs file when I call it from a static applet.html file, like this: <applet archive="applet.jar" code="com.xxx.yyy.PApplet" width="100" height="20"></applet> But how do I put the same line in a django template? And where should I put the .jar and .java files? I also noticed that it appends .class to the PApplet while lo...

C# : Mini Application Structural Design (Classes/Interfaces/etc.)

I've been creating a small application that allows a user to convert images to various sizes and formats. I've been struggling on getting a good solid design with this application. I have the application up and running, but it does integrate good Object-Oriented design. Since this is a personal project, I've been wanting to learn more...

I Want Access To a Public Static Const in my Actionscript Without Instantiating an Object... Is That Possible?

I've got a static property I would like to access by importing it's class without instantiating an object of that class. Is this possible? Essentially I'm writing a bunch of styleSheet Objects over and over. I figure If I have a class called CSS and like this: package com { import flash.text.*; public class CSS { pu...

C# combine the functions of two different base classes

Hi, I'm trying to combine the functions of two different base classes into a new class, to no avail. Say I have class A and B, whereas B is a descendant of A with different functionality (i.e. can't be used as a substitute for A during runtime) and need a class C, which combines A and B, uses both and provides a unique interface to users...

Delphi: Save TList of objects in text file

In Delphi I have the following classes: type TSong = class(TObject) private FArtist: String; FTitle: String; procedure SetArtist(Artist: String); procedure SetTitle(Title: String); public property Artist: String read FArtist Write SetArtist; property Title: String read FTitle Write SetTitle; constructor...

C# Partial Classes

I currently have a solution with multiple projects that mostly use the same classes. As a result, it appeared to me that it would be a good idea to add a class library containing these classes in the solution instead of repeating the class in each project. However, one project I have requires a few additional properties to some of the ...

Overiding Static Classes in C#

I have the following class with static properties and methods which helps manage users on a website. I want to be able to re-use this class among other projects by overriding some properties. public class Account { public static string sessionName = "Account"; public static string tableName = "Accounts"; public static boo...

Delphi: Calling a function from a vc++ dll that exports a interface / class

Hello, i have some trouble accessing a dll written in vc++ that exports an interface. First i tried to use classes, but after some google-search i came to the solution, that this i not possible. I just want to make sure, that the plugin interface can accessed, by using other languages like c++. Delphi Interface IPlugIn = interface fu...

Have a variable available for class __construct()

I am trying to pass a variable into a class so the __construct() can use it however the __construct() is called before any variables are passed to the class. Is there any way to send the variable before the __construct()? Here is the code: class Controller { public $variable; function __construct() { echo $this->variable; } } $ap...