0
votes
3answers
27 views
Rails, update 2nd select with static data from partial, based on initial select.
I have a rails form where the end user is going to drop down a list of categories, select a category. I need this selection to update the next select drop down. The issue is that …
0
votes
3answers
35 views
Passing two different models to a view with ASP.Net MVC
I'm trying to set up a view that displays two different models. For example, I have a "Details" view that shows details of a customer; which I am passing my customer model. I als …
0
votes
2answers
11 views
Unable to resolve uploaded images paths in partial view on server.
My ASP.NET MVC web app requires the upload of image files. These image files are then displayed via a partial view rendering where the path of the image file is inserted into the s …
2
votes
1answer
56 views
ASP.NET MVC Partial Views and JQuery Overlay Tutorial
Hi! Is there a good tutorial, that shows how to use partial views on a ASP.NET MVC page using JQuery Overlay Plugin?
For instance, I have a product list page and each product has …
0
votes
3answers
113 views
C++ template specialization via a base class
Dear Overflowers,
I want to be able to make the compiler shout when i call a constructor of foo with a class
that is NOT derived from base. The current code allows only for foo< …
0
votes
1answer
81 views
How do I compile asp.net webforms partial classes into a dll file?
If I use this code
vbc /t:library /r:System.dll,System.Data.dll,System.Web.dll,Cooperator.Framework.Web.dll, DateRangePicker.dll,DateRange.dll,conexiones.dll, abmbancos.aspx.vb
I …
0
votes
1answer
67 views
LINQ to SQL: Read entity while calling “SubmitChanges” causes DuplicateKeyException
Hi,
I'm experiencing a strange behavior that I really don't know how to work around it. I'm trying to read an entity just after it has been inserted (right after the ExecuteDynam …
0
votes
1answer
29 views
can I have a controller associated with a partial?
In rails, page templates have their own controller which is called before a page is rendered (I think?).
Likewise, can I have a controller associated with a partial that is calle …
0
votes
1answer
180 views
Render partial for model with nested attributes in another model
I have a rails application that models a house. house contains rooms and rooms have nested attributes for light and small_appliance. I have a calculator controller, which is how e …
1
vote
2answers
99 views
C# - To use Partial Classes, or Seperate Ones?
Which way is best practice and the best programming approach, Partial Classes or Individual classes?
2
votes
2answers
171 views
Render partial from another model
Hi everyone,
I have a rails application that models a house. There is a house model that has many parameters and it has_many rooms. A room has a house_id and a name. I've also …
4
votes
2answers
97 views
Loading a Partial View in ASP.Net MVC using JQuery - which method is preferred?
In a very recent questions I was having problems with this. My code was:
$("#SearchResults").load("/Invoice/InvoiceSearchResults/");
And I was advised to use this instead:
$.a …
1
vote
3answers
201 views
How to automatically convert VS2003 classes to partial Designer.cs files?
I'm upgrading a project from Visual Studio 2003 to 2008 and wish to automatically generate XXX.Designer.cs files and update the corresponging XXX.cs original one.
Any automatic wa …
0
votes
1answer
60 views
Problem with request.request_uri when forwarding from AJAX partial - Rails
Hi,
In my Rails logging in functionality I use
session[:return_to] = request.request_uri
and then in the logging functionality I use:
redirect_to session[:return_to]
Which …
0
votes
2answers
28 views
cp command within php resulted in a partial copy
I have a small PHP script I wrote to help me push changes from staging to production. I run both staging and prod on the same server so my script copies changes from staging folde …
