0
votes
2answers
40 views
Rails Custom Model Functions
I'm in a databases course and the instructor wants us to develop an e-commerce app. She said we can use any framework we like, and now that we're halfway through the semester she d …
0
votes
0answers
40 views
R: Use VAR model to predict response to change in values of certain variables
Hi
I've fitted a VECM model in R, and converted in to a VAR representation. I would like to use this model to predict the future value of a response variable based on different sc …
0
votes
3answers
69 views
Reverse order of display of blog entries and comments, Ruby on Rails
I am new to rails so could use some help here. I have followed several tutorials to create a blog with comments and even some of the AJAX bells and whistles and I am stuck on somet …
0
votes
1answer
34 views
How can I tell if I’m in beforeSave from an edit or a create? CakePHP
Hello,
I have a model where I need to do some processing before saving (or in certain cases with an edit) but not usually when simply editing. In fact, if I do the processing on …
0
votes
4answers
54 views
How to map the NHibernate Data Model to the Domain Model?
I started creating a domain model and now I asking myself, how can I map this domain model to a NHibernate Data Model ((using Fluent NHibernate)? Is there anywhere a good and simpl …
0
votes
0answers
35 views
Conditions in associated models using Model->find() (CakePHP)
Hi, I am having some issues with CakePHP's find() method and conditions in 'deeper' model associations. There are some of these around but I could not find an answer to this so far …
0
votes
2answers
40 views
Implementing rental store in Rails: how to track an inventory state over time?
Let's say you're implementing rails app for a snowboard rental store.
A given snowboard can be in one of 3 states:
away for maintenance
available at store X
on loan to customer …
1
vote
1answer
76 views
Using asp.net mvc model binders generically
I have a hierarchy of classes that all derive from a base type and the base type also implements an interface. What I'm wanting to do is have one controller to handle the managemen …
1
vote
5answers
135 views
Embedding C# code using <%= code %> within javascript <script> tags
Hi All,
I'm using ASP.NET MVC and would like to get Model information for use within my javascript. I've strongly typed the view, and thus am able to use <%= Model.Name %> w …
0
votes
0answers
38 views
How double underscore works in cakePHP?
which means, can i change the result of find() to another model using sth like:
<?php
fields = array('sum(vote.score) as Post__score_sum'),
?>
and return:
array(
'P …
0
votes
2answers
48 views
Accessing ASP.NET MVC Model Data from external Javascript file
Hi,
I'm trying to use JQuery's $.getJSON to access Model data from the Controller, and build a JSON object in the javascript to use as the user adds and removes items from a list. …
0
votes
5answers
135 views
Specify which model relations to load
I am a beginning Cake user but well versed in php and frame works in general (I used to use Code Igniter). How can I call the model below and only return the Artist records and the …
0
votes
4answers
70 views
Cakephp: how to access to model “variables” (mapped from db) from the controller after a set?
Ok i have this controller:
class ExampleController extends AppController {
var $name = 'Example';
public function test_me () {
$this->Example->Create();
…
0
votes
3answers
35 views
Rspec, Model load order, fixtures and named_scope challenge
I have some players and the players have a trade state. Rather than hard code trade states like "active" and "inactive" and then have to go looking for strings, I thought I'd be c …
1
vote
1answer
36 views
[Rails] Can a model “belongs_to” either/or more than one model?
Apologies if this is a slightly noob question, but looking to clarify my thoughts on this. I have a model that can EITHER belong to one model, or another. For example:
Let's say I …
