Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8270723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:40:06+00:00 2026-06-08T06:40:06+00:00

In my Google Closure code, I made an enum denoting names of CSS classes

  • 0

In my Google Closure code, I made an enum denoting names of CSS classes and want to use this enum in my soy template:

/**
 * Lists a single widget.
 * @param widget The widget to be listed.
 */
{template .singleWidgetListing}
<div class='{app.ui.ClassNames.WIDGET_LISTING}'>
  <span class='{app.ui.ClassNames.WIDGET_LISTING_ITEM}'>{$widget.title}</span>
</div>
{/template}

I tried goog.require('app.ui.ClassNames'); at the top of the soy template file to no avail. What is the standard way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T06:40:09+00:00Added an answer on June 8, 2026 at 6:40 am

    The recommended approach is avoid referencing globals in Closure Templates:

    Note: Avoid using render-time globals unless absolutely necessary, because it makes for tight coupling between your template and your runtime environment.

    A template parameter should be used instead:

    {namespace myapp}
    
    /**
     * Lists a single widget.
     * @param widget The widget to be listed.
     * @param classNames Map of CSS classes for styling widgets.
     */
    {template .singleWidgetListing}
      <div class="{$classNames.WIDGET_LISTING}">
        <span class="{$classNames.WIDGET_LISTING_ITEM}">{$widget.title}</span>
      </div>
    {/template}
    

    The template would then be called from JavaScript as follows:

    myapp.singleWidgetListing(
        {widget: myWidgetInstance, classNames: app.ui.ClassNames});
    

    See Using Closure Templates in JavaScript.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In this snippet of Google Closure javascript code involving a constructor, why is goog.base(this);
I'm trying to use the Google Closure Compiler to split my application code based
Reading this page http://code.google.com/p/closure-stylesheets/ , I can't seem to find any documentation explaining how
I want to use the google closure compiler on the javascript source we're using.
When use the Google Closure Compiler advanced optimizations on the following code: function add(v1,
This code is copy from http://code.google.com/p/closure-library/source/browse/trunk/closure/bin/build/source.py The Source class's __str __method referred self._path Is
In my Google Closure code, I want to assign an event to every single
I want to create a Google Closure Compiler plugin for Eclipse. I already have
I love this widget in google closure, Zippy and I need an equevalent in
EBay's VJET and Google's Closure Compiler both use type annotations in Javascript comments. Why

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.