Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
7k views

Django: many-to-many relations, and through

I want to store which user invited another user to a group... but django is telling me this is ambigous and against the rules (which makes sense). groups.group: Intermediary model ...
2
votes
2answers
204 views

Java - Loop Through a set of Objects

I have a map of key-value pairs of huge size, approximately 10^7, and I have to loop through it 15 times a second in order to update its contents Is there any class or structure that offers good ...
2
votes
1answer
162 views

How to loop through xml elements using xsl

i have a scenario like this in xml <ViewFields> <FieldRef Name="Planing Status" /> <FieldRef Name="Resource Status" /> <FieldRef Name="Development Status" /> ...
2
votes
3answers
551 views

Django ManyToManyField ordering using through?

Here is a snippet of how my models are setup: class Profile(models.Model): name = models.CharField(max_length=32) accout = models.ManyToManyField( 'project.Account', ...
2
votes
2answers
1k views

django m2m form save “ through ” table

i'm having trouble in saving a m2m data, containing a 'through' class table. I want to save all selected members (selected in the form) in the through table. But i don't know how to initialise the ...
2
votes
1answer
206 views

How to distuingish between Django's automatically created ManyToMany through-models and manually defined ones?

Say we have models from django.db import models class AutomaticModel(models.Model): others = models.ManyToManyField('OtherModel') class ManualModel(models.Model): others = ...
2
votes
1answer
749 views

ActiveRecord::HasManyThroughAssociationNotFoundError in UserController#welcome

I have a many to many relationship in rails. All database tables are named accordingly and appropriately. All model files are plural and use underscore to seperate words. All naming comventions are ...
1
vote
2answers
18 views

Need data from rails join table, has_many :through

I have 3 tables- users, things, follows. Users can follow things through the follows table, associating a user_id with a things_id. This would mean: class User has_many :things, :through => ...
1
vote
1answer
54 views

Highlighting specific records in classic ASP

In my quiz page, I have ten questions. When the user goes through these questions, I store the IDs of wrong questions in a array. When the user clicks on the "show result" link, I'm going to display ...
1
vote
3answers
473 views

Get <td> values only in specific rows using jQuery

all I have a table (id="docsTable") whose rows look similar to this: <tr bgcolor="#E7DDCC"> <td align="center"><input type="checkbox" name="docsToAddToClass[]" value="35" ...
1
vote
1answer
585 views

Save M2M “Through” Inlines in Django Admin

Apparently Django's ModelAdmin/ModelForm doesn't allow you to use save_m2m() if there's an intermediate through table for a ManyToManyField. models.py: from django.db import models def ...
1
vote
2answers
461 views

Rails 3 has_many through checkbox form doesn't (does not) work

I have been stuck on this for a day now. I've heard all of this talk of Rails being able to handle easy complexities like this (although this isn't/shouldn't be complex). Story: User can have many ...
1
vote
2answers
174 views

How can I get some model's objects and its associated model's objects conditionally through an intermediary model object, using ActiveRecord

How can I get some model's objects and its associated model's objects conditionally through an intermediary model object? This will then be used to generate JSON (via to_json). Here is the setup made ...
1
vote
2answers
51 views

How can I do a find in Rails with conditions set on the join table of a :through association?

I have the following models: class User < ActiveRecord::Base has_many :permissions has_many :tasks, :through => :permissions class Task < ActiveRecord::Base has_many :permissions ...
1
vote
2answers
322 views

Django: Validation on a Many-to-Many Through model

I have the following models (simplified example): class Book(models.Model): users = models.ManyToManyField(User, through=Permission) class Permission(models.Model): user = models.ForeignKey(User) ...
1
vote
1answer
380 views

Django - how to access fields in a customized many-to-many through object in templates

Consider the following models: class Person(models.Model): name = models.CharField(max_length=128) class Group(models.Model): name = models.CharField(max_length=128) members = ...
1
vote
1answer
42 views

Window appears “see-through” when trying to append a line of text - Java

I am trying to append a percentage to a text area in java. It involves a loop that determines the percentage and then appends that to another JFrame with the text area in it. The "pro" class simply ...
1
vote
2answers
438 views

Query for a ManytoMany Field with Through in Django

I have a models in Django that are something like this: class Classification(models.Model): name = models.CharField(choices=class_choices) ... class Activity(models.Model): name = ...
1
vote
2answers
629 views

Django: Exclude on a many-to-many relationship through a third table

I have a problem making "exclude" querys on tables which have a many-to-many relationship through a third table. I have a table with projects, a table with people and a relationsship table with the ...
1
vote
2answers
1k views

LINQ To SQL - What is the most efficient way to loop through master/detail?

The only thing I can find when dealing with master/detail and LINQ is through databinding. However, I am using LINQ to query my data and will need to manually loop through results without the need for ...
1
vote
1answer
630 views

Polymorphic has_many self-referential

I am having trouble getting this to work. My problem is. I have A number of models (Article, Video, Photo) Now I am trying to create a related_to association, such that An article can have many ...
1
vote
5answers
1k views

how to avoid duplicates in a has_many :through relationship?

how can I achieve the following? I have two models (blogs and readers) and a JOIN table that will allow me to have an N:M relationship between them: class Blog < ActiveRecord::Base has_many ...
0
votes
0answers
35 views

An incorrect number of type args were specified for the declaration of a Func type

I am working on a Dynamic Proxy generation utility. It will take a Service (WSDL) URL, method name and parameter collection. I am able to create the proxy, but when I try to invoke the method on the ...
0
votes
6answers
103 views

Determine if string starts with letters A through I

I've got a simple java assignment. I need to determine if a string starts with the letter A through I. I know i have to use string.startsWith(); but i don't want to write, if(string.startsWith("a")); ...
0
votes
0answers
66 views

unable to get correct date from excel using jxl api in java

I am using JXL to read an Excel file using Java. One of the columns on the file is in a Time Format. What is displayed in the Excel cell is (24-hr format): 0:01 When I highlight the cell, the value ...
0
votes
0answers
23 views

Phising through frames

My .net application uses frames. Currently there is phishing that happens through frames. Is there a way it can be controlled programmatically. Also, suggest a tool to find such phishing attacks
0
votes
0answers
9 views

_MethodInfo shows null

I have created one COM API for Acrobat. I need to pass and retrieve values from .net to COM. Type acroApp; acroApp = Type.GetTypeFromProgID("AcroExch.App"); object oAcroObject = ...
0
votes
2answers
72 views

(android) Passing data from two activities to a third

i have total 3 activites. I pass the data from the first activity like this: Intent i = new Intent(getApplicationContext(), History.class); i.putExtra("day", mDay); ...
0
votes
0answers
29 views

move data in a NTFS partition

I would like to move some data from the beginning of a partition to some other part of it, to create some free space there. I saw that this operation is done by a partition manager when I re-size and ...
0
votes
1answer
36 views

help passing an action through another view

i'm working on my game but i am stuck at this easy step and hoping that you guys will shine your light on me and guide me through. i have two classes with xibs: one of them is MainMenu, another is ...
0
votes
1answer
68 views

One-To-Many-Through adding join model intances

My models: class Test include DataMapper::Resource property :id, Serial property :name, String, :default => '' has n, :test_visits has n, :visits, :through => :test_visits # ... ...
0
votes
0answers
10 views

reconnect to database through windows service

When I reconnect my database through windows service it does not serve the first request but does it through next request. Please let me know how can i furnish first request also.
0
votes
1answer
78 views

Django Querying Self-referential Many-To-Many relations

I am trying to get a list of all manuscripts in my db, print out the shelfmarks for each of them and in case that they are linked to other manuscripts also print out the shelfmarks of those ...
0
votes
1answer
49 views

has_one :through => multiple

Both Attendment & Vouching: belongs_to :event belongs_to :account Therefore: 1 to 1 relationship between attendments and vouchings. Is there a way to do this without my thinking too much?* # ...
0
votes
0answers
96 views

Loop through XML elements in XSL

This is the output I am looking for: I have 4 status columns(Approval Status, Requirement Status, Development Status, Testing Status) in my SharePoint list. These columns can have following 3 values – ...
0
votes
1answer
91 views

fields_for with through relation

item gets the collection_fields from his collections. For each collection_field of the collection item may have a field_value models class Item < ActiveRecord::Base belongs_to :collection ...
0
votes
2answers
183 views

Loop through $_POST array isn't working

I have a php function that is supposed to loop through an array of $_POST data containing record ids, but for the life of me I can't figure out why it isn't working. I have similar functionality ...
0
votes
0answers
52 views

multiple value pass

SqlConnection cnn = new SqlConnection(ConfigurationManager.AppSettings["cstring"]); SqlCommand cmd; SqlDataReader dr; DataSet ds; cnn.Open(); string s = " Select Book_name, Cat_id, Author_1, ...
0
votes
0answers
373 views

updating attributes in a has_many :through join table rails 3

I'm new to ruby on rails and need some help on a has_many :through relationship. I'm modelling Product, Enquiry and Quote (where quotes is the join table which also contains the quantity attribute) ...
0
votes
1answer
331 views

rails 3, in many-to-many through a join table, is has_many / through optional?

I have 3 models: Customers, Stores, Signups (a mailing list) (Signups are their own object since they have state like opted in, opted out, blacklisted, etc) Customers and Stores are fairly ...
0
votes
0answers
136 views

Linking three models through two join models?

I was wondering how to connect three models in one context. Imagine these models: property, user and role. When creating a property, I want to set the current user to have a particular role (and ...
0
votes
3answers
115 views

taking continous input through loop in php

actually i want to write a program of taking numbers as input continously and to stop taking input when suppose the input is 42, and then display the input numbers. I tried the if condition but it ...
0
votes
1answer
255 views

Using Django's ManyToManyField with predefined intermediate model

Here are my models: class Groups(models.Model): group_id = models.AutoField(primary_key=True) group_name = models.CharField(max_length=20,db_index=True) #Some other fields admins ...
0
votes
1answer
57 views

django aggregation with objects

model: class Product(models.Model): name = models.CharField(max_length = 128) (...) def __unicode__(self): return self.name class Receipt(models.Model): name = ...
0
votes
1answer
306 views

Set properties of a class only through constructor

I am trying to make the properties of class which can only be set through the constructor of the same class
0
votes
2answers
406 views

Call webservice through Javascript

I am calling websevice through javascript by using SOAPClient and its working in Internet Explorer But not working in Firefox. Actually Its working in firefox also when a webservice within same ...
0
votes
1answer
486 views

looping through an image folder in a wpf application

I currently am loading all images in a folder in my "MyPictures" folder on my machine which works fine... foreach (string filename in ...
0
votes
2answers
55 views

iframes modifications

i have a website which uses top in javascript to show bookshops in a panel. Now i want to add this website into another website using a frame. But when i fix the url in the src of the frame , it ...
0
votes
1answer
321 views

Ordering on a field in the 'through' Model of recursive ManyToMany relation in Django

Assuming the following model: class Category(models.Model): related = models.ManyToManyField('self', symmetrical = False, through = 'CategoryRelation', null = True, blank = True) Assuming the ...
0
votes
1answer
204 views

How can I have the user create a has_many :through table without any user-input attributes?

I have two models (users and courses) and a JOIN table that allows enrollments in the course: class User < ActiveRecord::Base has_many :enrollments, :dependent => :destroy has_many :courses, ...

1 2