Tagged Questions

4
votes
3answers
748 views

Chaining selectors in jQuery

I'm a guy used to mootools' way of chaining selectors, and I can't seem to find anywhere how to do the same in jQuery. Suppose I have a select element in the selectObj variable. Wh …
2
votes
2answers
142 views

Can Eclipse generate method-chaining setters

I'd like to generate method-chaining setters (setters that return the object being set), like so: public MyObject setField (Object value) { this.field = value; return this …
2
votes
3answers
1k views

Using HtmlTextWriter to Render Server Controls?

I'm writing the RenderContents() method of my ASP.NET server control. The method uses an HtmlTextWriter object to render the output content. For the control I'm writing, using the …
2
votes
3answers
229 views

Has jQuery taken a backwards approach to method chaining?

Is it just me who find the following code intrinsically backwards? I am using this posting as a reference. // create the inner div var $inner = $("<div>inner</div>") …
2
votes
5answers
290 views

Chaining Static Methods in PHP?

Is it possible to chain static methods together using a static class? Say I wanted to do something like this: $value = TestClass::toValue(5)::add(3)::subtract(2)::add(8)::result() …
1
vote
3answers
347 views

Functional style C# API design (returning function parameter augmented with calculation result)

Hi, There is a question regarding usage of functional programming techiques in C# code. Example Let we have interface interface IGraph { /*contains vertices and edges*/} Suppo …
1
vote
4answers
69 views

Why doesn’t this associated create call work?

I've got a User model that has many Items. A Rating belongs to a User and an Item. In the DB, I have set ratings.user_id to be not NULL. when I am creating an Item, I would like …
1
vote
2answers
351 views

is there some dojo.fx.sleep function to use within a dojo.fx.chain animation?

I would like to fadeIn a node over one second. Then leave it on for 10 seconds. Then fadeOut for another 3 seconds. One way of chaining this would be as follows: dojo.fx.chain( …
0
votes
1answer
80 views

How to attach an event to onSubmit event of form with chaining earlier attached methods as well?

Actaully my application is having hundreds of pages. Now i have to attach an event 'disablePage' on onSubmit of form. I don't want to go to each and every page and write: <form …
0
votes
1answer
69 views

How to chain AJAX calls in Rails? A series of calls to be executed, depending on the result of the first call.

I've a AJAX call, that pulls some initial data. Based on this data, I want to fire a series of AJAX calls, updating different parts of the page. It can be done using JS, with the …
0
votes
3answers
554 views

Javascript Window.Onload Function Chaining

Just for the sake of experimentation, I've been trying to determine different ways to non-destructively chain window.onload functions in a web browser. This is the idea of what I h …