Tagged Questions
The helper tag has no wiki summary.
14
votes
6answers
771 views
Is the word “Helper” in a class name a code smell?
We seems to be abstracting a lot of logic way from web pages and creating "helper" classes. Sadly, these classes are all sounding the same, e.g
ADHelper, (Active Directory)
AuthenicationHelper,
...
13
votes
3answers
3k views
A good library to do URL manipulation in Java
I need to do a few very simple URL manipulations in Java. Like get the value for a parameter in the query, or update it, ... I was expecting to find a simple utility class doing that in the ...
11
votes
6answers
2k views
When to use Helpers instead of Partials
In a rails application, in which situation would you use a partial and when would you use a helper? I find both very similar, since they represent markup fragments.
Is there a convention around this? ...
11
votes
8answers
2k views
What are good uses for class helpers?
Delphi (and probably a lot of other languages) has class helpers. These provide a way to add extra methods to an existing class. Without making a subclass.
So, what are good uses for class helpers?
9
votes
2answers
2k views
In Rails, what exactly do helper and helper_method do?
I was able to find some docs in apidoc.com but can't tell what exactly helper does.
helper_method seems more straight forward: to make some or all of the controller's methods available for use to the ...
9
votes
6answers
839 views
Organizing c# project helper or utility classes
Whats are some best practices for where you should have helper classes in a .NET project? Referring to classes separate from business layer stuff, but presentation and app stuff like appsetting config ...
7
votes
2answers
84 views
JavaScript object creation
JavaScript newbie here, I was going through some js code at work when i came across a helper function for object creation, which went like this
createElement = function(name, data){
if(name == ...
7
votes
2answers
662 views
What is the best way to return multiple tags from a Rails Helper?
I want to create a hidden field and create a link in one helper and then output both to my erb.
<%= my_cool_helper "something", form %>
Should out put the results of
link_to "something", ...
6
votes
1answer
353 views
Make a custom helper available to both Mailer and View in Rails 3.1
is this the best way to make a helper available to both Mailer and view in Rails 3.1?
class EventMailer < ActionMailer::Base
include MailerHelper
helper :mailer
I tried
helper :mailer
on ...
6
votes
3answers
704 views
Best way to handle view and helper-only constants in Rails
I have a constant that is only used in views, but it's used in different ways in different places. It's an array of option names, and is used for select boxes, but I also use this in other views to ...
6
votes
2answers
1k views
Rails: Refactoring, views, helpers: how does it all go together?
Warning: Noob here.
I know this is a trivial subject but I'm having a lot of difficulty in figuring out how exactly I can simplify my views by moving parts of them into helpers. For example, I've ...
5
votes
2answers
340 views
Create a simple Rails 3 text helper Gem
I've been working on my first Rails 3 plugin, to package up a simple helper function that I like having in the ApplicationHelper of all my apps. You can see the whole code on Github.
Here's my first ...
5
votes
1answer
1k views
Creating a custom JSON response object with Zend Action Helper ContextSwitch
I normally append an encoded json object to the response body, however I now have a situation that warrants using the ContextSwitch action helper.
I have a Zend_Form that requires three different ...
5
votes
2answers
1k views
How do I use UrlHelper from within a Razor helper?
I'm trying to create a Razor helper like this:
@helper Render(IEnumerable<MyItem> items) {
<ul>
@foreach (var item in items) {
<li><a ...
5
votes
9answers
255 views
What is a more elegant solution to these nested if/elseif statements?
I'm building a website that contains users with user profiles. Many of the fields in the profile are optional.
There is an opportunity for a lot of user-generated content, and so I need to display ...
5
votes
10answers
283 views
Searching for known Team Development helper tools
My team is small, only two programmers.We both share one source ,but we live in different places.The problem is that Meanwhile I make changes on our project,the other team worker makes changes as ...
5
votes
9answers
8k views
“undefined method” when calling helper method from controller in Rails
Does anyone know why I get
undefined method `my_method' for #<MyController:0x1043a7410>
when I call my_method("string") from within my ApplicationController subclass? My controller looks like
...
4
votes
2answers
194 views
Why does my recursive method from helper not return every value?
I want to display a tree of categories managed with the gem ancestry.
I would like to use a helper which will recursively go through the tree and return the categories one by one, for the moment ...
4
votes
2answers
421 views
Rails truncate helper with link as omit text
I'm quite long description that I want to truncate using truncate helper.
So i'm using the:
truncate article.description, :length => 200, :omission => ' ...'
The problem is that I want to ...
4
votes
1answer
470 views
Rails url helper not encoding ampersands
So I'm trying to use a Rails URL helper (page_url) to create URLs that contain special characters, including ampersands. Most cases work like you'd expect them to:
(rdb:1) page_url('foo', :host ...
4
votes
2answers
451 views
Using sanitize within a Rails controller
I'm trying to call sanitize within a controller. Here's what I tried:
class FooController < ApplicationController
include ActionView::Helpers::SanitizeHelper
# ...
end
However, I'm getting ...
4
votes
2answers
740 views
read web.config from another assembly using t4
Does anyone have a good example or helper class that would allow me to read the connection string in a web application from a T4 template residing in ANOTHER assembly referenced by the web ...
4
votes
4answers
1k views
Decent Visual SQL query Builder
I am a code developer, not a DBA, and I tend to get lost with loooong SQL queries, when I use many joins (10 joins is pretty common for me).
I would like to find a Visual SQL Query Builder (free if ...
4
votes
1answer
9k views
How does Url.Action work Asp.net MVC?
This is somewhat related to another question i've asked but i figure why not ask it seperately.
If i were to place something like the following in aview
<td><img src='<%= Url.Action( ...
4
votes
2answers
3k views
rails: fields_for select
In a view that I have, I am using fields_for to display form data for a relational table. However, part of this form will have select lists to choose from. I see there are label, text_field, ...
4
votes
2answers
350 views
How do I create a helper with block?
I want to make a helper like the following.
def my_div some_options, &block
# How do I print the result of the block?
end
Sam
4
votes
2answers
339 views
(Ruby, Rails, Javascript) Drag and Drop without bugging the server…?
Is there an equivalent of "link_to_function" (instead of ":action") when using "draggable_element"? Basically I need to drag and drop some items and have it reflected locally without contacting the ...
4
votes
3answers
647 views
Active Directory Helper Class
Is there a Active Directory Helper Class available somewhere? Just checking before I re-invent the wheel.
I need to
Validate a user in AD.
Get hhis/her member roles.
Thanks
4
votes
3answers
1k views
How to use PHP inside JS files (with Symfony)?
I found this:
http://www.symfony-zone.com/wordpress/2008/12/13/use-routing-to-server-localized-and-dynamic-javascript/
But I saw that it has already been built into Symfony with the ...
3
votes
2answers
77 views
Help! My application_helper.rb is getting unwieldily
My application_helper.rb is getting pretty big. In my defense, it contains only HTML-generating methods, and none of those methods perform any sort of business logic. None of the methods are specific ...
3
votes
2answers
80 views
Combining multiple controllers on one page, without loading controllers from a controller
I'm trying to create a page that displays certain widgets/includes dependent on the users permissions. I'm quite new to CodeIgniter and MVC.
Example.
I have a calendar. This has a controller, model ...
3
votes
3answers
229 views
Delphi 7 prescience of class helpers
Today I happened to compile, using Delphi 7, a code with a class definition like this
type TAudioStream = class helper of TStream;
and, to my astonishment, the compiler spits
"System unit out of ...
3
votes
1answer
174 views
How can I create custom route helpers for usage in routes.rb
I have a few reoccurring patterns in my routes.rb and I would like to make it DRY by creating a method that creates those routes for me.
An example of what I want to accomplish can be seen in the ...
3
votes
1answer
129 views
How to catch exceptions in an action helper?
When I throw an exception(e.g throw new Zend_Exception('You are not allowed',403);) in Action Helper, ErrorHandler won't catch it. I got Fatal error: Uncaught exception 'Zend_Exception' with message ...
3
votes
2answers
301 views
Visual Editor for DataAnnotations ASP.NET MVC?
I am writing DataAnnotations for my models in my MVC program. After doing pretty much the same thing for the third model, I can't help but wonder is there an easier way to do this?
...
3
votes
1answer
473 views
jQuery Sortable: helper option
I have 2 sortable lists, let's say "modules" and "available-modules"
$(".available-modules").sortable({
// helper: 'clone'
// or
helper: function(e, elt) {
return elt.clone(true);
...
3
votes
4answers
124 views
Framework helpers, what are they for?
I began looking at some frameworks. Particularly Code Igniter fascinated me. But searching trough the folders I found out system/helpers that contains 21 PHP files. Inside these files we find ...
3
votes
1answer
928 views
rspec2: Fake params and request.headers for helpers
I've got an Rails 3 helper, which returns code depending on the params and request.headers. I've tried to mock them, but didn't succeed. My latest try:
require 'spec_helper'
describe ...
3
votes
1answer
2k views
How to test ApplicationController method defined also as a helper method?
In my ApplicationController I have a method defined as a helper method:
helper_method :some_method_here
How do I test ApplicationController in RSpec at all?
How do I include/call this helper method ...
3
votes
1answer
140 views
How do I use the `--helper` flag in a rails 3 controller generator?
The documentation from rails generate controller says:
[--helper] # Indicates when to generate helper
# Default: true
Now, it doesn't specify how to ...
3
votes
2answers
529 views
Model Helper Zend
from what i know there is only action helper & view helper available at zend framework.
is there any model helper?
or how we can implement the model helper?
3
votes
2answers
485 views
Why use CakePhp AJAX helper instead of jQuery?
I'm just starting using cakePHP and I saw on that there was an AJAX Helper in it.
My question is simple : should I rather use this helper or should I keep doing AJAX with jQuery? Are there any ...
3
votes
1answer
146 views
How to make HTML Helpers that supports generic type?
public static class EmptyOrNullHelper
public static string EmptyOrNull(this HtmlHelper helper, IQueryable(T) type)
{
//Code
}
}
3
votes
5answers
826 views
Getting property of zend view using a helper called in the layout script
I've written a helper in order to make my main nav. Part of this helper checks if there is a user logged in by checking if a user has been assigned to the view
if($this->view->user)
{
//do ...
3
votes
1answer
293 views
output_buffer is null on helper spec
I am trying to test the html block method inside the rails helper:
def dashboard_widget(header, &proc)
concat('<div class="dashboard-widget">')
etc
end
The code works perfectly in the ...
3
votes
2answers
1k views
3
votes
1answer
287 views
How to Write JQuery in Helper on Rails
How do I write jQuery code within a Helper function in Rails?
3
votes
4answers
2k views
Looking for DependencyProperty.Register shortcut
Defining WPF properties is too long:
public static readonly DependencyProperty FooProperty =
DependencyProperty.Register("Foo", typeof(string), typeof(FooClass), new PropertyMetadata("Foooooo"));
...
3
votes
1answer
193 views
How do I test that a Rails Helper defines a method?
I am creating a Rails plugin and it is dynamically adding a method to a Helper. I just want to ensure that the method is added. How can I see if the Helper responds to the method name?
2
votes
2answers
45 views
What is the best way to check if a specific plugin is installed and enabled from a helper class?
My helper class has a plugin-dependecy and I'd like to double check if that plugin is installed and enabled, what is the best way to accomplish this?
I have tried using ...