Tagged Questions
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.
10
votes
11answers
11k views
How do I chain or queue custom functions using JQuery?
I have multiple functions the do different animations to different parts of the HTML. I would like to chain or queue these functions so they will run the animations sequentially and not at the same ...
9
votes
2answers
1k views
Javascript FAB framework on Node.js
I've seen a slide that presented Fab, a node.js framework.
Is this JavaScript?
Could someone explain what is going on in that code?
I'm all lost.
9
votes
3answers
358 views
Should exceptions be chained in C++?
This may have been asked previously, but I search the stack and couldn't find any which really hit upon this.
I just finished work on a C++-program where I've implemented my own exceptions (although ...
9
votes
1answer
378 views
Resource garbage collected too early
I've created a PHP extension with SWIG and everything works fine, but I'm observing some strange garbage collection behavior when chaining method calls. For example, this works:
$results = ...
8
votes
7answers
336 views
In C#, what is the best/accepted way of doing constructor chaining?
Given the following class:
public class MyClass
{
private string _param;
public MyClass ()
{
_param = string.Empty;
}
public MyClass (string param)
{
_param ...
7
votes
4answers
1k views
Is there a preferred way of formatting jQuery chains to make them more readable?
Given this following sample code which clones a table row, sets some properties and then appends it to a table:
$("#FundTable").append(
objButton.parents("tr").clone()
...
6
votes
1answer
58 views
PHP closure function appended to stdObject and chained [closed]
Possible Duplicate:
Calling closure assigned to object property directly
If I have a class like this:
class test{
function one(){
$this->two()->func(); //Since $test is ...
6
votes
2answers
95 views
Is there a way to allow multiple chains to share the same endpoint in Catalyst?
I'm a bit of a Catalyst newbie, and I'm trying to get multiple chains to access the same endpoint ('description' subroutine) e.g:
/object/fetch_by_id/*/description
/object/fetch_by_name/*/description
...
6
votes
4answers
320 views
Effects of method chaining
I know the benefits of chaining within PHP but lets say we have this following situation
$Mail = new MailClass("mail")
->SetFrom("X")
->SetTo("X")
->SetSubject("X")
...
6
votes
2answers
1k views
How to implement exception chaining in PHP
Constructor for PHP's exception has third parameter, documentation says:
$previous: The previous exception used for the exception chaining.
But I can't make it work. My code looks like this:
try
...
6
votes
5answers
559 views
conditional chaining in ruby
Is there a good way to chain methods conditionally in Ruby?
What I want to do functionally is
if a && b && c
...
6
votes
4answers
976 views
Haskell: monadic takeWhile?
I have some functions written in C that I call from Haskell. These functions return IO (CInt). Sometimes I want to run all of the functions regardless of what any of them return, and this is easy. ...
5
votes
1answer
63 views
Code Hinting custom functions/objects/constants, and on chaining, commentary in Adobe Dreamweaver CS5
In Dreamweaver CS5 there's something called Code Hinting (let's call it CH for short).
CH has a bunch of information about functions, constants and objects built in the core library.
When you press ...
5
votes
4answers
85 views
how to chain selectors with OR condition (alternative result set if main is empty)
What I have now:
var result = $('selector1');
if (result.length == 0) result = $('selector2');
but this defeats chaining.
Question is - how do I get same result with JQuery chaining?
I can't use ...
5
votes
2answers
99 views
jQuery chained animation without plugin
Before with jQuery I could do a chained animation with a delay between like so:
$("#element").delay(45).animate({ }, 45)
.delay(45).animate({ }, 45)
.delay(45).animate({ }, ...
5
votes
4answers
302 views
Method to create and store method chain at runtime
The problem I have is that I need to do about 40+ conversions to convert loosely typed info into strongly typed info stored in db, xml file, etc.
I'm plan to tag each type with a tuple i.e. a ...
5
votes
3answers
695 views
C++ method chaining including class constructor
I'm trying to implement method chaining in C++, which turns out to be quite easy if the constructor call of a class is a separate statement, e.g:
Foo foo;
foo.bar().baz();
But as soon as the ...
4
votes
2answers
233 views
How to implement hash table with chaining?
This is probably a stupid question but, I cant for the love of god figure out what I'm missing here in the theory behind hash tables with chaining.
This is what I understand:
A hash table uses a ...
4
votes
4answers
174 views
jQuery chaining: Can everything be chained? When can we not chain?
I know that not all jQuery functions can be chained together. Is there a rule of thumb on this. When can we not chain 2 functions together.
4
votes
1answer
529 views
Javascript chaining to wait for pop up window to return
how can i get a chain of functions to execute sequentially, when one of it involves waiting for a popup window?
In the authBegin function below, I am popping up a window, which returns to the ...
4
votes
3answers
1k views
Javascript inheritance: call super-constructor or use prototype chain?
Quite recently I read about JavaScript call usage in MDC
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call
one linke of the example shown below, I still don't ...
4
votes
3answers
305 views
Prototype chaining in JavaScript
I'm reading a book called JavaScript patterns but there's one part where I think the guy is confusing.
The guy actually led up in the book to the klass design pattern, where he developed it piece by ...
4
votes
4answers
413 views
Chaining a function in JavaScript?
I want to make a function that add an item to my localStorage object. E.g.:
alert(localStorage.getItem('names').addItem('Bill').getItem('names'));
The first method is getItem which gets the item ...
3
votes
3answers
53 views
Inheritance: Constructor doesn't run “super”?
I've run into this behavior after using JS for a few months. I'm very puzzled because of my Java background: I create a class and make subclasses.
Call a subclass' constructor won't call the parent ...
3
votes
1answer
171 views
How to mock a complex REST call from the server side?
While working with javascript that uses REST services extensively -- including using vocabs like GET, PUT, POST, DELETES, etc; I have found it hard to mock the server side so front end development can ...
3
votes
3answers
77 views
JQuery chaining actions, works..but CSS doesn't wait it's turn?
so i have something like so (below), everything works in turn (it's hidden at the start, then you see it slide down, waits 2 seconds, and slides back up) but the .css action takes place immediately, ...
3
votes
3answers
102 views
Removing Attributes from XSLT and working with result set
Is it possible to remove xml attributes from XSLT AND work with the resulting transform?
In other words, I have the following XML:
<?xml version="1.0" encoding="iso-8859-1"?>
...
3
votes
3answers
146 views
How does Ruby chaining work?
Why can you chain this:
"Test".upcase.reverse.next.swapcase
but not this:
x = My_Class.new
x.a.b.c
where
class My_Class
def a
@b = 1
end
def b
@b = @b + 2
end
def c ...
3
votes
1answer
557 views
XSLT split output files - muenchian grouping
I have an XSLT file so as to transform large amount of data. I would like to add a "split" functionality, either as a chained XSLT or within the current XSLT that can create multiple output files so ...
3
votes
3answers
96 views
Chaining methods is giving me unexpected results, and the arguments are being evaluated in reverse order
Cliffnotes:
I've gotten method chaining to work as I expected in one case, but in another case, there is something funny going on.
I expect these two example to have the exact same output:
As ...
3
votes
2answers
118 views
Expection Handling
catch (Exception ex)
{
DBGlobals.Error("OHMjson.Graph.saveLastGraphName - Error: " + ex.getMessage());
msg = "Unable to save data";
status = false;
}
This piece of code would throw an ...
3
votes
2answers
236 views
Find last record in a single-table chain (SQL Server)
Got this table in SQL Server 2005, which is used to maintain a history of merging operations:
Column FROM_ID (int)
Column TO_ID (int)
Now I need a query that takes the original FROM_ID as input, ...
3
votes
1answer
429 views
unable to chain animation in jquery
I have a list which is hidden using css code {display:none;}
now i am using the jquery code to animate the list (li's)
var numb = $("ol#update li").length;
for(j=0; j < numb; j++) { ...
3
votes
3answers
287 views
Lisp chaining functions macro
Is there a ready made lisp macro that allows chaining (piping) of functions? I couldn't find one. I'll try to explain what I mean with this example.
Instead of using let* with lots of unused ...
3
votes
3answers
1k views
Route Chaining with the Zend Framework
I'm trying to implement route chaining for an admin panel on a Zend Framework site that I am working on. I'm using the following configuration file in hopes that the "admin" route routes with ...
2
votes
2answers
73 views
Decorating a method that's already a classmethod in Python
I had an interesting problem this morning. I had a base class that looked like this:
# base.py
class Base(object):
@classmethod
def exists(cls, **kwargs):
# do some work
...
2
votes
2answers
68 views
Image/DIV animation + event chaining
I'm struggling with an animation I need for the site I'm working on and I'm hoping that someone here can help. Here's the situation: the client wants the index page of the site to be a "vault" that ...
2
votes
2answers
56 views
Argument evaluation order between chained static function calls
I am curious why there is a difference in the argument evaluation order between chained static functions and member functions. From the answers at this question I can see it is unspecified what the ...
2
votes
1answer
112 views
C++ Hash Table using chaining, remove method
I'm implementing a Hash Table in C++ using chaining. The code builds with no errors and the table constucts fine using the insert method. However, when I call the remove method I receive the following ...
2
votes
5answers
78 views
How does jQuery accomplish chaining of commands?
I consider myself (at best) a mid-level JavaScript guy...and of course...I want to understand HOW some things are accomplished so I can write better code. As such, I've been looking under-the-hood of ...
2
votes
2answers
122 views
C++ chaining of the operator << for std::cout like usage [closed]
Possible Duplicate:
std::endl is of unknown type when overloading operator<<
Operator overloading
I'm currently programming a logger class, but the operator<< method causes a ...
2
votes
1answer
63 views
Ruby on Rails build query in pieces
There was a very similar question before but i still struggle.
Is it possible to build a query up in stages?
Let's say I have a search form with many text and select fields that may be chained with ...
2
votes
1answer
89 views
Chain style html markup
Motivation and Problem
There are several libraries for generating html markup strings using ruby (erb, haml, builder, markaby, tagz, ...), but I am not satisfied with any of them. The reason is that, ...
2
votes
1answer
291 views
How to run these functions one after the other?
How can I have these functions run one after the other, so each one finished before the next starts?
$(window).unbind();
$('.buyersseclink').removeClass('buyersseclinkon');
...
2
votes
1answer
249 views
Dealing with null values in chained linq-to-sql query expressions
I have a L2S repository query which I'm stuggling to write in a nice way. It looks something like...
_orderRepository
.GetAllByFilter(o => o.CustomerId == id)
.Select(o =>
new ...
2
votes
2answers
175 views
How to write this better? Ruby Sequel chaining OR
In SQL it should look like this:
SELECT * FROM `categories_description_old` WHERE ((`categories_description` = '') OR (`categories_name` = '') OR (`categories_heading_title` = ''))
My (ugly) ...
2
votes
2answers
253 views
Create chained methods in node.js?
Is it possible to create chained methods that are asynchronous like this in node.js
File.create('file.jpg').rename('renamed.jpg').append('Hello World')
That is to say non-blocking.
2
votes
1answer
839 views
Zend Framework route chaining in application.ini
I am setting language depending on the domain name (en for en.example.com, tr for tr.example.com):
resources.router.routes.plain.type = "Zend_Controller_Router_Route"
...
2
votes
1answer
188 views
How does this implementation of chaining exceptions work?
I previously asked a question about how to chaining exceptions in C++, and one of the answers provided a nifty solution to how it can be done. The problem is that I don't understand the code, and ...
2
votes
1answer
300 views
Why is the Action Chaining in Struts2 not recommended?
What makes Action Chaining in Struts2 a bad idea?
The link above suggests using Redirect After Post, via Redirect Result or Redirect Action Result. Is Redirect Action the way to go?