我们可以在 Rails 上动态更改事件日历大小吗?

发布于 2024-12-05 19:02:49 字数 187 浏览 0 评论 0原文

我正在 Rails 2.3.8 上使用 事件日历 插件,我需要知道是否可以更改动态调整日历大小。例如,在一个页面中,我需要在整页中显示日历,在另一页中,我需要将相同的日历放在小 div 中。可以使用事件日历插件吗?

I'm using event calendar plug-in on rails 2.3.8 and I need to know whether I can change the calendar size dynamically. For example in one page I need to show calendar in full page in another page I need to put that same calendar in small div. Is it possible with the event calendar plug-in ?

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

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

发布评论

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

评论(1

帅冕 2024-12-12 19:02:49

如果没有真实的例子,我只能给出它如何工作的草图:

将视图包含在类似的内容中:

<div id="smallcal">
  <%= event_calendar %>
</div>

然后添加一个样式表,该样式表复制 event_calendar.css 的规则,但像在以下示例:

#smallcal > .ec-calendar { ... modified rules here ... }

因此,您修改的规则只会更好地匹配您想要缩小日历的变体。也许可以通过包括以下内容来确保日历更小:

div#smallcal {
  width: 200px;
  ...
}

Without the real example, I can only give a sketch how it could possibly work:

Include the view in something like:

<div id="smallcal">
  <%= event_calendar %>
</div>

Add then a stylesheet that copies the rules of event_calendar.css, but modifies them like in the following example:

#smallcal > .ec-calendar { ... modified rules here ... }

So your modified rules will match better only for your variant where you want to make the calendar smaller. Perhaps it is possible to ensure that the calendar is smaller by including:

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