The helpers tag has no wiki summary.
-7
votes
0answers
43 views
Why my program has time limit exceeded? [closed]
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 ...
4
votes
2answers
102 views
How do we cheat Windows Help System from Delphi Form to execute our own form?
In the TForm we have the HelpFile, HelpType and HelpKeyword properties. We set the file and keyword. when we press F1 the magic comes. Everybody knows it.
But what if we want to use a data base with ...
0
votes
0answers
21 views
Creating simple Asp.net MVC custom controls
I am actually trying to create simple custom control in asp.net mvc. Also It will not be a helper. Any place where I can get simple examples and how best is to write custom controls instead of ...
-6
votes
0answers
101 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
46 views
How to print all prime factors in strictly ascending order [closed]
How to print all prime factors in strictly ascending order. For example how can a print all prime factors in strictly ascending order if a have this code n<=10^12. I only need a example and ...
0
votes
1answer
43 views
Rails/RSpec - writing tests for original helper methods
I'm on the chapter 5 exercises for Michael Hartl's Rails Tutorial and am trying to wrap my head around how Rails/Rspec is testing a helper method full_title in app/helpers/application_helper.rb. All ...
0
votes
2answers
31 views
How can I call text_field_tag with an array?
Consider this:
text_field_tag :phone, :class => "input span2", :id=>"follow_up_phone"
However, if we now have the arguments in an array: [:phone, {class: "input span2", id: ...
0
votes
0answers
62 views
C plus plus offline reference [closed]
I will have to solve some C++ console problem without an internet connection. Theoretically the PC will be clean, with only the MS office installed along with bloodshed dev-cpp compiler. I must admit, ...
0
votes
0answers
28 views
Using Rspec to test Sinatra application helpers with settings
I have a Sinatra application with a configure block. I'm using a helpers class defined separately; the methods within the helpers class make use of the settings defined in the configure block of the ...
0
votes
0answers
27 views
maparea OnMouseOver show image
I have a travel website. I use multiple clickable maps. Everything works fine but instead of the title coming up onmouseover, I would like a image to show up (flag of the region). I use a php ...
0
votes
2answers
34 views
How to sort an array created by the directory_helper in CodeIgniter
So I'm using the directory_map function in the Directory Helper and I'm wondering how I can edit that function (or maybe extend it or something) so that it sorts the multidimensional array it gives ...
1
vote
2answers
107 views
asp.net mvc. Routing and Url building
Does any body knows how to hide some parameters in url?
For example you have a url parameter "culture". It can be "en, fr, it".
By default your site renders in "en" culture and we don't wont to show ...
0
votes
1answer
20 views
Calling arbitrary methods in CakePHP
I'm learning CakePHP 2.0 and MVC. I have working models, controllers and views for all of my objects. Now I'm trying to do several things at the same time.
Organizations have monthly Account ...
0
votes
1answer
29 views
Update Data in Mysql
My code is this
Profile.update_all(["is_active = ?, name = ?, geo_lat = ?, geo_long = ?, radius = ?, search_option = ?", 1, params[:profile_name],'null','null','null','st'])
but it assign
...
-4
votes
1answer
53 views
how to implement this Integrate[x^n E^(x - 1), {x, 0, 1}] in matlab [closed]
hi I've search and read but I couldn't solve this one in matlab.
please help me out to solve this problem
integral_0^1 x^n e^(x-1) dx
0
votes
0answers
66 views
CakePHP 2.x Cascading Drop Down with JsHelper
I'm trying to code cascading drop down for my web app. I added the script tag into the section of view/layouts/default.ctp
<script ...
0
votes
1answer
17 views
ReGex with Python cant find the correct Regular Expresion
I'm trying to extract some text out of a poorly design web page for a project, and after a long research and learning python I came close to make it happen, but the web page is poorly designed and ...
0
votes
3answers
91 views
Laravel 3: how can I create my own helpers
How can I create helpers in Laravel and where should I put them?
I was thinking on something like codeigniter's approach: a helpers.php file and some helper functions in there where I can call as ...
1
vote
1answer
24 views
In rails, what distinguishes label from label_tag?
I'm noticing in my rails views, some views use (helpers?) named xxx and other places use ones named xxx_tag? Can anyone outline the difference between the two and how I can know which to use in a ...
0
votes
1answer
53 views
Ruby and Mechanize to parse html for content?
So I am a complete noob to ruby and I am trying to write a code that would take a user inputed URL and print that pages html content to the screen. I the goal is to eventual create script that would ...
1
vote
0answers
60 views
Badly placed ()'s when creating Xquery command
So I have created the same books.xml file from W3schools. Now I'm trying to use Xquery.
I started with this command: doc("books.xml")
but it shows the following error:
Badly placed ()'s.
I ...
1
vote
0answers
26 views
make url_for preserve scope
In my Rails app I need to define two different routes to some resources. I'm trying to use scope to have scoped and unscoped routes. Thus I defined:
scope path: '(:prefix)', :prefix => /my/ do
...
0
votes
2answers
70 views
Shared DLL's in Team Foundation Server
This may have been asked before but i was not able to address my needs in all previous posts (I've been searching it for couple of hours). All posts are so specific to its special needs. (I've been ...
2
votes
0answers
65 views
Passing Field Name to Razor @helper in Webmatrix pages C#
This code obtains a listing of unique org names for display within my .cshtml page:
IEnumerable<dynamic> data = db.Query("Select * from provider
where submitter_element = '210300'");
...
0
votes
0answers
24 views
LoadError when write sinatra helpers using bundler
follow Sinatra write extension document, I write a ./lib/sinatra/test_helper.rb file containing my TestHelper, but using rackup start I got this error:
...
1
vote
1answer
73 views
Handlebars helper to retrieve the basename of the file in which it is used
I'm looking for a way to create a helper that simple renders the basename of the file in which the template was placed, and without requiring any additional parameters, like so: {{ basename }}.
In ...
0
votes
1answer
52 views
Is the helpers included in dust-full-1.2.0.js?
I thought the helpers was included in the dust-full-1.2.0.js file but I get errors when I tried to use one :
With : {@select key=P_Brand} Ok {/select}
From console :
Uncaught TypeError: Cannot ...
0
votes
1answer
206 views
cakephp passing selection to JS Helper
I want to get the selected schoolFilter form value and place in [SELECTED VALUE HERE].
$data = $this->Js->get('#SchoolFilter')->serializeForm(array('isForm' => true, 'inline' => ...
1
vote
2answers
77 views
HTML helpers in Webform?
I have a old site that I want to use something like HTML helpers to generate special HTML(in this case complexed buttons). I know how this works in ASP.NET MVC but how can I do it in Webform(not ...
0
votes
0answers
143 views
rails url link helper methods undefined using full engines
Rails 3.2.12 2/27/2013
We have a full rails engine called base2_cms with a model called "Event". There is no issue on running the engine using rails server.
Next, another full rails engine called ...
0
votes
0answers
164 views
list out paired bluetooth devices in listview created in layout
I want to list out all the paired devices in a list that i created in layouts.. what wrong in this code? i just created this function to display all the bonded devices
void tooth_scan() {
...
0
votes
1answer
25 views
How can i get the symbol for the flash used in Ruby on Rails?
I want to be able to get the name of the symbol that was used in a flash message.
For example: I am looking for a function or helper that would return the "warning" when flash[:warning] is active.
...
0
votes
0answers
55 views
ZendX_JQuery generate anonymous function error in Chrome's console
I'm using the helper ZendX_JQuery and when any JQuery Helpers is called its generate the error:
Uncaught Error: INDEX_SIZE_ERR: DOM Exception 1
invoke
(anonymous function)
XHR finished loading: ...
1
vote
1answer
39 views
2 parameters for event handlers?
`
public class names extends MovieClip
{
public function names(YourName:String)
{
this.addEventListener(Event.ENTER_FRAME,doThis);
}
public function doThis(e:event,Name:String)
...
0
votes
0answers
24 views
Rails Steak helpers not accessible
I´ve just started using Steak. But whenever i call a helper method in a scenario, i´m getting a NameError: undefined local variable or method. No matter if it´s inside NavigationHelpers or ...
0
votes
2answers
69 views
Undefined method `options_for_select'
I'm having some trouble with where to define helper methods that are used by more than one controller.
I extracted this method into its own module:
module ColumnMapHelper
def ...
1
vote
2answers
91 views
Should I use form helpers over standard HTML?
Is it good for performance or security issue to use those class as we know that HTML should be in plain HTML.
Example:
in Codeigniter Framewỏrk:
echo form_input(array('name' => 'one'));
is ...
1
vote
2answers
530 views
Linking images to routes in Laravel
I'm working on laravel php framework , I've a simple question ,
While using blade template engine , I normally use html helper functions
to render forms , links or whatever so .
Now when i try to put ...
1
vote
1answer
339 views
EmberJs: render template inside Handlebars-helper
I have this situation in which I have the template-name stored in a variable. I noticed that if you have for example
var config = { view: "PeopleView", .... } ;
that you can't do
{{view ...
4
votes
1answer
398 views
Is it possible with handlebars to nested helpers inside the options hash?
So guys, just started to use massively helpers inside my Backbone.js app but one of the things that I started to really dislike Handlebars was their limitation when dealing with Helpers.
I wanted to ...
-1
votes
1answer
111 views
cakephp 2 - load helper depending on layout
i would like to load helpers depending on layouts.
i want something like this, but id doesnt't work:
function beforeRender(){
if (array_key_exists($this->request->action, ...
1
vote
0answers
131 views
Microsoft.Web.Helpers FileUpload Custom Text
i am using Microsoft.Web.Helpers.FileUpload
@FileUpload.GetHtml(
name: "file",
initialNumberOfFiles: 1,
allowMoreFilesToBeAdded: false,
includeFormTag: false,
...
0
votes
0answers
46 views
Rails: calling flash[:alert] in controller helpers?
My users_controller was bloating. I refactored out the helper classes inside a UsersControllerHelper module. Since some errors can occur in the helper classes code, ideally I would like to report the ...
0
votes
1answer
152 views
Helper Classes in Spring MVC
Does Spring MVC provide "Helper" Classes? To which not only conforms with the general MVC Framework but helps the developer in doing repetitive tasks from the presentation all the way to the backend.
...
0
votes
1answer
101 views
Codeigniter Controller cannot use function within helper
I have the controller
<?php
class Onetimescan extends CI_Controller{
public function index() {
#LOAD -->>>> LIB ###########
...
0
votes
0answers
63 views
Codeigniter loading a helper without the “_helper” suffix?
I am trying to implement a OrientDB HTTP connection in Code Igniter, but I can't quite decide how to go about it. Basically, I am using the php code found here, and I cannot decide whether to make ...
2
votes
2answers
104 views
How to add a link_to in a select_tag with Rails/ERB?
I have the following code in my index.html.erb
<%= select_tag 'team_id', options_for_select(@teams.map{|team| ["#{team.name} #
{team.nick}", team.id] }) %>
Where would I add a link_to ...
0
votes
1answer
32 views
named route as a parameter for example group in rspec
I am newbie in testing and using RSpec and need some help:
I have shared example group:
shared_examples_for 'request which do something' do |opts = {}|
respond.should ...
1
vote
2answers
316 views
Rails url helpers not working in Rspec
I am new to programming, this is my first application.
While creating an application in Rails, i have two models. User&list,nested.
resources :users do
resources :lists
end
These are the ...
1
vote
0answers
93 views
How to deal with Mac OS X Helper/Main app architecture regarding core data, shared preferences and notifications?
I'm having some architectural doubts about a project (Mac OS X app) I'm working on. It basically consist of two elememts: a daemon that runs in the background gathering some data and a viewer used to ...




