1
vote
1answer
31 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='&l …
1
vote
1answer
137 views
specifying date format when using $form->inputs() in CakePHP
hi all,
I am wondering if there is a way to specify the date format in the forms created using CakePHP's $form->inputs(); Please note that this is not the individual $form->input …
4
votes
3answers
119 views
(Ruby, Rails, Javascript) Drag and Drop without bugging the server…?
Hi All,
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 loc …
1
vote
2answers
31 views
Prevent image caching in rails on a per tag basis
We are using gravtars for a site currently being developed in rails 2.3.4 and i am finding that the rails side tends to cache the images even after there is a change at the gravtar …
1
vote
4answers
96 views
Where should calculation logic go in a Rails app?
Hi all,
I have an app that models a House. The House has_many Rooms, Rooms has_many Lights and Small_appliances, etc. I also have a controller called Calculator that is how the ap …
0
votes
3answers
66 views
cakephp + cache + formhelper inside <cake:nocache></cake:nocache> = error
in all my views i have a login/register (cake)form.
my question:
can i use the file cache engine with <cake:nocache>form</ cake:nocache>
1.) open url "www.domain.co …
0
votes
1answer
81 views
html helper html.dropdownlist in asp.net mvc
give me full demonstration of html.dropdownlist
how it is implimented?
how to set values in the list?
how to use it in .aspx and in controller file?
0
votes
2answers
36 views
Passing a view model to helper class
I would like to display a tag cloud in my test application using a helper class to create the html.
I can use a for each loop in the partial view to visit each item in the model
…
0
votes
0answers
28 views
Helper for Enterprise Library version 4.1
Hi all,
any helper class for reduce code lines using ent Library:
Database db = DatabaseFactory.CreateDatabase("ConnectionStrings.Oracle.D04PES01");
using (DbCom …
1
vote
1answer
36 views
Is there a helper to know whether a property has been loaded by Hibernate?
I need a helper to know whether a property has been loaded as a way to avoid LazyInitializationException. Is it possible?
@Entity
public class Parent {
@OneToMany
private …
0
votes
1answer
66 views
How do I use helpers in rake?
Hi,
Can I use helper methods in rake?
Thanks.
Sam
1
vote
1answer
27 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 wo …
0
votes
0answers
42 views
rails number_to_currency bug?
Hi,
I have a rails app (rails version 2.1.0) and today I found a very weird error.
A money value(mysql decimal column with precision 8 and scale 2) is 86.02. However, number_to_c …
0
votes
1answer
14 views
other alternative texthelpers in rails
I have text input I get from a variety of sources which is not HTML but is simple text. I've tried using Redcloth to fit this with HTML tags to that it integrates nicely into my s …
0
votes
3answers
137 views
Helper in order to copy non null properties from object to another ? (Java)
Hi,
See the following class
public class Parent {
private String name;
private int age;
private Date birthDate;
// getters and setters
}
Suppose i have cr …
