Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
6k views

How to add a view helper directory (zend framework)

I begin with ZF (1.9.7), and I want to use View Helpers from a library shared between all my projects. But I can't find how to add it directory to the helpers path. My herpers works fines when I put ...
6
votes
3answers
4k views

Use view helpers in controllers in Zend Framework

I have a controller that is called with AJAX (sends JSON data), so I don't use a view. I need to use a personnal view helper to format my data, but in my controller. Is that possible ? Or maybe I ...
5
votes
1answer
80 views

Can View helper read request

In an action helper, I can get request using $this->getRequest(); Anything similar for a view helper?
5
votes
4answers
531 views

Erubis block helper throwing error with concat

I have a couple of block helpers, here's a simple example of what I'm doing: def wrap_foo foo, &block data = capture(&block) content = " <div class=\"foo\" id=\"#{foo}\"> ...
4
votes
2answers
377 views

zend view helper with multiple methods?

class My_View_Helper_Gender extends Zend_View_Helper_Abstract { public function Gender() { // } } "The class method (Gender()) must be named identically to the concliding part of your ...
4
votes
2answers
404 views

Rails: Is it possible to write view helpers with HAML syntax?

During refactoring it would be quite handy just to copy part of HAML template and paste it to helper's code. Currently in such cases 1) I have to rewrite that part of view from scratch 2) I have to ...
4
votes
1answer
1k views

Zend Framework - Loading View Helpers from Modules

I am putting together a modular application in Zend Framework and am struggling to get module specific View Helpers to load. My directory structure is like this... application ---configs ...
4
votes
1answer
4k views

Zend Framework headMeta() - keywords not appending

I'm using Zend Framework 1.8. I have a problem with headMeta() duplicating my meta keywords. In my layout.phtml, I have <?php echo $this->headMeta(); ?> I have a Custom ...
4
votes
1answer
2k views

Removing parameters from URL when using Url view helper links

When using the Url view helper to build links, if the current page has parameters in the url, the url generated by the Url view helper will contains parameters as well. For instance in the page ...
3
votes
1answer
150 views

how to capture a block in a helper's child class?

I'm trying to do the following: module ApplicationHelper class PModuleHelper include ActionView::Helpers::TagHelper def heading(head = "", &block) content = block_given? ? ...
3
votes
2answers
1k views

How to call ApplicationController methods from ApplicationHelper

I want to provide csv links in a view and I placed the csv generating code in ApplicationHelper. However I'm getting this error: undefined method `send_data' for ...
3
votes
3answers
430 views

Howto register a custom view helper that is namespaced?

I have a Zend Framework application with a custom library which is namespaced (PHP 5.3). I want to register a view helpers but I'm unable to do this due the namespace I use in the view helper. ...
3
votes
1answer
1k views

Zend Framework Url View Helper adds “id” by default

I'm creating a simple CRUD for adding links to a category. Each category has an id. I have a view that lists all the links for a certain category. In that view I have a link to the add-form which is: ...
3
votes
3answers
2k views

How to mock request object for rspec helper tests?

I've a view helper method which generates a url by looking at request.domain and request.port_string. module ApplicationHelper def root_with_subdomain(subdomain) subdomain += ...
3
votes
1answer
1k views

How does headScript() view helper work?

I'm using Zend_View_Helper_HeadScript to add JavaScript code inside the <head> tag. $view->headScript()->appendScript($javascript); $view->headScript()->appendScript($javascript2); ...
2
votes
4answers
56 views

I want to create a method that will be available in all controllers, and views

i am making a ecommerce application in which the categories are visible in side bar on all pages. i wrote a method in application controller def categories @categories = Category.all end but how ...
2
votes
2answers
71 views

Get name of a Zend_Form_Element in FormErrors Helper

I have a MyNameSpace_View_Helper_FormErrors Class which extends the standard FormErrors Class and sets the HTML for the ErrorMessage itself. I have to give the errormessage container an id based on ...
2
votes
1answer
462 views

Append param to current URL with view helper in Zend

In my layout-script I wish to create a link, appending [?|&]lang=en to the current url, using the url view helper. So, I want this to happen: http://localhost/user/edit/1 => ...
2
votes
1answer
51 views

Have there been any efforts to port some of Rails' View Helpers to Javascript?

It would be great to have helpers like linkTo(), truncate(), and pluralize() in Javascript. Have there been any efforts to port some or all of Rails' view helpers to Javascript?
2
votes
2answers
160 views

Rails-style template helpers in Velocity

I need to add a number of really complex dynamic HTML structures to my Velocity template. If I were to attempt to write these directly in the template, it would be an absolute mess. Let me explain ...
2
votes
2answers
481 views

Converting Rails 3 to Rails 2: helpers with blocks

In Rails 3 I use the following helper in order to get a even-odd-coloured table: def bicolor_table(collection, classes = [], &block) string = "" even = 0 for item in collection string ...
2
votes
1answer
494 views

Function to display a DateTime string or an empty string

I tried to create a view helper which takes a DateTime object and returns a string. If the DateTime object equals a new DateTime(0), the function returns an empty string. Otherwise return a formatted ...
2
votes
2answers
1k views

Is it possible to load a Rails helper at run time?

I have a View that can vary significantly, depending on the 'mode' a particular user has chosen. I thought I would extract the different behavior into two different Helpers, and then have code like ...
1
vote
1answer
55 views

How do I use view helpers with ruby-ejs

I have a rails app that's using the ruby-ejs gem to compile js templates which I am then using in my backbone views. I would like to use some view helpers to create form elements, such as select ...
1
vote
1answer
44 views

Zend Layout for specific Actions

Is there a simple way of just enable a layout for the actions of a controller, instead of disabling it in all other actions of other controllers in Zend?
1
vote
3answers
46 views

Zend ViewHelper Sub Functions

I want to add more than one function to a ViewHelper. Usually there is one function named like the class and like the file name. How can I add several functions into one ViewHelper? E.g. like this: ...
1
vote
2answers
63 views

ZEND - Issue with download file (encoding, not able to open downloaded file)

I made a download form in my project, but problem is when i download the file and im trying to open it, Zend renderer is adding to it my layout html code... I read that i have to disable renderer and ...
1
vote
2answers
47 views

Is there a way to disable a view helper inside the controller/action?

I have my view helpers in the layout like: $this->viewSearchForm(); that is ok, in all the pages is show it, but what if a have two or tree page where i don't want to show that view helper? is ...
1
vote
2answers
21 views

Why is content_tag helper printing the “flash” contents in the browser?

To explain further, I have the following code in my Rails app Layout: <!-- Stuff omitted --> <% unless flash.empty? %> <%= flash.each do |name, msg| %> <%= content_tag ...
1
vote
3answers
39 views

Is it a good idea to leave helper :all in the applications_controller?

I am working for a company where I inherited their administration site. The guy before me didn't use view helpers much so 95% of the code in these helpers is mine. I just got bit by a problem where ...
1
vote
1answer
500 views

EJS in Express.js - Express Helpers not working - (app) in require

I'm using the EJS template engine with express.js and I want to use the view helpers. I found this on github: https://github.com/tanema/express-helpers, but when I try to use it I get this error: ...
1
vote
0answers
52 views

helper for all views in a namespace

Is there a way to create a view helper file that will be available to all views in a namespace? Like application_helper.rb, but only working for a given namespace. Specifically, I have a namespace ...
1
vote
2answers
129 views

Use a Rails helper in a model [closed]

Possible Duplicate: Access a view helper for a model in rails I know this is probably not something I should do often, but I want to use a helper within a model. I'm generating a ...
1
vote
1answer
135 views

Render from Helper yields “Missing Template” error

In my coupons view, I call a method in helpers/coupons_helper.rb, which in turn invokes a partial with the intent of returning it's output. But I receive a "Missing Template" error. Here is the ...
1
vote
1answer
355 views

Zend setHelperPath in Bootstrap

In Zend framework how could I use the setHelperPath method in my bootstrap.php file to make "My_View_Helper_Test" accessible to the framework (let's say the Helper absolute path is the constant ...
1
vote
0answers
182 views

spec view helper in gem

I'm writing a rails 3 railtie which defines some view helpers. Now I wonder how to spec the view helper methods because I cannot instantiate a module. I already searched and read a lot, but I just ...
1
vote
1answer
428 views

Ruby on Rails content_tag options hash - setting a boolean html attribute?

Boolean attributes, as defined in the html 5 draft specification: http://dev.w3.org/html5/spec/Overview.html#boolean-attributes The presence of a boolean attribute on an element represents the ...
1
vote
2answers
280 views

Reset all view helpers in Zend Framework

Is there a way to reset the state of all view helpers, for example remove all scripts added with headScript()? Scripts and meta tags added in one unit test are being seen by the following unit tests ...
1
vote
0answers
222 views

Ruby on Rails' “controller.helper” is missing, how to solve it?

If a project is running Rails 2.2.2, and it uses controller.helper and the helper is not defined, then how can it be solved? (this is for the Facebooker2 gem http://github.com/mmangino/facebooker2) ...
1
vote
3answers
904 views

Adding Zend View Helper to all views in application (in bootstrap)

I am using Zend Framework 1.6 hence I'm not utilizing Zend_Application. I have a simple, normal View Helper (extending Zend_View_Helper_Abstract). It works perfectly fine as long as I add it to the ...
1
vote
7answers
370 views

Is it better to set variable in the view or the controller in Zend Framework?

My question needs a bit of setup, so please bear with me: I became a convert to using View Helpers for getting data from a model rather than sprinkling it all over the controllers (hat tip to Eric ...
0
votes
1answer
24 views

How to show link html code with html tags inside it?

let's say I have this: link_to "Profile", profile_path(@profile) # => <a href="/profiles/1">Profile</a> But if I need only the href link like <a ...
0
votes
0answers
20 views

Rails 3.1: Better way to expose an engine's helper within the client app

I have found a few article addressing the issue of helpers within an engine not being accessible to the consuming (parent) application. To make sure we are all on the same page, let's say we have ...
0
votes
2answers
70 views

use TempData in a Helper error: The name 'TempData' does not exist in the current context

I would like to access the TempData in my helper for a flash message (like in ruby) I get a runtime error of The name 'TempData' does not exist in the current context my Flash.cshtml is as ...
0
votes
1answer
57 views

Get rails view helper methods inside coffeescript

I have a view helper, let say (for simplicity's sake) def call_alert return "alert 'this should appear'" end Then I have a coffeescript file some_test_page.js.coffee which renders for an action ...
0
votes
2answers
53 views

Zend Framework: Pass by reference to view helper not working

Here is a simple view helper (notice the pass-by-reference argument): class Zend_View_Helper_MyViewHelper extends Zend_View_Helper_Abstract { public function MyViewHelper(&$array) { ...
0
votes
1answer
28 views

Unfound image in View_Helper cause multiple db query in another View_Helper

Very nasty problem, I made a very long investigation to find out what was the origin of the bug. I made an original post for this, but I deleted it to create a new fresh post. So let's start by the ...
0
votes
2answers
192 views

Rails 3 : Write a view helper for popovers

I am new to rails and in my current project I'm using Bootstrap from Twitter. Bootstrap's popover are beautiful and I plan to use them extensively so I want to write a view helper for popover. Here ...
0
votes
1answer
43 views

Global helper for Zend module-structure

My files look like this: /Zend /Application /Configs /Modules /home /controllers /views /login /controllerS /forms ...
0
votes
1answer
25 views

Model helper in rails and render in the view

I want to write some method in model helper and render in my view. My Product model has price column. In the view I want to be able to write @product.tier_one_quantity_one for example. How to write ...

1 2