- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因为我需要为我的日程安排设置自定义设置,所以我实现了单独的日历、日程安排程序和 RecurrenceEditor 小部件。到目前为止,一切正常,但我无法从 RecurrenceEditor 小部件获取解析后的字符串。我没有在 API 文档中看到将规则作为字符串拉取的方法(RecurrenceEditor 小部件也没有真正记录在那里)。
这就是我设置 recurrenceEditor 的方式:
$(document).ready(function()
{
$("#recurrence-editor").kendoRecurrenceEditor({
start: new Date(),
change: function(e)
{
var editor = e.sender;
// I want to get the recurrence rule string here.
}
});
});
我在 Firebug 中没有看到任何提示我可以尝试的方法或属性的内容。到目前为止,我已经尝试过:
editor.ruleValue
editor.recurrenceRule
看起来我可以访问一些信息,但我不想编写自己的 selections-to-parseable-string 方法,如果我可以从循环编辑器本身获取它的话。
更新:当我这样设置时:
$(document).ready(function()
{
$("#recurrence-editor").kendoRecurrenceEditor({
start: new Date(),
edit: function(e)
{
var editor = e.sender;
var recurrenceString = editor.RecurrenceRule;
return recurrenceString;
}
});
});
编辑事件永远不会触发。可能是因为我没有将循环编辑器实现为 Scheduler 小部件的一部分,而是作为页面上的独立小部件。
谢谢!
最佳答案
在调度程序的编辑事件中设置循环编辑器,它会触发更改事件,值属性是标准的 iCal 循环规则。
这是我的:
// Setup Recurrence Editor
// Telerik support recommends this method over the common inline script
// because it allows us to choose which recurrence editor. However, it does
// break the MVVM two-way bindings, so the current value MUST be explicitly set
// on creation, and the change event must be handled.
var event = e.event,
container = e.container,
recurrenceEditor = container.find("#recurrenceEditor");
if (kendo.support.mobileOS === false) {
recurrenceEditor.kendoRecurrenceEditor({
start: new Date(e.event.start),
value: e.event.recurrenceRule,
timezone: self.scheduleConfig.timezone,
messages: self.scheduleConfig.messages.recurrenceEditor,
change: function (ev) {
event.set("recurrenceRule", this.value());
}
});
} else {
// The Mobile Recurrence Editor requires the parent kendo pane
// be passed as a parameter, otherwise it will crash when the
// user attempts to alter the frequency
var pane = container.parent(".km-pane").data("kendoMobilePane");
recurrenceEditor.kendoMobileRecurrenceEditor({
start: new Date(e.event.start),
value: e.event.recurrenceRule,
timezone: self.scheduleConfig.timezone,
messages: self.scheduleConfig.messages.recurrenceEditor,
pane: pane,
change: function(ev) {
event.set("recurrenceRule", this.value());
}
});
}
和 HTML(在自定义编辑器模板内)
<div class="lineEntry" data-bind="invisible: recurrenceId">
<div id="recurrenceEditor" name="recurrenceRule" data-bind="value: recurrenceRule" class="toInlineBlock">
</div>
</div>
关于kendo-ui - 有没有办法从 KendoUI Recurrence Editor 获取重复字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24496064/
我正在尝试阅读手写文档。为此,我将对字符进行分段,然后对由此分段的字符进行 OCR/ICR。 我想要这样的结果!虽然这是一个非常微不足道的案例。手写可能是草书,单笔画可以用来分割字符,但并不总是有效。
我已经在业余时间为此苦苦思索了一个星期左右,我目前在我的模型中 导入重复字段...course_recurring = recurrence.fields.RecurrenceField(null=T
我已经在业余时间为此苦苦思索了一个星期左右,我目前在我的模型中 导入重复字段...course_recurring = recurrence.fields.RecurrenceField(null=T
我有一个带有单个预测器和实值输出的时间序列回归问题,我想使用 LSTM 递归神经网络对数据进行建模。我应该如何选择模型中的时间步数? LSTM层的长度有上限吗? 最佳答案 当您有很长的输入序列并且只有
我尝试使用迭代方法解决以下递归关系, T(1) = 8 T(n) = 3T(n-1) - 15 迭代: i=1 T(n) = 3(3T(n-2) - 15) -15 i=2 3(3(3T(n-3)
我试图理解典型二分搜索算法的运行时间为 O(log n) 的证明。在这个证明中,确定了一些输入大小 n 的一般运行时函数 T(n),这用于显示大 O。我了解其中的大部分,但不是第一步。 证明首先确定如
我最近试图通过 CLRS 求解一些递归关系,并且在求解这些方程时我注意到了一个奇怪的细微差别。我不知道你们中的任何人是否注意到它,或者理论冠军可以对此进行更多说明。 (我也拥有计算机科学学位,但没有理
我正在遍历事件电子表格并相应地修改我的日历。 我可以使用 setRecurrence 创建多日事件,但我不知道如何删除该类并将其变回单日事件。 知道这一点很重要,因为显然不止一次将 setRecurr
我的目标是安排一个 Azure 批处理任务从添加之日起每 5 分钟运行一次,并且我使用 Python SDK 来创建/管理我的 Azure 资源。我尝试创建一个 Job-Schedule它会在指定的P
我有递推关系:T(n) = c*T (n/3) + (c/2)*n对于任何 c 让 T(n) >= n^1.5 成为替代方法的猜测。 最佳答案 假设T(n) n c*n^1.5 > a*n^1.5 +
我正在尝试为该算法编写递归关系。但是我对“根”变量感到困惑。任何人都可以帮助我或建议我一个更好的递归算法来计算 n 可能的二叉树的数量节点? Algorithm countTrees(n) {
我正在尝试安排通过 API 发送仪表板: http://docs.gooddata.apiary.io/#reportsanddashboardsbyemail 设置电子邮件发送频率的参数有一些奇怪的
在 Tensorflow 的 RNN 教程中:https://www.tensorflow.org/tutorials/recurrent .它提到了两个参数:批量大小和时间步长。我对这些概念感到困惑
我需要一个 RRULE 解析器方法,在其中我可以提供事件开始日期、事件结束日期和该事件的 RRULE 等信息。方法应返回该事件发生的日期列表。 我尝试使用谷歌库和ical,但无法创建方法。请帮忙 最佳
这可能是一个非常简单的问题,但却给我带来了很多麻烦。 代码: def search_likes(passed_list): #passed_list contains links to find be
因为我需要为我的日程安排设置自定义设置,所以我实现了单独的日历、日程安排程序和 RecurrenceEditor 小部件。到目前为止,一切正常,但我无法从 RecurrenceEditor 小部件获取
我必须安排一个页面每周自动发布一次。如果盒子功能可以安排它,我看不到任何东西。如何使用 SDL Tridion 2011 API 实现这一点。 最佳答案 最好的办法是编写一个使用 SDL Tridio
来自 PyTorch Seq2Seq 教程,http://pytorch.org/tutorials/intermediate/seq2seq_translation_tutorial.html#at
我对 iCalendar 规范 RFC 5545 中的属性 RECURRENCE-ID 和此属性中的 RANGE 参数有点困惑。 假设一个日历组件包含一个称为“ session ”的重复事件,该事件应
我试图告诉 maxima 有关 Hermite 多项式的递推关系: 我的第一个表达是这样的: phi[0]:exp(-1/2*x^2); phi[1]:sqrt(2)*x*phi[0]; wxplot
我是一名优秀的程序员,十分优秀!