Additional functionality not defined in a class that the helper operates on.
0
votes
1answer
7 views
Capybara 2.0 and rspec-rails — helpers don't work in spec/features
I'm trying to use a method from a helper module, but rspec doesn't seem to recognize helpers for tests under spec/features. Note that the only change to spec_helper.rb was adding require ...
1
vote
0answers
6 views
ServiceStack using @helper functions to share functionality between views
I have attempted to use the @helper syntax to create helper functions that can be shared between my views.
Mostly I have followed this tutorial ...
-3
votes
0answers
18 views
Private Helper Methods [closed]
I have an assignment for uni that was split up in 7 stages. I did the first 4 stages by myself, but now I'm on the 5th stage, which is supposed to be easy, but I'm stuck and can't figure it out, I've ...
0
votes
1answer
39 views
How to call helper methode through select_tag
I am trying to call helper methode from select_tag. I did like this :
<%= select_tag(:themes, options_for_select({"Black" => "compiled/styles", "Green" => "compiled/styles2"})) %>
When ...
-6
votes
0answers
102 views
Why my program is time exceed?
I post this question before i know you don't understand it, but without help a make finally the program from this problem: Given a number n (n<=10^12) print all its prime factors in strictly ...
-2
votes
0answers
28 views
Facebook page name change anyone over 200 likes [closed]
I run a facebook page and the name needs tweeked.... The issue is we have over 200 likes so facebook wont let us, can i get a developer to change it for me.... The page is save falconer museum and it ...
0
votes
1answer
37 views
Access action-helper inside front-controller plugin
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 ...
-4
votes
0answers
17 views
hi my photo tags is not working after alot of work [closed]
I uploaded 99 photos to a new album of mine. i tagged alot of people and it took me alot of time. after that i uploaded more 5 photos and tagged them too. but each people who i tagged in the 99 photos ...
0
votes
1answer
27 views
Rails: Date select helper without dropdown
is there an easy way in ruby on rails to enter a date/time without dropdowns. I know there is the datetime_select helper method, but this just produces drop down menues which are not really nice to ...
0
votes
1answer
12 views
How to use a digest-aware asset for default_url in rails4?
In rails 3, to use an asset from the pipeline as the default_url in carrierwave's uploader, you did something like the following:
class MyUploader
# Include the Sprockets helpers for Rails 3.1+ ...
0
votes
2answers
29 views
Magento Admin Helper_Data not found
I've installed an extension by BrandAmmo named ProNav. I went to clear the cache and it gave me this error in the admin,
Fatal error: Class **Brandammo_Pronav_Helper_Data' not found in
...
0
votes
0answers
20 views
Java- Numerical method for integrating normal distribution?
Code:
(Yes, I'm aware its inefficient and generally quite bad. Just wonderint why it doesnt work.) Maths may be wrong, but most likely the coding is. Any help would be nice.
public class ...
0
votes
1answer
27 views
Rails f.check_box set checked/unchecked values
so I got a form helper in rails with a checkbox;
I want that checkbox to have values as "thatvalue" or "thisvalue" when checked or unchecked;
I haven't found anywhere how to set this up with
...
0
votes
1answer
26 views
Trying to create a new form helper to add a class onto a text field, but it doesn't seem to be adding that class on?
Here's the helper:
module FormHelper
def phone_number_tag *args
args.each do |e|
if e.is_a? Hash and e.has_key? :class
e[:class] = e[:class] + " phone_number"
elsif e.is_a? ...
0
votes
1answer
11 views
Custom helper with input validation in Codeigniter
My idea:
Create a custom helper which could be loaded when checking a input
field for min length.
Creating it as a helper so it could be re-used in different files
and keeping it organized and ...
0
votes
1answer
31 views
creating a helper method to remove http or https from the beginning of a url in rails
I'm accepting user input in the form of web links, e.g.: http://google.com
In my database I don't want to store the http:// prefix, or https://. I was going to do a string search at the beginning of ...
-1
votes
1answer
32 views
Play framework 2 tag compilation error
I am new to Play framework 2 and I am trying to implement a simple tag supported by a Java class.
But I can not get working because I am getting a compilation error
compilation error on the browser
...
0
votes
0answers
6 views
Reading a File From a Non-Activity Class
So, I have a setup almost identical to this one in an activity class and everything works. In this non-activity class (CardReader), the code does not work and the game crashes when loading the ...
0
votes
1answer
24 views
(PartialView) The model item passed into the dictionary is of type 'Customer', but this dictionary requires a model item of type 'UserProfile'
@model Customer
@Html.Partial("_UserProfile", (UserProfile)Model.UserProfile)
When i run this code, i get this error:
The model item passed into the dictionary is of type 'Customer', but this ...
-1
votes
0answers
12 views
Fancybox2 helper buttons custom position
I want the button helper inside the wrapper. I appended a .fancybox skin in the .js file--it appeared inside the wrapper, but when you click next or prev buttons the helper disappears; because of the ...
0
votes
1answer
19 views
Is there a PHP equvalent of Objective-C Categories?
For the short period of time I subjected myself to Objective-C, I swore a lot, but one thing I thought was fabulous was categories.
I could add a method to the NSString object as a category, and it ...
0
votes
1answer
22 views
Easy method of including a timestamp (mtime) style/js versioning?
In Kohana, is there a quick and easy way to use the HTML::style() helper to automatically include a UNIX timestamp mtime of a file after the CSS or JS file name in the case of a script?
In CakePHP, I ...
1
vote
3answers
51 views
How to get Enum object by value in C#?
I recently encountered a case when I needed to get an Enum object by value (to be saved via EF CodeFirst), and here is my Enum:
public enum ShipmentStatus {
New = 0,
Shipped = 1,
Canceled = 2
}
...
0
votes
0answers
30 views
Zend Framework Custom Action Helper fails
I am trying to create a custom Action Helper in ZF. I have read the docs, and googled for help, but I can't get this working.
Here's relevant code from Bootstrap.php (including everything I've tried ...
2
votes
1answer
48 views
Codeigniter Download Helper corrupts .7z and .rar files help or alternative solutions?
I am using Codeigniter's Download helper for "easy" downloading.
$this->load->helper('download');
$file = //get_file_name_from_db
$data = file_get_contents( upload_path . $file);
...
0
votes
2answers
39 views
Custom Helper Converter in C# .NET
Lets assume I have 3 classes A, B and C.
All classes belong to different assemblies, for example:
Class A belongs to assembly ASSEMBLY_A,
Class B belongs to assembly ASSEMBLY_B,
Class C belongs to ...
0
votes
1answer
32 views
Attach helpers to Jade when running client side (in browser)
I have made a single page app powered by node js (Express) with a mongo db. I have used jade for templating and have some templates rendered in the browser. The templates render fine except I am ...
2
votes
2answers
69 views
Global variable in codeigniter helper
im writing a recursive function that finds the children of an array if it has. now i want to know the level that an array enters finding its child. for an eg
Array
(
[0] => stdClass Object
(
...
0
votes
2answers
40 views
using hashes like objects in rails
i think i saw once a nice solution in a rails project. this solution was built in rails i think.
what i want to get is an hashlike object, that does something like this:
jar = Jar.new #no defined ...
0
votes
1answer
31 views
CodeIgniter Directory Helper Show Only Folders
The Directory Helper - directory_map lists out folders and files in an array. Which is great but not exactly what I want. Is there a way to list out only the folders? And skip over the files?
0
votes
2answers
50 views
Using a Helper in a Vendor - CakePHP
In my CakePHP app, I am defining a Wizard vendor that outputs the HTML for a multistep Wizard type plugin, along with its relevant Javascript code. I'm wanting to use the JsHelper so that I can buffer ...
1
vote
3answers
51 views
After Created in Ruby on Rails
In controller my code is
query = "insert into users (name, email,updated_at) values (#{name},#{email},now()) ON DUPLICATE KEY UPDATE updated_at=now()"
User.connection.execute(query)
and in ...
0
votes
2answers
30 views
Move model method to helper
I have 3 models with the same method. To stay DRY I'd like to move these to helper method but not sure how to make it global but still receive from model.
Currently I have format_slug in 3 models.
...
1
vote
2answers
22 views
Zend Framework use mulitple method in a View helper
I was wondering if that was possible to use mulitple function with a View Helper? Let's say I have this view helper :
class Zend_View_Helper_Time extends Zend_View_Helper_Abstract {
public ...
0
votes
2answers
38 views
Undefined offset in own helper codeigniter [closed]
I want to concatenate characters "/\b" in front of array value $stopwords, and concatenate characters "\b/i" in the back.
My helper
function addRegex_SW($arrayIn = array()){
$arrayOut = ...
0
votes
1answer
39 views
How to include routing in ApplicationHelper Spec when running trough Spork?
I have an rspec spec:
require "spec_helper"
describe ApplicationHelper do
describe "#link_to_cart" do
it 'should be a link to the cart' do
helper.link_to_cart.should match ...
0
votes
0answers
13 views
Add gravatar using session in cshtml file
Add gravatar using session in .net using Microsoft web helper.
How can i get the gravatar of the user email entered automatically when the user login. When i use this below line it doesn't take ...
0
votes
0answers
30 views
Changing the content of links
Looking helper(ruby on rails) that will change will change all the links in the text to clickable links.
or
www.foo.com?ADADADADADADADADADADA turn on <a ...
1
vote
2answers
69 views
Rails PostgreSQL array can't iterate
I wrote a helper method for my controller to iterate through an attribute, being represented as an array using PostgreSQL.
def format_cf array
nums = ""
array.each { |c| nums += "#{c}, " }
...
-2
votes
1answer
17 views
Xcode project error
I can not give much information, put when I play the project, it pauses. Please follow the following link to see the project on GitHub: https://github.com/ollie5511/Xcode-Game.git
9
votes
6answers
607 views
Java - is it bad practice not to have a class constructor?
I want to make a helper class that deals with formatting (i.e. has methods to remove punctuation and convert between types, as well as reformatting names etc.). This doesn't seem like it will need any ...
0
votes
1answer
78 views
deeply nested content_tag, concat and rails 3
I'm frustrated using Rails 3.2 and making a helper for Bootstrap modals. I don't understand when you need concat versus when you don't sometimes I end up with tags missing and sometimes I end up with ...
0
votes
2answers
50 views
Can CodeIgniter Helper Functions use database functions?
One of my CodeIgniter Controller functions needs to call a recursive function as part of its functionality. The function call chokes if I put it inside the controller class, and it can't access ...
0
votes
2answers
53 views
Saving to another Model database, with current Form record ID - Rails
I'm trying to get the text from a text_area field in a form to save to a database in a different Model with the current Model's ID.
Currently, this works but only will save integers. If I put text ...
0
votes
0answers
13 views
Methods in Basepage Inheriting Web.UI vs Methods in HelperClasses
I am working in ASP .net webforms application. In my project they are using methods like IsPaymentDateGreaterThanDueDate(paymentDate, dueDate) in the BasePage.cs. I would recommend them to be used in ...
0
votes
1answer
53 views
The best way to collect all Yii model validation errors
Is there any inline method to collect all validation errors?
Now I'm doing this:
$errors = '';
foreach($model->attributeNames() as $attr)
{
$errors .= $model->hasErrors($attr) ? ...
1
vote
1answer
53 views
Rails: DRYer way to create haml layout
I'm new to rails and have been working on this for hours. I have finally gotten it to work but I feel like my solution is a bit hacky and not at all DRY.
I have a layout that requires a new div for ...
0
votes
2answers
54 views
Generate random resource ID's with prefix?
I have a simple Rails 3 invoicing application with the following models:
Brand
Client
Invoice
A brand has many invoices, clients have many invoices and invoices belong to clients and brands. ...
0
votes
1answer
14 views
Adding percentage to a value using a helper?
I have the following existing helper in my Invoice model of my Rails application:
def total_price
line_items.to_a.sum(&:full_price)
end
What I would like to do is have an additional helper ...
0
votes
1answer
172 views
cakephp get element value js helper
I am beginner to CakePHP and tried searching this question but no any gold.
I have a select button and when user select an option I have to fire a event and pass the selected value to the controller's ...



