0
votes
3answers
43 views
Jquery: i have a function $.fn.my_function with other functions inside, how can i call them?
Suppose i have this ($ = jquery):
$.fn.my_function = function() {
function foo()
{
//do something
};
function bar()
{
//do something other …
0
votes
2answers
31 views
jquery .serializeArray(); add another value on top for passing to ajax
im doing following
var data = $(form).serializeArray();
// now i want to add another value on this data
data.username = 'this is username';
i want to know how can i add anothe …
0
votes
2answers
65 views
Better way to call superclass method in ExtJS
All the ExtJS documentation and examples I have read suggest calling superclass methods like this:
MyApp.MyPanel = Ext.extend(Ext.Panel, {
initComponent: function() {
// do …
2
votes
6answers
106 views
How to use a method from a class in another class without extending
Sorry if my question sounds weird lol I'll try to explain.
I have 4 classes: Karakter, Karakters, Orc, Human. Orc and Human both extend Karakter. Karakters is an ArrayList with Ka …
3
votes
4answers
328 views
Putting separate python packages into same namespace?
Hey everyone,
I'm developing a python framework that would have "addons" written as separate packages. I.e.:
import myframework
from myframework.addons import foo, bar
Now, wha …
1
vote
6answers
142 views
Beginner: Extending a class in C#, am I doing it wrong?
Again disclaimer disclaimer still learning C# and OOP generally so I hope you'll be patient with me :)
I am currently working with a CMS that has a class called FileVersion which …
0
votes
2answers
227 views
Element.prototype in IE7?
I'm trying to extend all dom elements so i can get and remove their children. The function is below (works in FF and Chrome). Is there an equivalent in IE7 to extend the base dom o …
2
votes
7answers
729 views
Javascript: extending map objects
I don't know how to extend the map object with prototype and hope you can help.
I have something like this:
var map = {'one':1, 'two':2};
and I would like to have a method to ch …
0
votes
1answer
97 views
My control is “not allowed here because it does not extend class ‘System.Web.UI.UserControl’”
Hi there
So I have another noodle-scratcher (for me anyway).
I'm trying to create my own custom control in a CMS I only have partial source code for (i.e. samples the vendor has …
0
votes
1answer
31 views
PHP Class and inheritance, serialization
Hi!
Serialized varibale does not seem to retain its state from classes that were extended.
I have a class, called directly from somewhere that accepts a serialized variable:
cla …
0
votes
1answer
53 views
No need to extend class/library in codeigniter
I would like to check if my assumption about codeigniter is right ?
We would normally extend a class when we are trying to include more functionality to the core, such as MY_Contr …
1
vote
4answers
59 views
PHP extending class properties
Hi, I have two classes in a PHP application, B extending A for example.
Class A has a function which returns some of its other properties in the form of an array of SQL insert quer …
0
votes
2answers
21 views
php5 extend main class and use statics
why I can't do like this?
<?php
class core {
public static $db;
function __construct() {
$this->db = new mysql('host', 'user', 'pw', 'db');
}
}
class …
0
votes
1answer
65 views
Extending DataGrid
I would like to extend the ASP.NET DataGrid web control to add lots of additional features but most important of all, I would like to make the body of the grid scrollable.
I have …
3
votes
3answers
104 views
Is it possible to extend a class dynamically?
I have a class which I need to use to extend different classes (up to hundreds) depending on criteria. Is there a way in PHP to extend a class by a dynamic class name?
I assume it …
