The related tag has no wiki summary.
0
votes
1answer
35 views
How do you access the properties of a related EmberJS object in a template?
I have defined these two objects in Ember:
App.Course = DS.Model.extend({
name: DS.attr('string'),
students: DS.hasMany('App.Student'),
courseComponents: DS.hasMany('App.CourseComponent')
...
0
votes
0answers
9 views
How to retrieve posts from subscribed blogs filtering by username using Tastypie? (related Resources)
The users can subscribe to several blogs using a m2m relation or create collections of blogs to follow.
What is the best way to get only the posts (not the blogs, the meta should return a count of ...
-4
votes
1answer
42 views
SQL related fields and duplicates
lets say i have a table like this. Table name: Logs
id time prod stan amt
1 02:01 10 445 22
2 05:33 02 446 56
3 02:02 10 447 22
4 20:40 55 448 88
I want output ...
0
votes
0answers
19 views
Adding automatic related content to blog entry in liferay
My website actually uses the list of the blogs to display the news.
We would like to add tags to the blogs and according to it to display a list of links in the blog content.
For example for a blog ...
0
votes
1answer
26 views
Wordpress - display 3 related posts regardless of the post type, custom or otherwise
I'm trying to display 3 posts below my single post view (I have custom post types set up so want this query to work on all single post pages regardless of the post type).
However with the code below ...
0
votes
0answers
69 views
Add custom content to Related post for blogger
I have a code to show related post with thumbnail for blogger:
<script type='text/javascript'>
//<![CDATA[
var hl_title = [],
hl_titleNum = 0,
hl_url = [],
thumburl = [];
...
0
votes
0answers
39 views
CakePHP Save hasOne data: constraint error
Hey I am new to CakePHP and I want to know why my code doesnt work:
$data['Gender'] = array(
'bezeichnung' => $item['person']['GENDER']
);
$data['Client'] = array(
'id' => ...
0
votes
0answers
43 views
MYSQL: Query to Output all related / tags / similar ids
I am working on a Query, but cant get it do what i want.
I have this table: family
family.id
family.name
family.related
With this content:
id | name | related
1 | Name1 ...
0
votes
0answers
110 views
Magento Related Products not showing
this problem has been bugging me for a while now.
I have these simple products on my magento configuration at the moment. And I really like to make a related product for each of them. I was able to ...
-2
votes
1answer
37 views
Related content on news stories [closed]
I have a database with multiple tables but for this example only 2 are relevant, news and players. The news table has columns such as id (auto increment), title, date, tag1, tag2, tag3, tag4, tag5, ...
0
votes
2answers
58 views
Django: get related set from a related set of a model
class Book(models.Model):
# fields
class Chapter(models.Model):
book = models.ForeignKey(Book)
class Page(models.Model):
chapter = models.ForeignKey(Chapter)
i want all the pages of ...
0
votes
0answers
48 views
Magento: one product to be related product of all products
In Magento (1.7), would it be possible to (preferably automatically) have one product assigned to all the other products as their related product? Or how could this be done through a SQL query in ...
0
votes
0answers
47 views
Rails - Need to show data from 2 belongs_to tables over
My model situation is such that I want to show how-I-got-here info in the index form for breeds.
class Genus < ActiveRecord::Base
attr_accessible :tribe_name
has_many :species
...
...
0
votes
0answers
88 views
Woocommerce. Multiple products on one product page
I've trawled the forums for a solution to an issue I've been having and I wonder if anyone could help me.
I am using woocommerce to create a website for a store that sells towels etc. In each range ...
0
votes
1answer
57 views
PHP (or jQuery, if need be): Output related MySQL records from other tables as JSON? [closed]
I have two tables:
Table 1:
Make Model 1 ID Model 2 ID Model 3 ID
---- ---------- ---------- ----------
Ford 1 4 7
Chevrolet 2 ...
-6
votes
1answer
486 views
Fatal error: Call to a member function addToChildGroup() app/code/core/Mage/Core/Block/Abstract.php on line 759
I have added this code for block in catalog.xml and i got following error -
Fatal error: Call to a member function addToChildGroup() app/code/core/Mage/Core/Block/Abstract.php on line 759
<!-- ...
0
votes
1answer
119 views
wordpress related posts by category duplicating
I am having an issue getting the $do_not_duplicate working properly I have several title duplicating on my blog and i need it to stop. Here is what i have so far:
<?php if (is_single()): ?>
...
0
votes
0answers
62 views
Symfony2 Doctrine Automatically retrieving related entity
I've got 2 tables - page and page_versions. 1 page can have many page versions and the page_version that has active set to 1 is the active version of that page so the version that will be used to ...
1
vote
1answer
419 views
cgridview related fields filtering
I have a problem that I have solved for all but one of the cgridview filters, which is a related field.
I am using a solution Seenivasan has supplied but the related field status does not get added ...
1
vote
2answers
62 views
3 related tables with a relation table in between for 2 input and 1 output
I have 3 tables
EVENTS with 2 columns : id , event-name
RELATION with 2 columns : event_id, cat_id
CATEGORY with 2 columns : id, cat_name
here is my Data :
[EVENT]
id event-name
...
0
votes
1answer
399 views
Using RELATED function in DAX with USERELATIONSHIP
I am trying to pull in a field from another table in my BISM model using the "RELATED" function. Since there are many tables that have relationship to the People table, only ONE relationship is active ...
0
votes
1answer
129 views
EF 4.3 - Update entity and sub entities
I have an entity Order with a sub entity OrderDetail. I want to update the Order and add a new OrderDetail. How should i do this?
I've tried setting the state of the Order to modified but i get this ...
1
vote
2answers
562 views
Javamail don't read email multipart/related
i have code:
Message[] arrayMessages = folderInbox.getMessages();
for (int i = 0; i < arrayMessages.length; i++) {
Message message = arrayMessages[i];
Address[] ...
1
vote
1answer
316 views
Placement of Related products - Magento
I have a magento installation where I need to place related products in the center column. This is the easy part. I moved
<block type="catalog/product_list_related" name="catalog.product.related" ...
1
vote
0answers
80 views
Is there a way of displaying 'Related searches' when using Google Custom Search API
I am using the Google Custom Search API to display google search results on my website, however, I would like to display 'Related Searches' like the ones shown at the bottom of a normal google search.
...
0
votes
0answers
208 views
Entity Framework insert new related entities
I have an issue with Entity Framework.
I have a base class which contains a List of file.
First creation is going fine. Update is working fine to.
However, adding a new file during editing the base ...
1
vote
1answer
68 views
Need PHP Mysql Suggested Categories name from Title posted
<?php
$colname_subselect = "-1";
if (isset($_POST['title'])) {
$colname_subselect = $_POST['title'];
}
mysql_select_db($database_donedeal, $donedeal);
$query_subselect = sprintf("SELECT ...
0
votes
0answers
70 views
Cakephp find on related models
I have an issue with cakephp find method when apply a condition on a related model. Here is my scenario
Machine belongsTo Category
Machine hasAndBelongsToMany Products (products produced by machines)
...
0
votes
1answer
231 views
ConcatRelated() in Access, using two keys
I found the ConcatRelated() function [http://allenbrowne.com/func-concat.html] and it seems to do what I want it to, but I need to feed in two keys rather than just one.
My data looks like:
Chain ...
1
vote
1answer
79 views
SQL Date Condition Referring to A Different Table
I have two views that I am trying to build. View # 1 simply returns a set of referral data with the condition that the referral has originated in the past 14 days (and a few other criteria). This has ...
0
votes
2answers
188 views
Fuelphp ORM related limit ignored
I ran in to a problem what i never experienced with fuelphp.
On the users profile page i allow other users to leave comments.
And when i use related comments limit in my controller function its just ...
1
vote
2answers
426 views
Magento Related Product don't show up
I am trying to get the related products block to show up on my product detail page.
I have the folling code in the respective .phtml file
<?php
<?php echo "Related product block"?>
<?php ...
-1
votes
1answer
239 views
Xcode: Swiping push notification away should open related news
I'm new to iPhone development, but managed to receive push notifications in my iOS App. However, when I swipe away the incoming push notfication, it just opens the app, but not the related post to the ...
0
votes
1answer
58 views
Is it better to find most highly related posts by tag with CouchDB or RDBMS?
I want to find related posts by finding posts with the highest number of tags in common with the post in question. I can do this in a SQL query, but since I'll have thousands of posts with dozens of ...
2
votes
2answers
831 views
How to get Symfony 2 with doctrine ORM to persist related entity only once
I have a 'person' entity that has a manyToOne relationship with a 'city' entity:
Here's the person's relationship mapping:
/**
* @ORM\ManyToOne(targetEntity="City", inversedBy="persons", ...
-5
votes
1answer
72 views
How to get related search from data base in my C# program [closed]
i am working on my c# program there is an option to get data from database (MS Access) through search option. i want to the get related search from data base.
doing searching by Name.
0
votes
2answers
114 views
SQL Server View get count from related table where column = “True”
I have two related tables in SQL Server in a 1 to many relationship (Applicant, Reference).
I want a view that will retrieve all the data from the Applicant table and also add another column to the ...
0
votes
0answers
60 views
Extract related words using google docs api
I found a fantastic post about using Google spreadsheet as an alternative to Google sets. I want to know is this possible programmatically? maybe using Google Docs api?
and if yes how??
I know ...
0
votes
1answer
141 views
MySQL Related Tags With Joins
So, I have a database with a table called artcles, and also a table called article tags. When a user views an article, I want to query up to five articles that have tags similar to the one that is ...
1
vote
3answers
66 views
Unable to make a 'related terms' code using strpos work in PHP
What I'm trying to do is get an input text from the user (for example lets say 'Java programmer') and trying to match this user input with a list of strings that I have stored in an array like 'Java ...
0
votes
2answers
125 views
Django - Get childs of child objects?
If I have a structure with one level of child objects I can easily get them through parent.child_set.all() However I want to get childs of childs as objects from database. Must I really tinker away ...
1
vote
1answer
74 views
MVVM: Responsibility of loading related data, what layer?
I have an application with an entity of class A. A has a field B, which is used by some viewmodels but not all. The field B is loaded in a separate loading operation from a different source.
What ...
1
vote
1answer
106 views
Yahoo BOSS API: Related Searches
Does anyone know if Yahoo BOSS can return Related Searches? For example, when I search for "Tennis Eblow", Google returns at the bottom on search results page like:
Searches related to Tennis Elbow
...
0
votes
1answer
329 views
Sort Magento related products by ASC sort order with NULLs last (or NULLs excluded)
My Magento 1.6.2.0 installation currently sorts related products in ascending order by sort order (thanks to this Q/A). The answer detailed there works beautifully, however I prefer my products with a ...
0
votes
1answer
406 views
sharepoint 2010 InfoPath Form creates tasks
So I have 1 Document library and 1 Tasks list.
In the workflow when a new info path form is saved depending on various questions tasks are created in the tasks list.
I have a webart displaying all ...
1
vote
0answers
173 views
Entities in participate in the 0 related 'Role' were found. 1 'Role' is expected
I have 3 tables
Roles
------
RoleId(PK)
RoleName
RoleDescription
CustomPermissions
-----------------
PermissionId(PK)
PermissionName
PermissionDescription
RolePermissionMappings
...
0
votes
2answers
302 views
Related lookup field foreign key doesn't work in inline Django
i've a problem with my tabularinline field. I have model like this
class Product(models.Model):
....
class Pemesanan(models.Model):
produks = models.ManyToManyField(Product, verbose_name=u"Kode ...
1
vote
0answers
141 views
Multisite Related Posts
I have currently been using this code to output related posts for each of my blog posts based on the tags associated with that post.
<?php
$orig_post = $post;
global $post;
$tags = ...
2
votes
1answer
193 views
DJANGO: How to sort objects based on attribute of a related model?
I have a User model and UserProfile model. In the User model I'd like to order my query so that its in alphabetical order by last_name. Then I'd like to order it by the User_profiles "title" attribute ...
1
vote
2answers
397 views
Filtering related entities with Entity framework
I'm looking for the best way to to load and filter related child entities. I have something that works, but I'm unsure if it's the best or even the right way to achieve what I want. Working code ...


