The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

call a view helper inside a plug in using zend

I am trying to call a view of helper from a plug in(registered in bootstrap). From any controller i am able to access without any issue but not from a plugin. Below is my code. Any help is ...
1
vote
1answer
10 views

CakePHP 1.3 : View helper “DateFormat” not displayed

I want to display 3 simple selectboxes for "year","month","day" in cakePHP 1.3. <?php echo $form->input( 'trial_start', array( 'div'=>null, ...
3
votes
2answers
57 views

ruby sort an array alphabetically,unique and loop though 5 times

I am retrieving elements from an array: - member_results.each do |member| = member It returns something like this: ["John", "Jason", "Andy", "Zee", "Sandy", "Randy", "Grisham"] I need to ...
0
votes
1answer
23 views

getView() returns NULL in zend framework 2 Custom Form View Helper

Trying to get the view object from a view helper so I can render a certain partial. but All I get is NULL here is the code namespace App\Form\View\Helper; use Zend\Form\View\Helper\AbstractHelper; ...
0
votes
2answers
29 views

TYPO3: use fluid's date view helper inline as argument for translate view helper

I am currently developing some extensions to use within TYPO3 6. In one view I have database records with date fields. I can output the date values with the following: <f:format.date ...
0
votes
1answer
29 views

Why Zend_View_Helper_Url returns relative path when using the default route and absolute path when using a custom route?

I have an application running on Zend Framework 1.12 and I am using the URL view helper. I also have a few custom routes which I use with the URL helper to clean the code. When I use a format such as ...
0
votes
0answers
22 views

Testing Pagination Methods and Helpers

Ok, I have some objects (which really don't matter here), and I added \ pagination methods and heplers. Now I want to test how it looks, and how it works. The problem is what I want to check out it ...
0
votes
1answer
48 views

How do I use shared view script paths for partials in Zend Framework 2?

I'm using Zend Framework 2 (v2.1.4) and I have a partials template that I want to use in several Modules. According to the documentation I can access partials in other Modules, but That said, it’s ...
0
votes
0answers
30 views

How to Include Rails views helper in Capybara steps

I have a step definition: Then(/^I should see the total price of the products$/) do # assumes all existing products are in the cart total = Product.find(:all).inject { |sum, p| sum + p.price } ...
0
votes
2answers
156 views

How to use a custom form view helper in Zend Framework 2?

I wrote a form view helper, that extends the Zend\Form\View\Helper\FormMultiCheckbox and overwrites its renderOptions(...) method: <?php namespace MyNamespace\Form\View\Helper; use ...
0
votes
1answer
66 views

How to call a custom service on the service locator object from Module#getViewHelperConfig() in Zend Framewok 2?

I have a ViewHelper and want to initialize it in Module#getViewHelperConfig(): <?php namespace Search; use statements... class Module implements ConfigProviderInterface, ...
1
vote
1answer
35 views

How to use ActionView::Helpers::NumberHelpers “number_with_delimeter” in script

I'm writing a script for my rails application and I'm trying to format the numbers with delimeters so they're easier to read. But I have a problem in calling the number_with_delimeter method from ...
0
votes
1answer
31 views

Using the same view for multiple models

I have a "section" model and a "page" model with relative controllers and would like both to render the same view. I'm trying to get the category whether I'm rendering a page or a section. In page, ...
0
votes
0answers
23 views

Do I need multiple Views for multiple ViewHelpers?

In my application I have one View class. It gets instantiated and injected into a controller which does something like $this->view->load('sometemplate') and then outside the controller at a ...
0
votes
0answers
28 views

Rails: Accessing models in helpers - right or wrong?

My colleague has written a lot of code where models are accessed from view helpers. Is it a good or bad practice? P.S. I know that similar question exists somewhere on Stackoverflow - Google finds ...
0
votes
1answer
66 views

Why does the application work this way?

variables from controller do not appear in a view and view-helpers do not work: for example I define a variable in controller: $this->view->title = "Title"; and print it in a view: echo ...
0
votes
1answer
85 views

Access Model from View Helper in Zend Framework 2

i am trying to access my configured model from an custom view helper to fill in some global inputfields in my application. Is there a way to fetch objects from that model from the view helper which i ...
1
vote
1answer
263 views

ZF2 register custom helper for navigation

i am using zend navigation with ACL ... my users can have multiple roles ( these roles have no relation to each other ) but navigation only accepts 1 role and checks the ACL with that role witch is ...
0
votes
2answers
149 views

ZF2 debugging custom view helper

I a Zend Framework 2 custom view helper I use: $uri = $this->view->vars()->mainMenu->findById('h'); The mainMenu property is a Zend\Navigation\Navigation object. The result is that ...
1
vote
1answer
54 views

Access RouteMatch-Object in ViewHelper

In my Project, i created a ViewHelper, to display a form on every Page. If the user submit the form the Post information always posted to the same controller. After the Controller handles the post, ...
0
votes
1answer
56 views

Routes stopped working when upgrading Rails 3.0 to 3.1

I am using Ruby 1.8.7 with Rails 3.1. My application worked fine in Rails 3.0 but when I bumped it up to Rails 3.1.4, all my url helpers broke! After Googling like a mad man the past 2 days, I have ...
0
votes
1answer
44 views

PHP connecting with SQL and displaying data

HI, All I have created (copied) a website that can view the information inside my database. But the code i have, displays every single bot as well as members. I am connecting it to local host and ...
0
votes
2answers
127 views

helper method to check if a record is owned by the current user in rails

i'm bulding a rails 3 app, i'm using devise for manage the auth logics but i was wonder if there is a helper method to check if the current user owns an object (a record into db) that has an ...
0
votes
1answer
69 views

Custom View Helpers are not Getting Loaded on Server

I have some custom form elements that use custom view helpers in my Zend Framework project. They get loaded and work properly on development machine but when I move the project over to my EC2 server ...
0
votes
2answers
110 views

ASP.NET MVC form without HTML Helpers

I write ASP.NET MVC application and I found out for me an interesting thing. When I use in View: @using (Html.BeginForm("Login", "Home", FormMethod.Post)) a method Login of class HomeController is ...
0
votes
2answers
171 views

noMethodError - undefined method. When using method from application_helper.rb

I receive a noMethodError when attempting to utilize a method in my application_helper file. It looks like the helper method itself is fine, but the code inside the helper method is whats triggering ...
0
votes
1answer
106 views

collection_select NoMethodError - noticed after switching to rails 3.2.11

After updating to rails 3.2.11, I noticed a problem with a search form in my app. After seeing the "We're sorry, but something went wrong." message on Heroku, I checked the logs and noticed the error ...
0
votes
1answer
353 views

ZF2 use database table model in view helper

To show an database count in my layout.phtml I want to use the view helper to render ths count (set in an db field). How do I use my database model in a view helper? Helper; namespace ...
0
votes
2answers
111 views

Rails, collection_select and Proc

I have a list of states from a country, and I would like to display them a on a <select>. Since I am trying to show an icon that represents the flag of each state, I am using this JQuery plugin. ...
0
votes
1answer
26 views

link_to Helper Modifications

Inside of a rails app that I am working, I modified the link_to helper slightly: def link_to(*args, &block) args[1] = params[:client_id].present? ? ...
0
votes
1answer
125 views

Using Zend view helper from admin module with default module layout

I have a view helper being called in my layout that works fine in the default module, but I get an exception when I am in another module. I have already changed my app.ini to use the default layout ...
2
votes
2answers
143 views

Accessing router in ViewHelper to match routes or child_routes

I am encountering a problem for which i have no understanding of the function of the framework currently. I want to set up a ViewHelper that returns an output depending on which site i am on. If i ...
2
votes
1answer
91 views

Emberjs:what's the context the classBinding on {{#view}} helper use?

The doc's example implies that the context is the instance of a View without a controller. But I can't try this out with latest version, please check this jsfiddle's link.
0
votes
2answers
56 views

Access to methods class in views

I have class that generate some js. Where i should put this class and how call methods from it in views? class Hits @@config = Settings.statistic class << self def js_counter ...
0
votes
1answer
719 views

Zend Framework 2 - How to include partial from library

I wrote a partial which I want to use in several modules. I thought the best way would be to put it into my custom library. But unfortunately I couldn't figure out a way to include this partial ...
1
vote
1answer
83 views

How to escape html in Phalcon\Mvc\View

I found that view variables in phalcon could be escaped by Phalcon\Escaper: http://docs.phalconphp.com/en/latest/api/Phalcon_Escaper.html For example, in Zend, there is a way to call view helpers ...
0
votes
1answer
357 views

register view helper path in ZF2

I am migrating from Zend Framework 1.12 to 2.0. So far I have learned how to register individual custom view helpers. Is it also possible to register a path for (multiple) view helpers? In ZF1 I ...
0
votes
2answers
56 views

SyntaxError on nested tag helper method

So I'm writing a helper to help me fill out the carousel of bootstrap for Rails. This is the piece of code of the helper method: def carousel_item(element, active = false) content_tag ...
0
votes
1answer
150 views

Generate a hour:minute select list

Is there a way to generate something like the following markup: <select> <option value="0000">00:00</option> <option value="0030">00:30</option> <option ...
0
votes
1answer
42 views

rails helper recursive block strange behaviour

Following code should accept nested code and yield in 'li' tag def sidebar_link(text,link, color = nil) recognized = Rails.application.routes.recognize_path(link) output = "" content_tag(:li, ...
1
vote
2answers
133 views

PaginatorHelper is not checking the page number

I have a problem with the Cakephp2.3 paginator helper. In the 1.3 version, the paginate method was checking if the passed page param has a correct value. Now, it's not working anymore. For example, ...
2
votes
4answers
491 views

Where to put Ruby helper methods for Rails controllers?

I have some Ruby methods certain (or all) controllers need. I tried putting them in /app/helpers/application_helper.rb. I've used that for methods to be used in views. But controllers don't see those ...
1
vote
1answer
74 views

How to properly handle custom helper methods in a 'shared' folder?

I am using Ruby on Rails 3.2.2 and I would like to organize and share custom helper-view methods as-like I made for my view files. That is, in my app/views directory I have a shared folder where I put ...
0
votes
1answer
43 views

Zend View Helper isolated by module

I'm using the standard MVC with modules. I have 2 view helper classes that are autoloaded in the config using resources... resources.view.helperPath.Module1_View_Helper = "module1/views/helpers/" ...
2
votes
2answers
924 views

ZF2 Breadcrumbs Helper - How to render it as an unordered list?

I'm new to Zend Framework2 and I´m asking for advice for the following situation: I´m using the ZF2 Breadcrumbs Helper to create breadcrums on my project and this code: //breadcrumbs.phtml echo ...
0
votes
1answer
533 views

zend framework 2 captcha helper view render inline

I am try render the captcha element using formCaptcha Helper View how follows: $this->formElementErrors() ->setMessageOpenFormat('<br><span class="error-message">') ...
0
votes
1answer
184 views

Zend Framework View Helper not available in module when using layout

I'm starting to work with zend framework 1.12 and I ran into a little problem which I don't seem to be able to fix. Up untill now i've done everything in the application, but now I want to build a ...
0
votes
0answers
61 views

Qt Assistant doesn't show my changes. What am i missing?

I am developing a Qt application and using the Qt Help Framework. I followed the example here and worked it successfully. Now, I am changing the html files, only the inside the html files not their ...
2
votes
2answers
258 views

Rails :confirm modifier callback?

I want to call a javascript function that will be conditional upon a user's response to the confirm box. For example, I have the following anchor: <%= link_to 'Sign Out', destroy_session_path, ...
0
votes
1answer
120 views

How to make a for (i=0; i<n; i++) with EmberJs/Handlebars? [duplicate]

Possible Duplicate: Custom for-loop helper for EmberJS/HandlebarsJS I use Handlebars for a website and I have an important question : Sometimes you give to your template a full array and ...

1 2 3 4