Tagged Questions
1
vote
0answers
42 views
How to bound primary key to custom ON condition in Yii Relations?
The problem:
How to bound primary key to custom relation query?
Context, what for:
One Source can relate to several different Modifications (MANY_MANY), each modification relate to some Product ...
0
votes
2answers
68 views
Yii how to count related models (getRelation with params)?
I have a HAS_MANY relation called "relationName",
So I can get all related models using
$model->relationName;
or using
$model->getRelated('relationName');
I can also get a subset of ...
0
votes
2answers
56 views
Searching by related model field
I know there are plenty of topics on this but I searched&tried so many and it is still not working.
I have tables: Team and Worker. Any worker can be assigned to a Team. So at the Workers Manager ...
0
votes
0answers
124 views
No results found on related gridview
<?php echo CHtml::beginForm('','post',array('id'=>'base-si-received-item-form'));?><?php
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'base-si-received-item-grid',
...
0
votes
1answer
139 views
Yii correct syntax for conditions in relation definitions
I'm struggling to get the correct syntax for a relation condition I'm trying to set. The main relation is set with the foreign key question_id, but also contained in the child table is the user_id ...
0
votes
1answer
362 views
Yii composite key in relatins with custom params
I want to use composite key in ActiveRecord.
I got two tables.
Quotes and Comments.
Quotes contains pk - id;
Comments pk is composite - module, section, cid
module - module name, where comments come ...
0
votes
0answers
300 views
form with multiple relations yii
I'm new to Yii and in trouble with relations and a special view for editing and creating.
My entities:
customer(id,...)
profile(id,customer_id,...)
device(id,customer_id,profile_id,...)
app(id,...)
...
2
votes
1answer
2k views
applying a default scope with reference to a relation in yii
I can't find too much documentation on applying a default scope to a model in yii, I was wondering if someone could explain or point me in the right direction.
The quick version of my question:
Is ...
1
vote
1answer
264 views
how to make relation between two foreign key values of two tables in Yii
I have the database just like this
==== cis_policy_registration====
id
policy_id
email_id
policy_start_date
==== cis_policy_family_details===
id
policy_id
is_main_applicant
firstname
lastname
...
1
vote
1answer
229 views
In Yii, how can I call views belonging to another models that has a HAS_MANY relation defined with the current controller's model?
I need some guidance on how to call views within a controller for models that have a relationship defined with the current controller"s model.
In my case, I have a model names "catalog", which has a ...
0
votes
2answers
702 views
Using with and together in Yii
I have a grid with paging which displays client data.
Let's say I have a table Client with name, lastName and address in it, a table Phone_Number which has phone numbers for each of the rows in Client ...
0
votes
1answer
150 views
Yii Framework - Two instances of the same relation
I have a model Animal in Yii which has two relations, mainRace and secondaryRace, both of them being an instance of the Race model.
How can this be translated into the relations array of Animal model ...
3
votes
1answer
2k views
Many to Many, with another column
I'm wondering if anyone has faced this issue.
Let's assume I have two tables: products and carts (related many to many).
Now, joining table has additional column - amount (how many products of ...
4
votes
2answers
2k views
Define a custom ordering criteria in the relations() method in Yii
I have a model A that has a relationship of type HAS_MANY with model B.
B's attributes:
id,
user_id,
message,
date,
parent_message_id
I need elements of model B to be ordered by date (descending) ...
1
vote
2answers
2k views
MANY_MANY relation does not work for me
I am now discovering the Yii framework and doing it by trying to develop a simple application which allows to create Leagues and assign Players to it. The relationship between these is many to many (a ...


