The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
155 views

How do I declare a static variable in a PHP class but define it in a class which extends the base class?

I'm have a DatabaseObject Class that has select, insert, update and delete methods defined. The purpose of the class is to represent a subset of rows in my MySQL database as a PHP object. The ...
2
votes
1answer
350 views

Logging or Extention of Selenium Webdriver actions

Is there a way to overwrite or extend native Selenium WebDriver actions like 'click' or 'sendKeys' for logging purposes? So after performing a regular click or sendKeys following code would be ...
2
votes
1answer
490 views

Django extend admin “index” view

I know how to change or extend a model's views in the Django admin ( http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.add_view ) but I want to extend the admin ...
2
votes
0answers
72 views

extend Interlocked.Add as Interlocked.add(ref float,ref float) using interlocked.CompareExchange

public static class InterlockedEx { // AddToTotal safely adds a value to the running total. public static float Add(ref float totalValue,float addend) { float initialValue, ...
2
votes
0answers
123 views

Extend Vim GUI using Python tkinter

I know there are a few ways to integrate gVIM in GTK using gtk.Socket and DBUS: Pida gtkvim anjuta-gvim VEE VimMate Vizinho But I was wondering if it is possible to say have a python plugin that ...
1
vote
0answers
36 views

Is it possible to extend checkstyle architecture for other languages?

I am looking for static code anaylyzer for some SQL scripts written. I was interested in having a tool that can be extended with my own set of rules. For static code analysis I see lot of tools for ...
1
vote
0answers
65 views

How to extend Cookie expiry from user's last activity?

How to extend cookie expiry date from last activity which user has done? Lets take an example, by default, cookie is set for 30minutes after user login. userA do login at 1PM, hence given cookie will ...
1
vote
0answers
84 views

Extending a Class by Adding a Button

This is probably an elementary question. However, I have completed reading the 12th Chapter of Java Programming for the Absolute Beginner and have approached the Challenges section. I cannot quite get ...
1
vote
0answers
22 views

Making a sidebar extend with the content

I know that there is a method called Faux Columns to fix this kind of problem, but how would you get a div that is the side bar (my nav bar) to extend with the content thats in a different wrapper ...
1
vote
0answers
42 views

RedCloth: avoid html-escaping on custom extension when :filter_html enabled

Tried searching with Google but found nothing similar... I have an app that uses textile to format messages. I am trying to tighten up the security and only allow HTML generated via textile markup. ...
1
vote
0answers
70 views

Extending jQuery.mobile-1.1.0.js

I would like to extend a core jQuerymobile function. Here's the link to JQM library: http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.js I want to change line 6574 headerClose; into ...
1
vote
0answers
152 views

extending jade templates and compiling them at client side

I am using jade for templating in my webapp. But i am using it at client side. Hence the whole compilation of the jade template is done on client's machine. But I am not able to use the extend feature ...
1
vote
0answers
127 views

JQuery extend custom object with parameters

there might be an easier way to achieve what i'm trying to do and i don't think i completely understand $.extend() function, but here i am seeking for an advise: i have this custom grid object ...
1
vote
0answers
102 views

How to extend selection in gnome-terminal?

In a terminal I can select a single line, double clicking with the Left Mouse Button. With xterm, I can extend that selection clicking with the Right Mouse Button in the place I want to extend it. ...
1
vote
0answers
829 views

Extended TreeNode not calling RenderPreText

I have created an extended TreeView that overrides the CreateNode method to return an extened TreeNode like so public class SiteMapTreeView : System.Web.UI.WebControls.TreeView { protected ...
0
votes
0answers
43 views

Simple Ruby Include Extend Example

I think I'm missing something basic in understanding include,extend, etc. in classes. I have a class OauthFigshare that uses calls to the OAuth gem in it's single method initialize. I would like ...
0
votes
0answers
72 views

Session timeout too fast in asp.net

I have develop a website where the session timeout too soon. I want to extend my asp.net session into 2 hours(120 mint). The app pool idle time is intact as i have no permission to change it. In ...
0
votes
0answers
40 views

Extending a jquery plugin / overwrite methods of a plugin - Example bxslider

i really need to overwrite a method in an existing plugin (bxslider). original code of bxslider: ;(function($){ var plugin = {}; var defaults = { //lots of settings } ...
0
votes
0answers
17 views

Connecting to multipe Coherence clusters without sharing POF configuration

I have a problem where .NET application is trying to connect to two completely unrelated Coherence clusters via Extend. Both clusters use their own POF configuration. Based on the research I've done ...
0
votes
0answers
24 views

Resolving constants in ruby 1.9.3 and after

I have some constants in a module that I'd like to test: module Stuff Foo = #... Bar = #... #... end In rspec, running on ruby 1.9.2 and before, I'd use extend so I could avoid giving the ...
0
votes
0answers
26 views

Extending the default printdialog in PresentationFramework

I have been looking for a way to extend the default printdialog in PresentationFramework. I need to filter the available printers some how. Does anyone know if it is possible either to filter the ...
0
votes
0answers
24 views

recursively extending and merging javascript objects

I have written two methods for extending and merging javascript objects. It might be bad question, but I'm not sure that I'm doing it right. Can you look at code and tell if I need something to ...
0
votes
0answers
65 views

Extend two different classes?

In my application, one of my activities has as main purpose to display a listview and to allow each item to be clickable. So far, this activity extends a class called BaseActivity, which is a class ...
0
votes
0answers
140 views

Node.js: Extend JSON object

I would like to extend the native JSON object of node.js. In my example, I was able to extend it to add a merge(json1, json2) function, which merges 2 JSONs: JSON.merge = function(target) { var ...
0
votes
0answers
23 views

Add Query to App View

Im using Userena for my user profiles, and am wondering how to extend its profile_detail view to add a query to it. This is the userena view: def profile_detail(request, username, ...
0
votes
0answers
257 views

Customize windows scroll bar in combobox

I am trying to customize default windows scrollbar in combobox like below. public partial class ComboEx : ComboBox { internal ScrollbarEx vScrollBar; NativeListWindow listControl; public ...
0
votes
0answers
32 views

Codeigniter MY_Form_validation working for some functions only

I am having trouble using extending the CI_Form_validation class. Some of the functions work fine (validating on text input boxes) while others don’t work at all. The functions don’t even get invoked. ...
0
votes
0answers
63 views

Javascript Library Extend way

I'm writing my own JavaScript library. How can I do for extend my object in this way? _.mymethod(); Here's my code: (function (window, undefined) { "use strict"; var emptyArray = []; ...
0
votes
0answers
97 views

Insert into table, from view, Oracle, unable to extend temp segment

I have the following code in Oracle: insert into table_x select * from view_y; commit; where view_y takes about half an hour to execute and returns about 400 000 records. The problem is when I ...
0
votes
0answers
98 views

Dynamic bundle extending with Symfony

I need to create a website with Synfony with core functionality and multiple additions for specific clients. From here, nothing too complicated : every client has its own Bundle that extends the core ...
0
votes
0answers
52 views

Extending RadioButtonList C#

I am working with VS 2010 C#. My requirement is to have a radiobutton list with textboxes below each radio button list item. RadioButtonList is a database driven control. I want to set values in ...
0
votes
0answers
17 views

Plugin Architecture: How to expose the core application's datasets

does anyone have experience in developing plugins wherein the plugIn needs access to some dataset. Q: how to go about correctly exposing the dataset as not to make it vulnerable or Q: how to allow ...
0
votes
0answers
49 views

Convert to ext js 4

I need to implement a keypad extension on my app. But I not able to use it . I guess the extension is the older version which not able to use in ext js 4.0 Please help. here is the js file ...
0
votes
0answers
201 views

Magento vendor extension shipping amount calculation issue

I have the vendor dropshipping extension installed on Magento 1.7.0.2. Each vendor adds his own products and mentions whether he ships only domestic or internationally. Now, suppose buyer adds ...
0
votes
0answers
8 views

Extend contact options

Current contact options are: delete, edit, etc.. I wanted to add a new option. How can I do this? Also, I would like this new option to appear when I install a certain app, much like an add-in. Any ...
0
votes
0answers
24 views

Fixing a Customized Dojo Project: Extending multiple files and creating a release build profile

I am trying to upgrade a Dojo version from 1.3.2 to the current version, but many core files have been modified. After reading the helpful sitepen article ...
0
votes
0answers
135 views

Renewing access token, client side, after user has changed his password

First I will say that I'm working fully client side, no server side whatsoever. I managed to retrieve an access token for 60 days and I posted to my wall, so far so good. Now I wanted to see what ...
0
votes
0answers
39 views

Create extend user for specific group

What is best practice how to extend user in specific group in Django? Say I have groups Teacher and Student. For example assume Teacher should have education field, expertise field, both text ...
0
votes
0answers
75 views

JFrame size driven by JavaFX accordion

I want to change the size of a JFrame when a JavaFX accordion ist extended. So I start with a fully collapsed accordion - when the user extends an accordion item the size of the jframe should also ...
0
votes
0answers
38 views

Extending Java with jar that can be used from an Applet

I want to extend Java with Classes I made myself so that they can be used from Java Applets. I have tried dropping JAR files in the lib and lib/ext folder but they still ain't globally visible. EDIT: ...
0
votes
0answers
298 views

Advice extending PDO with basic CRUD functions

Just recently I started rewriting a previously procedurally written website by myself, I chose PDO as the wrapper since I'm also getting used to the OOP way of doing things. I would like some advice ...
0
votes
0answers
190 views

Keith Wood jQuery Datepicker return date onSelect

I'm using Keith Wood's Datepicker plugin to provide an interface for choosing multiple dates on which events are happening. As part of this, I need to request further information (prices etc) for each ...
0
votes
0answers
81 views

Can you inherit local variables?

I was wondering if the following code is executed, does it inherit local variables from the NewDragDrop function? Does it matter if the NewDragDrop() is the constructor of another class? function ...
0
votes
0answers
22 views

Extend config file shared between 2 applications

Simplified my problem is that i need to break out a part of an large application to be able to use it as a common framework for other applications. The problem is the config file(s). I know it's ...
0
votes
0answers
81 views

Displaying extended Views on android

I have created my own extension of View to display custom graphs, but seem to be running into problems displaying multiple instances of my custom class. When I run the program, I get no errors, but ...
0
votes
0answers
133 views

Extend existing module in symfony 1.4

I would like to know what is the best solution / approach to extend a symfony 1 module. More exactly, what I want to do is: Create a base module "MUSIC" Create a new module AS A PLUGIN (let's name ...
0
votes
0answers
293 views

extjs Issue extending Ext.grid.header.Container

I am trying to create remote multi sort. fields are separated by comma. MINUS stands for DESC EXAMPLE localhost:8080/api/?sort=id,-externalId&page=1&start=0&limit=200 headerclick works ...
0
votes
0answers
238 views

Unable to Extend DataView in Sencha 1.1

I am trying to extend Sencha 1.1 DataView in order to build my own Picker. However - the Extention doesn't work. It seems like it doesn't even call the initComponent, and whenever I am trying to turn ...
0
votes
0answers
2k views

Extend jQuery UI Dialog open function

Is it possible to extend the "open" callback function for the jQuery UI dialog? For example, I am extending my modalDialog box with another called confirmDialog. When opening the modalDialog dialog, ...
-2
votes
0answers
31 views

Creating a singleton by extending an existing class?

I'm wondering whether it is a bad idea to create a singleton not by modifying an existing class, but by extending an existing class and just putting the singleton front in the new singleton class. I ...

1 2 3