如何在 Rails 上动态更改事件日历事件详细信息?

发布于 2024-12-04 13:10:18 字数 195 浏览 2 评论 0原文

我在我的 Rails 项目(rails 2.3.8)上使用 事件日历 并且我需要添加以下功能:允许用户从下拉菜单中选择值,并根据事件加载的内容进行更改。 (通常在活动日历中,它会显示活动的活动名称)。请问有人能给我解决这个问题吗?

I'm using event calendar on my rails project (rails 2.3.8) and I need to add feature that allows to users to pick value from drop down menu and according to that things which have loaded on event should be change. (Normally in event calendar it shows event name on the events). Please can some one give me a solution for this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2024-12-11 13:10:18

我找到了这个问题的答案,我们可以通过在 event_strips_for_month 方法

app/controllers/calendar_controller.rb

@event_strips = Event.event_strips_for_month(@shown_month, :include => :some_relation, :conditions => 'some_relations.some_column = true')

上传递参数来做到这一点,这可能对另一个新手了解有所帮助活动日历。谢谢

I found a answer for this problem and we can do that by passing parameters on event_strips_for_month method

app/controllers/calendar_controller.rb

@event_strips = Event.event_strips_for_month(@shown_month, :include => :some_relation, :conditions => 'some_relations.some_column = true')

This might be helpful for another new comer to learn about event calendar. Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文