删除 Oracle Forms 数据块中的字段突出显示
在 Oracle Forms 10g 中,当您使用 GO_BLOCK 或 GO_ITEM 内置函数以编程方式导航到数据块中的字段,并将该字段设置为特定值(在我们的示例中为通配符“%”)时,Forms 将自动突出显示字段中的值。然后,当用户开始在该字段中输入内容时,其中的任何值都将被擦除,因为它已突出显示。
有没有办法导航到字段,为字段分配值,并将光标设置在第一个字符之前,而不突出显示字段中的文本?
In Oracle Forms 10g, when you programmatically navigate to a field in a data block using the GO_BLOCK or GO_ITEM built-in functions, and set the field to a certain value (in our case, the wildcard '%'), Forms will automatically highlight the value in the field. Then when the user begins typing in that field, whatever value was there will be wiped out because it was highlighted.
Is there any way to navigate to a field, assign a value to the field, and set the cursor before the first character without highlighting the text in the field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您要导航的项目,您是否尝试将“保持光标位置”(如下面的屏幕截图所示)的值设置为“是”?
For the item you are navigating to have you tried setting the value of "Keep Cursor Position" (shown in the screen shot below) to Yes?
我发现将数据项设置为“多行”并将“保留位置”属性设置为“是”会导致表单将光标设置在第一个字符之前,而不突出显示字段中的文本。这是期望的性能。
I found that setting the data item to Multi-line and setting the Keep Position property to Yes caused the form to set the cursor before the first character without highlighting the text in the field. This is the desired performance.