English 中文(简体)
如何在点击后隐藏热点。
原标题:how to hide i link hotspot once it is clicked?

i 申请很多,网页有两个链接:

  1. Check-In
  2. Check-Out

both links open a attendance form for daily check-in and check-out..

用户检查一想掩盖检查链接,只显示检查链接......

i have a field "Status" in attendance form which tells whether employee has checked in or checked out. How do i use that field in page hide-when formula to hide my link once its clicked?

最佳回答

首先,这些联系必须放在单独的段落中,以便能够单独控制。

第二,您必须了解第一栏的分类情况,并包含用户名称,之后是日常出勤文件中的田地。 例如,它应当采用“用户/Org-01-12”等形式。 意见中的第二栏应具有这些文件的地位。 为了这一回答,请说“DailyAttendance”。

第三,有三种情况:目前用户的出勤文件没有,确实存在,状况是“检查的”,或者确实存在,情况是“检查的”。 也许有第四个案例,即文件存在,但现状既不是“检查”,也不是“检查”,但你的逻辑或许应当试图避免这种情况,无论如何,Im会书写隐蔽时的公式,以便把两者联系起来。

现在,在大多数情况下,从见到When,而不是Hide-When来看,很难想象一下你的要求。 阁下:

  1. See the Check-In hotspot when the daily attendance document for the current user and current day does not exist.
  2. See the Check-Out hotspot when the daily attendance document exists for the current user and current day, and the Status field in the document is "Checked In".

为了在暗藏的公式中使用眼光逻辑,你只是根据看见时的规则来写你的公式,然后就最后结果而言,这不符合逻辑。

你的藏身之处——关于含有“Check-In”热点的段落,将视之为:

key := @Name([CN];@Username) + "-" + @Text(@Today);
status := @DbLookup("Notes":"NoCache";"":"";"DailyAttendance";key;2);
notFound := @IsError(status);
seeWhen = notFound;
!(seeWHen);

多数专家 说明方案制定者会把这一办法设计成一个较短的方案。 我先把它放在一个分步骤的形式,使之尽可能明显。

你的藏身之处——关于含有“Check-Out”热点的段落,你将照此办理:

key := @Name([CN];@Username) + "-" + @Text(@Today);
status := @DbLookup("Notes":"NoCache";"":"";"DailyAttendance";key;2);
found := !(@IsError(status));
seeWhen = found & (status = "Checked In");
!(seeWhen)
问题回答

暂无回答




相关问题
Calling Lotus Script Function From Lotus Formula

I need to call a lotus script function from Lotus Formula. The function returns a result. I do not just want to run a script which does not return any value. This is for Lotus Notes 7. Example ...

Open an attachment for editing and save changes made to it

My Lotus Notes document has a rich text item that stores an attachment. I want to edit the attachment and after this to save the attachment back to the Lotus Notes document. This is the script that ...

No of Years, Month and Days

I created Lotus Notes database for HR Department. I entered field Join date. Also entered field “Total Service Period”. I want get the calculated Number of Years, Month and Days of service in to “View”...

How to add a field from a 2nd form?

I m modifying an existing Lotus view to include a field from another form. I first appended a new column and set it to the desired field. However, after I refreshed, the new column was blank even ...

How do I select all documents manager

I m new to Lotus development and I need to create a view that shows where the user is manager of another database besides its own mail. Thanks in advance for any help.

热门标签