Tagged Questions
Closure Library is a JavaScript framework used by Google and one of three components to Closure Tools, an open source toolset to aid with developing front-end web applications
107
votes
10answers
26k views
What does Google Closure Library offer over jQuery?
Considering
business background
community support
available extensions
default set of features
simplicity of use
and reliability
why do you prefer one over the another?
9
votes
2answers
707 views
getting started with Google Closure if you don't care about minifying/compiling?
If you don't care about minifying your code, is there a way to get started using the Google Closure library without having to set up a subversion client and use the compiler? The Notepad sample ...
8
votes
6answers
1k views
How can I load my own js module with goog.provide and goog.require?
We are trying to switch the packaging for our project from dojo to google closure, but we haven't had any luck so far. Here is a simple example that illustrates what we are trying to accomplish:
...
7
votes
7answers
2k views
Using DOMContentReady considered anti-pattern by Google
A Google Closure library team member asserts that waiting for DOMContentReady event is a bad practice.
The short story is that we don't want
to wait for DOMContentReady (or worse
the load ...
7
votes
6answers
903 views
Array-like object in javascript
Looking through the dom.js source from the Closure library I found this (in goog.dom.getElementsByTagNameAndClass_):
if (opt_class) {
var arrayLike = {};
var len = 0;
for (var i = 0, el; el = els[i]; ...
6
votes
1answer
82 views
Why does this line of Google closure look like it looks?
Why does this javascript line looks like this? I mean, why there's an extra + near the end?
'<script type="text/javascript" src="' + src + '"></' + 'script>'
Source: ...
6
votes
2answers
1k views
Is there a way to generate Javascript API documentation like the Google Closure Library API Documentation?
I'm trying to find a tool that generates HTML documentation for my Javascript source code.
Does anyone know if the tool that Google uses to generate the interface at the following URLs is open ...
5
votes
3answers
247 views
Why check for !isNaN() after isFinite()?
I came across the goog.math.isFiniteNumber function in the Google Closure Library. What it does is checking whether a given number is both finite and not NaN.
The underlying code is:
...
5
votes
2answers
887 views
What are the best/more stable features of the Google Closure Library
In November 2009 Google announced the release of Closure Tools which include the Closure Library.
According to this post google closure library contains some battle-hardened parts and others more ...
4
votes
1answer
548 views
Using Google Closure Templates with jQuery
We are starting to create an application using JavaScript and HTML5 which will use rest API to access server resources taking the advantage of jQuery awesomeness and easiness which our dev team is ...
3
votes
3answers
568 views
Benchmark for Google Closure Library
When I search for performance of Javascript libraries I get many sites showing the comparision of performance between the following popular libraries
jQuery (pretty slow)
Prototype(very slow in IE)
...
3
votes
2answers
478 views
confusing google closure library api
could someone explain to me how the Closure works in more user-friendly form? Its help and documentation leads me nowhere really. How do you perform a simple task such as selecting and modifying the ...
3
votes
3answers
792 views
How can CSS be applied to components from Google Closure Library?
I'm getting my feet wet with Google's Closure Library. I've created a simple page with a Select Widget, but it clearly needs some styling (element looks like plain text, and in the example below the ...
2
votes
1answer
69 views
How does gmail use ajax?
Looking at firebug, gmail sends GET requests to get something like:
while (true); ...
2
votes
1answer
111 views
Google Closure Compiler - Dead code removal based on externs
I'm trying to use the Google Closure Compiler to split my application code based on where it's going to be run (on the server vs the client) via a single variable. In this example, everything that's ...
2
votes
3answers
264 views
Closure Library or YUI 3
I'm architecting an enterprise web application using python, django. My final decision to make is which javascript library to use. I'm thinking about using Google's closure library or YUI3. Most of ...
2
votes
1answer
136 views
Does Closure Library have an equivalent to jQuery.live?
In jQuery I can use live() to add event listeners, even for elements that don't exist yet:
jQuery('a[href*="/item/"]', pageContent).live('click', preLoadAjaxPage);
Does Closure Library have an ...
2
votes
1answer
160 views
How can I pull an integer out of localstorage and coerce to an integer using clojurescript
I'm trying to pull an integer out of localStorage with a simple clojurescript app. Everything I've tried ended up trying has some sort of wrong behavior.
Below is my program without initializing ...
2
votes
1answer
150 views
How do you use wro4j together with the Closure library and compiler?
I followed the instructions at here, though I substituted 1.3.8 for the version, and I'm able to compile my JS in a wildcard folder as I wanted, however, I'm not quite sure where to place the closure ...
2
votes
1answer
182 views
Ajax Window (Popup) Using Google Closure Library
Is there any class (like goog.ui.dialog) that let me show a dialog which its content can be fetched by ajax from another file?
Is goog.ui.Dialog an appropriate class for this goal?
Shall I implement ...
2
votes
1answer
436 views
Mobile touch support — In Closure-library
I was just wondering if we have a specific library or framework built on the closure-library , which is specifically designed for touch devices(Android or Ipad). I already have my web-app using the ...
2
votes
2answers
254 views
Why a JSC_MISSING_PROVIDE_ERROR in “Hello World” plovr example?
I'm trying to get started with plovr using the simple "Hello World" example in Closure: The Definitive Guide by Michael Bolin. But my build produces an error. Can anyone out there enlighten me as to ...
2
votes
1answer
377 views
problems creating custom event dispatcher in google closure library
I'm trying to create a custom event dispatcher in google closure js library. I'm basing this code off of the animation class in the fx folder, yet I keep getting this error..
"goog.events is ...
2
votes
2answers
305 views
Closure Library with ASP.NET
Google's Closure Library looks like it has a lot of great features, but I'm not seeing any examples of it used with ASP.NET sites. I'm just wondering if anyone has any experience using the two ...
2
votes
1answer
990 views
how to hide/show dom element in google closure
domA.style.display = "none";
domA.style.display = "block;
I could not find such functions in the library, but I guess they must have it somewhere.
2
votes
2answers
351 views
How do I get Google Closure to call my init function when DOM tree finished
I am looking for something like the $(document).ready function in jQuery, as I work on experimenting with using Closure.
So, my question is simple, is there a function I am missing that will allow me ...
1
vote
1answer
41 views
Preventing AJAX calls to be cached in Google Closure Library
I can't find the way to turn off browser (and sometimes server "304") cache in GCL AJAX calls, like I've done in jQuery.
$.ajax({
url: "test.html",
cache: false,
});
Maybe I can control headers ...
1
vote
1answer
49 views
How to get all animations on a component to be able to destroy them before finishing?
When I select an element on my page, I am requesting Json and firing off animations for page transitions using goog.fx.dom.FadeInAndShow and goog.fx.dom.FadeOutAndHide.
If one were to click on an ...
1
vote
1answer
63 views
Creating an instance of goog.ui.Button with an image file
I'm relatively new to the Google Closure library and my current obstacle is getting a button to render programmatically with an image (as opposed to text). I've tried adding a img tag as the content ...
1
vote
1answer
181 views
Use of console.time
I'm creating an application with Google Closure Library and its Compiler. To debug values I use console.log(). Compiling this will throw the following exception JSC_UNDEFINED_VARIABLE. variable ...
1
vote
1answer
68 views
Asynchronously delay JS until a condition is met
I have a class, ChatRoom, that can only render after it receives a long-running HTTP request (it could take 1 second or 30 seconds). So I need to delay rendering until ChatRoom.json is not null.
In ...
1
vote
2answers
62 views
What are the supported browsers and devices for Google's Closure Javascript library?
Where do you find out if Android, Safari (iOs) etc are supported by the Google Closure libraries?
1
vote
1answer
168 views
detect circular dependencies in python
I don't understand why the _ResolveDependencies method in DepsTree class can detect circular dependencies. Seems it can detect the situation if a requires b and e and b requires e, but it's not a ...
1
vote
0answers
157 views
should i learn Jquery or Closure? [closed]
i have some basic (superficial) knowledge of Jquery and was thinking of learning it. Recently i have been hearing of Closure library by Google that has features like namespaces and can be compiled ...
1
vote
1answer
288 views
Google Closure bind / resolve issues with the this keyword
What is the Google Closure's solution for resolving the issues with the this keyword in JavaScript callback functions. It would be so useful in OO style programming.
Is there any conventions or style ...
1
vote
1answer
187 views
Opening a url into a split panel using google closure library
This solution must use the google closure javascript library and not any other javascript library.
When a url loads I would like to dynamically open a split panel where one side contains the content ...
1
vote
2answers
249 views
Google Transliteration in Rich Text Editor
I need to use Google Transliteration along with rich-text editing support.
The Google Transliteration API docs recommend the rich text-editor offered by Closure library or Yahoo! UI Library.
But, I ...
1
vote
3answers
836 views
How to merge .CSS files with Sass (or other tool)?
I can use Sass to compile multiple .SCSS or .SASS input files into a single .CSS output file using @import as described here.
If I use @import to include normal .CSS files, they are not merged. The ...
1
vote
2answers
236 views
ignore compiler warning from one file in Google Closure
I'm using an external library (Phonegap) in a fairly large Closure project. Unfortunately Phonegap generates a ton was compiler warnings (all "dangerous use of this"). Enough that it makes searching ...
1
vote
1answer
89 views
How can I get to know if an Element can be seen by the user with Google Closure?
I would like to write a java script that allows me to see the table headings of each column when at least one column of the table is visible. So I want an "excel-like" effect, when the user scrolls ...
1
vote
1answer
64 views
How can I insert something different than the selected item with Closure Autocompleter?
I would like to use the ui.Autocomplete.Basic. I have some values and additional information to these values. I would like the additional information to be displayed, but it should not be inserted. Is ...
1
vote
1answer
137 views
How to use the progress bar of google closure tools effectively?
I would like to show the progress bar using google closure library
during heavy calculation in JavaScript. A sample code is below.
// An essential code which is not working well
var pb = new ...
1
vote
1answer
304 views
Running Google Closure Test Suite Headlessly
I am using Google Closure tools extensively, and would like to be able to run my unit tests without launching a browser, both for speed purposes and also for easier integration with continuos ...
1
vote
2answers
176 views
How to select dropdown item (select option) in google closure?
on jQuery i could just do $('#idOfSelectTag').val('someValue');
How to do the same in google closure?
1
vote
1answer
488 views
How do i add the authenticity token?
I recently switched to Google closure for a new project. I am having trouble adding the authenticity token to the headers in a ajax call. How do i go about it?
My Ajax snippet (using goog.net.XhrIo ...
1
vote
1answer
308 views
Google Closure Library - Adding non-TreeNode children to a TreeNode
I'm using the Google Closure Library and goog.ui.tree in particular to build a tree structure GUI component. It works pretty well out of the box, but I'd like to add a few extra controls to each of ...
1
vote
2answers
701 views
Google Closure: Setting Input for AutoComplete Dynamically
The Google Closure (GC) Javascript Library makes it very easy to create an AutoComplete UI, as this demo shows - ...
1
vote
1answer
652 views
Are Mootools and Google Closure Librarys Compatible?
Anyone have any experience of using Closure js lib and Mootools in the same page?
Conflicts or works ok?
1
vote
1answer
361 views
Loading files through goog.require in a script block fails
When using goog.require inside a <script> tag to load a script, the specified files aren't loaded. For example:
<script>
goog.require('goog.dom');
var mydiv = goog.dom.$('foo');
...
0
votes
0answers
47 views
Creating linearGradient fails
I'm writing a plugin for a bigger application which is in HTML5.
The plugin contains a svg which displays relations. I would like to add linearGradients to the svg, but that doesn't quite work ...