Tagged Questions
The activeview tag has no wiki summary.
2
votes
2answers
368 views
Pass instance or local variable from layout to view in Rails
I'm trying to set up a rather complex form using form_for. This form needs to be in multiple views, where some fields would be available across all actions and other fields are specific to each ...
2
votes
2answers
1k views
Current view file in Rails helper method
Is there some way to determine what file currently is being rendered by Rails (2.2) in a helper method. An example result would be "/sessions/new.html.erb" or something similar.
I am trying to write ...
1
vote
2answers
265 views
Create a “main layout” view in Rails?
Ok so I have a small project with two different scaffoldings I've made.In the layouts directory therefor there is two different layout.html.erb files.
My question is how to condense this into just ...
1
vote
2answers
524 views
Managing child relationships with a nested attribute form
What I'm trying to do is the following:
At anyone time a user can have 1 active profile. This active profile must be authorized by an administrator to make sure that it is compliant with the rules ...
0
votes
3answers
526 views
C# MultiView SetActiveView by ID not working properly
I'm currently trying to figure out what's wrong with my code:
Doesn't work
if(...){
...
}else{
someVariableAsString = "myValue123";
...
0
votes
1answer
201 views
Rails has_and_belongs_to_many association
so I have two models:
class User < ActiveRecord::Base
has_and_belongs_to_many :followed_courses, :class_name => "Course"
end
class Course < ActiveRecord::Base
has_and_belongs_to_many ...
0
votes
2answers
347 views
access ActionView helpers from inside the Model
I have a simple template system which calls a show_me method defined inside different classes of my model (kinda Widgets) when rendering a template. These widgets originally returned the html as a ...
0
votes
2answers
2k views
Asp.net MultiView /check ActiveViewIndex With Javascript Or Jquery
why the below alert always shows me null?
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Keyup._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
0
votes
1answer
2k views
MultiView And JavaScript (or jquery) Working
how can i get multiview in javascript or jquery ?
below code always returns null : (Javascript)
var MultiView = document.getElementById("MultiView1");
and below code is not null but not work ...
0
votes
1answer
116 views
fields_for to stop pluralizing
I have a fields_for tag, where I specify the prefix (lets say for some good reasons), and this is supposed to represent a one-to-one relationship.
I am trying to represent a relationship
widget ...