PowerBuilder:数据窗口中的复选框

发布于 2024-12-20 20:46:26 字数 292 浏览 3 评论 0原文

我在数据窗口中有一个复选框,可以选中和取消选中它。 db 中的默认值为 0。选中时,db 值将更新为 1,取消选中时,该值将再次更新为 0。

但是,我只想在数据库值为 0 时更新数据库。如果它已经是 1,那么我不希望用户能够将其更改回 0。所以请告诉我该怎么做? 以下是我的数据窗口中复选框列的代码:

column=(type=decimal(0)  update=yes updatewhereclause=yes name=ok dbname="table.ok"  values="1/0"  )

I have a checkbox in the DataWindow, It can be checked and unchecked. The default value in the db is 0. When it's checked, the db value is updated to 1 and on uncheck, the value is updated to 0 again.

However, I want to update the database only if it has value 0. If it is already 1, then I don't want the user to be able to change it back to 0. So please tell me how can I do that?
Here is the code from my DataWindow for the checkbox column:

column=(type=decimal(0)  update=yes updatewhereclause=yes name=ok dbname="table.ok"  values="1/0"  )

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

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

发布评论

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

评论(2

青衫负雪 2024-12-27 20:46:26

您可以保护该复选框以防止取消选中它:在复选框的“常规/保护”字段中:

if(ok = 1, 1, 0)

选中该复选框后,它就会受到保护(您仍然需要将数据更新到基础)。
下次检索时,您可以看到该复选框已受到保护。

您可能必须对 Pointer 使用类似的表达式来显示该字段已被阻止,例如使用 NoPointer! 光标。

You could protect the checkbox to prevent unchecking it : in the general / protect field of your checkbox :

if(ok = 1, 1, 0)

Once the checkbox has been checked, it becomes protected (you still have to update the data to the base).
On the next retrieve, you can see that the checkbox is already protected.

You might have to use a similar expression for the Pointer to show that the field is blocked, for example with the NoPointer! cursor.

一场信仰旅途 2024-12-27 20:46:26

尝试使用:
if(upper(ok) = 'OFF', 1, 0)
或者反过来:
if(upper(ok) = 'ON', 1, 0)
取决于您如何在复选框的属性中设置开/关值。

注意我正在使用 PowerBuilder 2017

try using:
if( upper(ok) = 'OFF', 1, 0)
or the other way around:
if(upper(ok) = 'ON', 1, 0)
depending on how you set the on/off values in the properties of the check box.

Note I'm using PowerBuilder 2017

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