如何将工作周设置为 Domino 日历视图中的初始格式?
我希望我的 Domino 日历视图最初设置为工作周格式(显示星期一到星期五)
在 Designer 中,我转到 View Properties
- Date and Time Format
选项卡。有一个初始格式
组合框,我可以从这些项目中进行选择。
- Default -
One Day
Two Days
Work Calendars
One Week
Two Weeks
One Month
但他们都没有给我想要的工作周格式。
有趣的是,用户可以通过视图标题中的“周”选项卡来使用它。
我想知道是否有任何方法可以以编程方式选择它。
更改日历格式的公式是什么? 什么时候(事件是什么)适合执行它?
这是多米诺 8
I want my Domino Calendar View to be initially setup in work-week format (showing monday to friday days)
In Designer, I go to View Properties
- Date and Time Format
tab. There is a Initial Format
combo box where I can choose from those items.
- Default -
One Day
Two Days
Work Calendars
One Week
Two Weeks
One Month
But none of them gives me the desired work-week format.
Interestingly, it is available to the users thru the Week Tab in the View Header.
I am wondering if there is any way to select it programmatically.
What is the formula to change the calendar format?
when is (what is the event) appropiate to execute it?
This is Domino 8
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将代码添加到视图的 PostOpen 事件中以更改日历格式。在公式语言中,您可以使用:
“5”代表工作周视图。
You can add code to the PostOpen event of your view to change the calendar format. In formula language, you can use this:
The "5" represents a Work Week view.
我已经放弃了。
我在
查看属性 - 日期和时间格式
选项卡中选择了默认
作为初始格式
。因此,用户可以选择她想要的任何内容,Notes 会记住她选择的格式。
I've given up.
I have selected
Default
as theInitial Format
in theView Properties - Date and Time Format
tab.So, the user can choose whatever she wants and Notes will remember the chosen format for her.