Classname may refer to classes in scripting languages and markup languages. Typically, a class denotes a certain part of the application which can be manipulated.
0
votes
1answer
15 views
Create an association between one model that has two foreign_keys to another model
Struggling with this association, I have two models: Figure and Market, a market is where you can trade your toy figure with someone else.
Figure class
figure_id:integer
name :string
...
0
votes
5answers
83 views
Class name convention in java [closed]
What is the naming convention of classes in java, for example should all classes be in upper case like MYCLASS.java ?
as some classes like com.sun.org.apache.bcel.internal.generic. ANEWARRAY. can be ...
0
votes
4answers
95 views
javascript to change all class values in a div
Is there a way to change the class value for all of the buttons with JS? right now I've got:
var nodes = document.getElementsByClassName("yui-button yui-radio-button");
and then a for loop
for ...
0
votes
4answers
68 views
Javascript: Check if classname exists
<div class="Trade">
<div id="Offer">
<div class="NoResults">No Result!</div>
<div class="FooterPager"> <span id="Offer"><a ...
0
votes
3answers
31 views
How to get the object's class name when it is an instance of a subclass?
Suppose we have an abstract class Animal:
function Animal(){};
Animal.prototype.communicate = function(metadata){
//ABSTRACT
};
And then we have a Duck class:
function Duck(){};
Duck.prototype ...
1
vote
1answer
25 views
changing className issue (javascript and IE)
The following javascript code does not work correctly. (I am using IE9 and cannot use a different browser or JQuery):
var elems = document.getElementsByClassName("EditableTextBox");
for (var i = 0; i ...
0
votes
1answer
97 views
Foundation's top-bar, the toggle won't work
Following the instructions from here:
The top bar has four main elements, three of which are needed for
proper functionality: ul.title-area, a ul class="right/left element
enclosed in a ...
1
vote
1answer
37 views
How to get name of class if I know only a bound method in python? [duplicate]
In pyton code I've got a bound method of some object. Knowing only this bound method I would like to know what is the class of that object. Is it possible?
Here is sample code:
>>> class x:
...
0
votes
1answer
27 views
Why does staticMetaObject.className() return the class name of the parent class?
I have a class 'Default' derived from a class 'Units' and when I do:
Default::staticMetaObject.className())
it returns Units instead of Default. Why is that? How can I fix this?
1
vote
0answers
61 views
How to know the classname of a WPF application to use in FindWindowByClassName InnoSetup function
In InnoSetup, there is a function "FindWindowByClassName" to know if a program is allready in use.
In my case, I want to know if my wpf application is in use before runing the InnoSetup update, but I ...
1
vote
0answers
34 views
iOS - Accessing the name of IBOutlet
I am having several IBOutlets of UIView; several subviews within my parent view.
I am trying to loop over all the subviews which are UIView.
I want to loop over all subviews that have the name of ...
0
votes
1answer
117 views
Change the Existing class name in xcode
I have xcode 4.5 and I want to add two project's file in my project.
But the problem is - In that two class both class's name are same.
I changed the Class prefix from file inspector but it is ...
-1
votes
2answers
122 views
C++ Template Parameter automatically with Class Name
I have a triple hierarchy class:
template<class T> class Singleton;
class Base;
class Sub : public Base, public Singleton<Sub>;
I' using underlying auto pointers, that's why Singleton ...
0
votes
1answer
44 views
Inability to change more than one className
I'm coming here after a few hours of outstanding rage, anger, shock - perhaps just plain incredulity - at what's happened to me here.
I've attempted to create the simplest of functions in a lengthy ...
2
votes
2answers
113 views
JavaScript - Replacing “no-js” class with “js” class not working?
I placed a class in my <html> element called "no-js". This indicates that the user isn't using javascript, (whether it be disabled or blocked). And then, in a script file I created, I want to ...
1
vote
1answer
56 views
Is there a way in Java to incrementally change a class name?
I have a large body of Java code that uses a class XXX. Over time, the meaning of the class has changed, and the name is no longer appropriate. To make the code more readable, I would like to change ...
0
votes
0answers
142 views
Sending text with SendMessage to another program that has changing control id's and class names that are the same
Details:
I recently started coding in C# and I am remaking a program that I made in AutoIT3. Its basically a program that pulls text from html and sends it to another program then clicks some buttons. ...
0
votes
3answers
124 views
Div is not created before javascript run
I have a question about javascript/html.
First, I have this:
var post = document.body.getElementsByClassName("post");
var x=post[i].getElementsByClassName("MyDiv")[0].innerHTML;
I get from the ...
-1
votes
3answers
131 views
Get parent - javascript
I have many divs with classname "post". In each of them, there is a button and another div.
With a JS function I assign to each of the buttons an onclick function, let's call it MyFunc().
Now I want ...
0
votes
2answers
100 views
prototype - remove class, to elements selected by ClassName
http://jsfiddle.net/9UQwM/1/
the script removes class from the elements in an alternating pattern,
most importantly why?
and what can be done to fix the problem?
Object.prototype.removeClass = ...
0
votes
3answers
169 views
Another “how to find className”
I've used the search functions and i've read and tried a lot of examples, but I can't find a solution for my problem... So, here we go:
I want to send Intents to only 1 BroadcastReceiver. Therefore ...
0
votes
0answers
10 views
Can I set default classname library for Dreamwaver, for css properties hint?
I can use dreamwaver classname hint when I attach
<link rel="stylesheet" type="text/css" href="style.css">
to html content.
Now, I don't want attach link stylesheet, but I want use ...
2
votes
1answer
59 views
Troubles with assigning .src for a thumbnail image
I'm very much a beginner at Javascript, so keep that in mind for any small inefficiencies in my code.
I'm attempting to set the IDs of a group of divs "galleryboxes" (that are inside a another div, ...
0
votes
1answer
145 views
Embedding Applet in JSP
So I'm learning how to embed an applet into a jsp page. But the thing is, when I run the index.jsp, there's always an error. The error says that the class for the applet is missing, and I don't know ...
6
votes
3answers
710 views
Using jQuery to find a class by ID name
<div id="calcwrapper">
<img class="sugarcube" src="images/sugarcube.png" width="13" height="17">
<div id="drinks">
<a id="drink1" href=""><img ...
0
votes
0answers
45 views
if button contains particular class display alert on click
This is a button.
< a id="abc" class="info-button < c:if test="${Type == 'true' and !empty availability}">icon-streaming ${availability == 'PPV' ? 'order-button ep-order' : ...
0
votes
6answers
80 views
$(.class) only executes for the first tag of that class name
I am trying to make a javascript function that goes through the web page and looks for all of the tags of class name "option" and hides the ones that match the text in each of the if statements shown ...
1
vote
1answer
67 views
Toggle classname and remove if clicked on other link with fadein , fadeout effect
Here's something that I have
link A Text A
link B Text B
link C Text C
When someone clicks on Link A, its color changes to red and the color of text A should also change with fade in ...
0
votes
1answer
53 views
jquery match unique classname
I'm trying to get comments working in a slider for wordpress with jquery. I'm not an expert by no means so i'm asking for some help. Here's what I have so far.
<div id="slider-1>
<div ...
0
votes
2answers
208 views
stuff.className.indexOf(“term”) == 1 not working
I did a bit of Googling, and I found that the following code does not work because inputs[i].className is not a string. How would I make this a string??? I tried toString(). Also, inputs.length is ...
0
votes
1answer
66 views
G++ builtin for getting class name from a class object pointer?
As the title asks, are they any g++ builtin function (or any method) to know the class name from a class object pointer?
For instance,
class Base {
};
class A : public Base {
};
class B : public ...
0
votes
2answers
42 views
Actionscript - shortcut reference to long class names
Is there a way to do something akin to import <BLAH> as in actionscript? I've got some classes that I don't want to type the full class name out for every time I use them. That's why I'm trying ...
0
votes
1answer
61 views
Is there a tool to identify when multiple identical class names exist in a classpath? [closed]
Is there a tool that I can use to identify when I have more than one class with the same fully qualified classpath and class name in the classpath for my program? I just spent about an hour trying to ...
0
votes
2answers
227 views
Python invalid syntax when using eval(strClass)
I have a list of class names as strings, and if I say fe. print(cNames[0]) it will result into Foo since cNames[0] = "Foo". Now if I wanted to compare a class string with a class, I would do this:
if ...
2
votes
1answer
86 views
Curious little error
Here is what I have for an error:
In file included from braincalc.cpp:8:0:
AbstractStack.h:43:1: error: expected class-name before â{â token
Here is my .h:
//AbstractStack.h
#ifndef ...
1
vote
2answers
180 views
Distinction between ClassObject.getClass,ClassName.class and Class.forName(“ClassName”)
I wish to understand if both Class.forName("ClassName") and ClassObject.getClass
return runtime instance of the class. Then why on comparing the resulting Class object obtained from the two fetches ...
0
votes
2answers
164 views
Use JavaScript to Replace Classname Value
I want to replace every occurrence of the numbers with the string: ???.
Here is an example string:
<em>Chelsea</em> 1-4 Atletico Madrid
How can I do this in JavaScript?
<a ...
1
vote
1answer
1k views
jquery e.target.hasClass not working
I dynamically create a new div (with a "textbox" class and ID), and some other elements inside of it, and later on in my code I bind that div to the click event, and display the element clicked, like ...
0
votes
0answers
86 views
How to add classname to body tag based on the current parent page when in child page (nice menus module) in Drupal 7?
I need to style content elements based on the parent page node in order to get the same background color as in the current menu link, when I'm in a child page ... I use Drupal 7 and Nice Menus to get ...
1
vote
1answer
55 views
Is it normal for all variable, classname and methodname to have 2-7 letters long? [closed]
I have question. I saw this youtube video of the creator of Minecraft named Markus and the way he codes is really foreign to me because the variable names have 2 letters (ie: xd or zd) and if its not ...
0
votes
1answer
69 views
Why is java.lang.IllegalStateException being generated when trying to access a class?
I'm trying to get a class whose instance has already been created and I want to use that instance. The name of the needed class and the correct package is specified. However. I'm getting an ...
0
votes
1answer
83 views
Qt QMetaData classname implementation
I have been looking around QMetaData and QObject calling the className(). I want to replicate this in my own class but I cannot figure out how QT does it. What I mean is, I do the following but it ...
4
votes
1answer
2k views
Event.target.classname only first class
I've a question.
I'm using the
event.target.className
to get the ClassName, but sometimes an element has multiple class names, how can I make it,
so it only gives the first class name as ...
1
vote
2answers
364 views
JAXBElement<T> make the declared type T as a parameter to work with any class
I got this code
private Object fooMethod(Node node, Class classOut)
JAXBElement<MessageAcknowledgementType> root = unmarshallerjaxObject.unmarshal(node, MessageAcknowledgementType.class);
...
2
votes
1answer
1k views
Titanium TableViewRow classname with custom rows
I would like to know in what way the 'className' property of a Ti.UI.TableViewRow helps when creating custom rows.
For example, I populate a tableview with custom rows in the following way:
function ...
0
votes
2answers
435 views
Remove class from all <a>-tags within a certain div using jQuery
I'm using jQuery and have managed to paste together a simple accordion which can ONLY have one section of the accordion open at the same time. Each section of the accordion which has subitems has a ...
3
votes
2answers
189 views
Is it safe to change TCreateParams.WinClassName or how to find a form handle of another own application?
I have two applications, where the first one needs to find a handle of the form from the second (also my own) but different application (not instance, but different application). I've seen some ...
0
votes
1answer
618 views
HTML5 -webkit-transition doesn't work if I set it right before setting something else using javascript on chrome
I'm still new to HTML5 but I faced a very strange behavior. (In Chrome)
The following code works on chrome:
<!DOCTYPE html>
<html>
<head>
<title>Webkit-transition ...
1
vote
2answers
3k views
JavaScript DOM changes in touchmove delayed until scroll ends on mobile Safari
In mobile safari, in the course of handling touchmove for an element, I change the className of that element. Unfortunately, the visual change does not occur while the user is scrolling, or until the ...
1
vote
0answers
62 views
Launching Android Widget List from activity
Is there any way to launch the android widgets list from activity? Some like on sample code:
Preference button = (Preference)findPreference("button");
...




