|
How do I update additional data in HABTM tables.
For Example: I have movies , people and HABTM movies_people tables, but there is additional persontype_id field in movies_people table which indicates role of this person in that particular movie. How do...
Started by totocaster on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Instead of just a movies_people table, you'd have an additional model, called somthing like this that I could ever hope, so for additional help, I'd take a look at it.
For this reason.
|
|
If I want to host a site developed with Silverlight does it require any additional cost or special web server? Or i can just host it on my current ASP.NET hosting provider?
Started by sixty_four_bit on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
ASP.NET is not needed either, you could just.
There are no additional costs nor anything special needed on the server.
|
|
I have set up an Amazon EC2 instance and am able to SSH into it. Can anyone please tell me how I could allow additional users to SSH into this instance from a different location?
Max.
Started by Max on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Create additional users at a *nix command prompt
useradd
Create a new rule in the security group.
|
Ask your Facebook Friends
|
I am trying to open an additional mailbox in Outlook 2003 for one of my users. She already has three additional mailboxes in the list (found in the advanced account settings), and these work fine. When I click the "Add..." button, it immediately reports...
Started by Jon B on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
If so it sounds like the problem could.
Plus the additional mailboxes, see if you get the same error.
|
|
I've noticed enums introduce many additional class files (Class$1) after compilation bloating the total size. It seems to be attached to every class that even uses an enum, and these are often duplicated.
Why does this occur and is there a way to prevent...
Started by The Feast on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For each instance,
However, this does not account for additional class files generated for users named Operation you will get additional class files, excluding the obvious Operation.class.
|
|
I have a field that autocompletes on person name, so it has options like "Obama, Barack", "Lincoln, Abe", etc.
These people also have additional attributes, say "Birthplace" and "Phone number". When a user picks an option from the autocomplete, I would...
Started by Horace Loeb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Var persons = { abe: { name:....
I'm not familiar with the autocomplete plugin but: Why not download all the data from the server and then only feed the autocomplete what it needs .
Use YUI :)
Handles all that, completely customizable out of the box .
|
|
Often one wants to print out additional information if an assert fails. A way to do that is this:
assert(vec.size() > i || !(std::cerr << "False: " << vec.size() << ">" << i))
This way the actual sizes are printed when the...
Answer Snippets (Read the full thread at stackoverflow):
== 3' Failed @ .\main.cpp:32
What do people use instead to print additional information.
|
|
Hi
I need to enable additional modules for apache eg, mod_proxy, mod_proxy-html, and mod_proxy_balancer.
Is there a way for me to do that without recompiling the whole apache?
Thanks
Started by David on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Ex:
LoadModule mod_proxy modules/mod_proxy.so / linux LoadModule mod_proxy modules/mod_proxy.dll / windows
http://httpd.apache... .
You need just to copy those modules to some directory on Your system/server, then add a command for appache in configure file .
|
|
I want to store some additional data on an html page and on demand by the client use this data to show different things using JS. how should i store this data? in Invisible divs, or something else? is there some standard way?
Started by noam on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you use (1) to, ....
Each has applications.
One of:
Hidden input fields (if you want to submit it back to the server); or Hidden elements on the page (hidden by CSS) .
I don't think there is a standard way; I would store them in JavaScript source code .
|
|
Is there any way for me to avoid the additional cast when I cast a List<T> to my own collection, which is nothing but a derivate of List<T> ?
Example:
ScreenCollection screens = screenRepository.GetAll().ToList(); // fails because ScreenCollection...
Started by Alex on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you made your class implement IList<Screen> instead of deriving List<Screen> , and encapulated the list ... .
There is no simple way to do this -
The cast will fail, as well, since (at runtime), List<Screen> is not a ScreenCollection .
|