如何在不使用 java 脚本的情况下单击 websphere jsf portlet 中数据表内的复选框时显示确认框
我正在开发一个 websphere jsf portlet,当单击 dataTabale 内的复选框时,我需要显示一个确认框。所有选定的项目都将在数据库中更新。我正在避免弹出窗口,但由于用户希望程序足够灵活,以便他们在特殊情况下进行更新,所以我所能做的就是与用户仔细检查。但绝对不使用 javascript。我正在使用 jsr 168 portlet 和 JSf 1.2 以及 IBM RAD 7.5
谢谢
I am developing a websphere jsf portlet where I need to display a confirmation box when a check box inside dataTabale is clicked. All selected items will be updated in the database. I am avoiding pop up but since the user wants the program to be flexible enough to let them do the update in special occasions so all I can do is to double check with the user. But definitely w/o using javascript. I am using jsr 168 portlet and JSf 1.2 with IBM RAD 7.5
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这很简单:你不能。如果没有 Javascript,除了发送表单(通过单击按钮或 - 如果只有一个文本输入 - 按 Enter 键)或单击链接之外,您无法对任何其他内容做出反应。
所以除非你改变问题 - 答案是:你想要的是不可能的。
Well, this one is simple: you can't. Without Javascript you can not react to anything else than sending a form (by clicking a button or - if there is only one text input - pressing enter) or clicking a link.
So unless you change the question - the answer is: what you want is impossible.