Tagged Questions
Model-Glue is an OO web application framework based on the MVC design pattern. Its goal is to simplify development of OO ColdFusion applications. It is released under the Apache Software License 2.0.
5
votes
2answers
94 views
Using ColdFusion Model-Glue, how do I redirect the user back to their requested page after logging in?
I have a secured event type, which will check to see if the user is logged in, and the redirect them to the login page if they're not:
<event-types>
<event-type name="securedPage">
...
2
votes
4answers
113 views
What is ColdFusion Model Glue's equivalent to ASP.NET MVC 3's @section?
In ASP.NET MVC 3, you can have an @section within a view:
@section SideBar {
<p>Some content</p>
<p>Some more content</p>
}
<p>Body content</p>
Then in ...
2
votes
2answers
50 views
Data clean-up; what layer?
I have an app built on Model-Glue: Unity that contains some search forms. I need to trim leading and trailing spaces from search strings before using them to query the database. I'm also keeping the ...
1
vote
1answer
25 views
How do I set the current page for a global navigation cfm in ColdFusion Model Glue 3?
I have a navigation.cfm page that I'm including in all of my pages by using a MG3 custom event type:
<event-type name="pageWithNav">
<after>
<views>
...
1
vote
1answer
31 views
How do I access a bean outside of a controller in ColdFusion Model Glue 3?
Model Glue 3 introduced bean injection, which allows you to do this in a controller to access it:
beans.component.function();
However, the beans scope is only available for a controller. How would ...
1
vote
1answer
105 views
What is the best way of including a UDF/CFC in a ColdFusion Model-Glue controller?
I have some common UDFs and CFCs that I'd like to make available to all my controllers. I'm using Model-Glue 3. I've thought of several ways of doing so:
Create a base controller that has ...
1
vote
1answer
48 views
Where should I instantiate my models in a ColdFusion Model Glue controller?
Let's say I have a client who has a list of orders and a wishlist. In my model, I have a ClientRepo, OrderRepo, and WishListRepo. In the controller, where should I be instantiating these repositories? ...
1
vote
2answers
97 views
Is Model-Glue's model in Coldfusion the same as the model in other MVC frameworks?
If you follow the quickstart guide provided by the official Model-Glue docs, found here:
http://docs.model-glue.com/wiki/QuickStart/2%3AModellingourApplication#Quickstart2:ModelingourApplication
It ...
1
vote
1answer
75 views
How do I put Javascript in the <head> element of a Coldfusion Model Glue page?
I have a Model Glue CFM page index.cfm with some JS code that I'd like to execute:
<script type="text/javascript">
$(function() {
$('#text').height(300);
});
</script>
...
1
vote
1answer
298 views
Overwriting/redirect a Request in Coldfusion using modelglue
Actually its related to authentication. my scenario is as following:
I have a homepage, where user can see some news n other stuff, also there are text fields for user to enter the login info and get ...
0
votes
1answer
13 views
Moved Model Glue App No Longer Working
A model glue site we use had to be moved to another physically different location. I updated all the paths in ModelGlue.xml, ColdSpring.xml and other specific files, but I keep getting the following ...
0
votes
3answers
83 views
How do I send a cfm file as the body of an e-mail using ColdFusion?
I have a legacy application where an email.cfm file is used with a cfmail tag to send e-mail:
<cfmail from="abc@123.com" to="def@456.com" subject="New e-mail!">
// lots of HTML
...
0
votes
2answers
60 views
Where should I put my Javascript code in a ColdFusion model glue view?
Let's say I have a ColdFusion Model Glue view called login.cfm. In it, I have a form:
<form id="loginForm" action="#event.linkTo("user.login")#" method="POST">
E-mail: <input ...
0
votes
1answer
87 views
Best practices when writing glue code
I asked this question to get some opinions on the subject of glue code.
For example, imagine you have a class (pseudocode):
class MyClass
int attribute a
string attribute b
And to ...
0
votes
2answers
59 views
Model-Glue Beginner Question
I have Model-Glue (& ColdSpring) running in my wwwroot under my project. The problem I have is when I broadcast a message to call a method in my Controller, what happens is another method of the ...
0
votes
3answers
372 views
Model-Glue and Railo Application.cfc
I am trying to launch a test MG app on Railo and am hitting a snag.
When I visit the MG app I get:
Railo 3.1.0.012 Error (Java.lang.classformaterror)
Message Invalid index 16 in ...