Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher Release Candidate 11

[eluser]minimal design[/eluser]
Is this the way the ManyToMany is supposed to work?

got 3 tables in my DB:

Code:
CREATE TABLE `articles` (
  `id` int(5) unsigned NOT NULL auto_increment,
  `date` date NOT NULL,
  `title` varchar(255) NOT NULL,
  `body` text NOT NULL,
  `excerpt` text NOT NULL,
  PRIMARY KEY  (`id`)
)

CREATE TABLE `tags` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
)

CREATE TABLE `articles_tags` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `articles_id` int(5) NOT NULL,
  `tags_id` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
)


I got that in my articles YAML:

Code:
tags:
        class: ManyToMany
        params:
            display_field: name

Everything works fine, but when I add a tag to an article, with the arrow button to put it from left to right box, next time I open that same entry, the tag is present in both sides so I can add the same tag over and over to the same entry and it will create "duplicates" in my "articles_tags" table. shouldn't the tag be gone from left box if already assigned in right box?

Also, as a side not, those boxes should probably labeled with add/remove out of the box for usability sakes. a detail really...

Thanks!


Messages In This Thread
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 04:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:10 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:15 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 10:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 03:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 04:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 05:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 09:14 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:51 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:33 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 04:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 05:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:31 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:46 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:12 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:13 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:16 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:20 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:41 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:25 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 11:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 12:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 03:17 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 05:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-05-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 06:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 08:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 10:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 02:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 04:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 02:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 07:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 04:53 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:50 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:53 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 11:49 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 09:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 02:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:57 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-18-2008, 01:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 04:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 09:09 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 10:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:13 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 03:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 05:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 08:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 03:48 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:32 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:34 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 04:02 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 11:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-25-2008, 03:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 06:45 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:59 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 07:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 10:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-29-2008, 09:31 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:22 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 05:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 09:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 10:52 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:27 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:54 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 07-21-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 03:33 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB