Chaining is an object-oriented programming technique where methods return the object on which they were called so that another method may be called on the same object, thus forming a method chain.
0
votes
0answers
17 views
Mvc HtmlHelper chaining to generate Dropdown Submenu
I am developing a web application using MVC4 with Twitter Bootstrap. I want to create a custom dropdown menu HtmlHelper similar to this one ...
0
votes
1answer
40 views
Should I be chaining methods and functions in node.js and Express?
Just like everybody else, it would seem, I have begun to play around with node.js and the Express framework.
Whilst I am reasonably confident with client-side Javascript, relying heavily on JQuery of ...
0
votes
1answer
29 views
Printing off multiple classes with
I have no idea why our professor is making us do this weird printing but its for our final, its due in an hour, and ive been trying to get it to run forever and I cant get anywhere. So i have four ...
0
votes
2answers
27 views
How can I pass input to a function, then have it use that input across 5 internal functions that are chaining each other?
This is essentially 2 questions I think.
How do I make all internal functions use the same raw_input?
How do I chain functions with that input?
I've been trying to make something that will make a ...
1
vote
2answers
67 views
Looping and Chaining Ajax Calls using deferred
I've seen many questions about this but nothing seems to give the right answer for my case.
I've seen also answers that uses .pipe but I'm looking for an answer that uses .then.
Okay. I need to do 3 ...
0
votes
2answers
51 views
Conditionals on a chained deferred in jquery
Let say I chained the $.Deferred like this.
$.each(data, function(k, v) {
promise.then(function() {
return $.post(...);
}).then(function(data) {
if(data)... // here is the ...
0
votes
1answer
16 views
Apply many color filters to the same drawable
I want to apply several color filters in chain to a drawable. Is that possible? Or maybe to create a filter that is the combination of the filters I want to apply.
For example, I would like:
...
0
votes
1answer
45 views
Hash Table Chaining
public void put(int key, int value) {
int hash = (key % TABLE_SIZE);
if (table[hash] == null)
table[hash] = new LinkedHashEntry(key, value);
else {
...
0
votes
1answer
29 views
Jquery chian within chian
I have a piece of code which I have chained like this:
$('iframe').contents().find('item').text();
I would like to add something inside the chain like this:
$('iframe').contents().find( ...
1
vote
1answer
38 views
How to method chain shift and sample in one line
Say you have an array:
a = [2, 5, 8]
To get rid of the first element, so you can use shift:
a.shift # => 2
a # => [5, 8]
There is no problem doing sample on a:
a.sample # => 5
It ...
1
vote
1answer
35 views
How to chain objects of mixed types in PHP5
I'd like to chain-reference a string property like this:
echo($object1->object2->stringProperty);
But that yields this error:
Catchable fatal error: Object of class [object 2's type] could ...
0
votes
1answer
32 views
LESS - go back to grandparent if child exists
This one is making me crazy.
I have labels component in bootstrap v3.
Labels have modifiers like label-danger (red color), label-success(green) etc.
There is a need to distinguish whether label is a ...
0
votes
2answers
50 views
Python. Second step of subprocess.Popen truncates results of first
In the snipet of my python script below, I think that temp2 doesn't wait for temp to finish running, the output can be large, but is just text. This truncates the result ('out') from temp, it stops ...
2
votes
2answers
115 views
how do you chain commands on several lines in go?
I want to chain commands this way :
var cmdGroups = []*commands.CmdGroup {
commands.MakeCmdGroup("foo", cmd1, cmd2, cmd3).AddConstraint(cmd1, cmd2).AddConstraint(cmd2, cmd1, cmd3),
...
2
votes
2answers
84 views
Ruby: How to chain methods specified in an array (or split string) of methods?
How is it possible to chain methods in Ruby when the method calls are specified as an array?
Example:
class String
def bipp(); self.to_s + "-bippity"; end;
def bopp(); self.to_s + "-boppity"; ...
50
votes
7answers
2k views
How to chain this code?
I have this code:
$("#test").siblings('p').remove();
$("#test").remove();
How can I chain this code instead of writing it separately?
1
vote
5answers
54 views
Java Constructor weird behaviour
I've run this code
public class Redimix extends Concrete{
Redimix(){
System.out.println("r ");
}
public static void main(String[] args) {
new Redimix();
}
}
class ...
1
vote
4answers
74 views
Get detail messages of chained exceptions Java
I'd like to know how I could I thorw a final Exception, containing a detail message with all the detail messages of a number of chained exceptions.
For example suppose a code like this:
try {
try ...
1
vote
1answer
65 views
Chain function call after function definition [duplicate]
How can I chain a function call after a function definition in CoffeeScript?
Equivalent javascript would be:
var foo = function () {
// stuff
}.bar()
The only way I managed to do it is:
...
0
votes
1answer
41 views
jQuery Chain this with selector
Is it possible to chain 'this' with other selectors
i.e
var testvar =jQuery(this.label.text()).val();
0
votes
1answer
40 views
rails method chaining context
I have what is probably a basic Q, but it appears complex in the setup. I have a module that has some classes. One class contains methods for API calls. Other classes describe a server. Dev for ...
6
votes
2answers
66 views
jQuery firing click event without a click
Well, that's kind of what happens.
$('.js-custom-dropdown').find('.custom-dropdown-unfolded').toggle();
$('.custom-dropdown-btn, .custom-dropdown-btn-unfolded').keydown(function(event){
if ...
-1
votes
2answers
50 views
i am confused about order of precedence in chaining methods in JavaScript [closed]
i want to know how it gets resolved i mean in which order, does parentheses resolved first in this code
String.prototype.reverse = function() {
return ...
1
vote
2answers
64 views
How to chain fade animations
I have 3 UILabels that I want to fade out, one after the other after a couple of seconds. My problem is these are happening all at once. I am trying to chain the animations, but I cannot get this to ...
0
votes
2answers
96 views
Using && in subprocess.Popen for command chaining?
I'm using subprocess.Popen with Python, and I haven't come across an elegant solution for joining commands (i.e. foobar&& bizbang) via Popen.
I could do this:
p1 = subprocess.Popen(["mmls", ...
-1
votes
1answer
84 views
jQuery chaining functions task [closed]
I'd like to use jQuery to build a series of six buttons with values A, B, C, 1, 2, 3. Each time the user clicks a button, its value is appended to a text field. However, the user must not be able to ...
2
votes
5answers
90 views
Chain jQ methods
If I understand jQuery chaining correctly the first method in the list executes and must complete before the next method executes. As such I have the following
$.fn.reportZebraStriper = ...
0
votes
1answer
41 views
Chaining Saxon XsltTransformer output into FOP
I need to pipe the output of several XSL transformations into a FopFactory object, but I can't figure out how to code this. I have the piping working, but the last step is a mystery.
DOMResult ...
0
votes
2answers
78 views
PHP Chaining methods
class AAA
{
function getRealValue($var)
{
$this->var = $var;
return $this;
}
function asString()
{
return (string) $this->var;
}
}
$a = new ...
2
votes
3answers
73 views
jQuery: Chain actions on same object
I know there are various questions on jQuery chaining already, but I couldn't find an answer to this (probably rather simple) one. Forgive a newcomer to jQuery.
What I am looking for is a short way ...
0
votes
1answer
181 views
Separate chain Hashing for avoiding Hash collision
My knowledge of hash tables is limited and I am currently learning it. I have a question on Hash collision resolution by open hashing or separate chain hashing.
I understand that the hash buckets in ...
1
vote
0answers
29 views
Chaining Object.
I'm having a difficult time trying to figure out how to chain objects the way I would like to do it.
Lets the following example:
var s = function(){
this.text = {
hi: function(){
...
2
votes
3answers
241 views
Chaining lambda expressions in MVC.Net without repetitious passing of HtmlHelper object
My goal is to create an object to allow chaining of commands in MVC.Net views.
Here is an example use in a view of a menu I created using this concept:
<nav class="navigation">
<%: Html
...
0
votes
0answers
32 views
Is there a difference in overhead between returning an object and returning the default value in a javascript function?
Javascript functions can return objects or undefined. I'm considering adopting a policy of always returning the object on which a function is called unless some other value is needed in order to ...
0
votes
1answer
46 views
how to add two event handlers to a element or node in combined form?
I know that in jQuery we can add multiple event handlers in combined form but how to do it in pure Javascript?
How can we attach event handlers in combined form like this:
...
2
votes
1answer
89 views
Writing jQuery-style function chains in AS3 and other class-based languages
This isn't a specific problem I have, more a choice I could make, but I do believe the question is relevant for SO as there may be a 'proper' OO answer, as well as a performance benefit/loss to doing ...
1
vote
1answer
78 views
Chaining in Javascript, why is it useful inside this code?
Have been reading up on one of my favourite programmers Douglas Crockford, in particular the 'method' method.
JavaScript:
Function.prototype.method = function (name, func) {
...
1
vote
4answers
157 views
How to chain multiple click events on same element in JQuery?
I want to have an event fire on one click of an element, and then a different event on a second click of the same element. I've attached a demo link below. The problem is that the events are being ...
0
votes
2answers
50 views
jQuery get correct acces to plugin object in each function
Is it possible to get access to jQuery's plugin object in each-function?
var pluginName = 'pluginName',
Plugin = function(elem){
elem.add = function () {
console.log('foo');
...
1
vote
6answers
72 views
Removing a class from ALL matched form elements.. cleanest way?
I'm trying to clear a bunch of error styling on form elements whenever top level radio buttons are checked. I'm trying to find:
Alternative methods and structure for improving performance
A ...
2
votes
1answer
56 views
Empty function to preserve jquery chains
Is there a (maybe undocumented) placeholder like $.noop for the use in jQuery concatenations?
To use in something like the following:
$('selector')[true ? 'method' : '<function that does ...
0
votes
1answer
42 views
jQuery chain of functions
I have such html
<div class='mydiv expanded' id='1'>aaa</div>
<div class='mydiv ' id='2'>bbb</div>
<div class='mydiv ' id='3'>ccc</div>
<div class='mydiv ' ...
0
votes
3answers
44 views
Chaining functions and keep a variable in the chain if needed
I have some code like this:
function Foo( arr, prop ) {
this.arr = arr;
this.isOn = prop;
}
function newFoo( arr, prop ) {
return new Foo( arr, prop );
}
Foo.prototype = {
a: function() {
...
1
vote
2answers
55 views
chain multiple jquery commands
I've tried chaining and nesting, but possibly in the wrong style is there a more efficient way to execute these two lines?
$('#pub1, #pub1Tab').addClass('active');
...
0
votes
1answer
102 views
Dojo 1.6 Deferred chaining and hitching issue
I got a minor problem with hitching and chaining a deferred ajax request in Dojo 1.6. The code looks like
login : function(data) {
var def = lang.hitch(this.authenticate, ...
0
votes
2answers
58 views
javascript chainning return this from callback
i've tried to get a return this from a callback, but i always get undefined.
here is the snipped
create: function(currentView, data){
var itsMe = this;
this.thumbsWrapper = ...
1
vote
1answer
815 views
Tools for setting up Proxy Chain
We are trying to setup a chain of proxy server in our development system. We wanted to connect to a service through these proxies. The reason why we thought about proxy chaining is that there is no ...
8
votes
3answers
119 views
Why are parentheses needed in constructor chaining?
Why do expressions that use the new keyword need parentheses in order to be utilized in chained execution? In AS3, for example, you don't need parentheses. In PHP is this a stylistic aid for the ...
-2
votes
3answers
51 views
How does the chaining in the iostream operator actually work? [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
I have read that the iostream operator works from left to right, that is if we write
...
0
votes
1answer
164 views
jQuery plugin return value from method and still preserve chainability
I currently reworking my personal jQuery plugin starting point, but I stuck at a small and annoying problem. If a public method is called, it returns the the object it was called from and not the ...



