symfony admin 生成器外键列表
您好,我正在使用 symfony 1.4 学说 orm。我有三个表,例如课程、日历和课程提供。 Course_offering 表有两个外键分别指向课程和日历表。在管理生成器中,course_offering_module 只是检索这两个 ID。相反,我想要用逗号分隔的值,而且如果我添加新课程,它也应该自动修改外键表。这可以在管理生成器中实现吗?如何?
Hi I am using symfony 1.4 doctrine orm. I have three tables for example course, calendar and course_offering. Course_offering table has two foreign keys to course and calendar table. In admin generator, the course_offering_module just retrieve these two ID's. Instead I want values seperated by commas, also If I add new course offering it should automatically modify that foreign key tables too. This can be possible in admin generator? how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您可以在模型中添加 __toString() 方法,以返回您想要的值而不是 ids。
其次,如果你想渲染特定的布局,你可以在 admingen 中使用部分作为列:
First, you can add __toString() method tou your models, to return the value you want instead of ids.
Second, if you want render a specific layout, you can use partial as column in admingen: