SmartClient:如何使用模式窗口
我想使用 javascript 在 SmartClient 中开发一个应用程序。在该应用程序中,需要 输入例如价格范围和类别。提交表单时,无需重新加载将发送的页面 向服务器请求并获取项目列表。提交后将显示其中很少的项目(在步骤 2 中) 其他将在第3步显示。在步骤 2 和步骤 3 之后将触发数据库查询
结构来显示项目详细信息,其中包含 item_pic、Item_name、item_price 和可用性。
我如何为此使用模态窗口(在 SmartClient 中)?
我在这个网址看到了一个例子: http://www.smartclient.com/?skin=Enterprise #模态 但我无法理解它是什么类型的编程? 以及如何使用该示例来制作我的应用程序?
I want to develop an application in SmartClient using javascript. In that application, it takes
inputs like price range and category. On form submit, without reloading the page it will send
request to server and will get the list of items.few of them will be displayed after submit(on step 2)
and other will be displayed on 3rd step. And there will be a database query fired after step-2 and step-3
Structure to display items details contains item_pic, Item_name, item_price and availability.
How can i use modality window(in SmartClient) for this?
i saw an example at this URL: http://www.smartclient.com/?skin=Enterprise#modality
but i couldnt understand what type of programming is it?
and how to use that example to make my application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
他们已附加与代码相关的 JavaScript。应用 Window 的两个基本属性来获取具有 Modality 的 Window:
They have attached JavaScript associated with the code. Two basic properties of Window are applied to get a Window having Modality:
这是基于 javascript(我猜是 JSNI Code impl)的实现。对于类似示例的java代码实现,请参阅: http://www.smartclient.com/smartgwt/showcase /#layout_windows_modality。
只需将相应对话框的 setIsModal(Boolean) 设置为 true 即可实现模态。
That's javascript(I guess JSNI Code impl) based implementation. For java code implementation of similar example refer: http://www.smartclient.com/smartgwt/showcase/#layout_windows_modality.
You can achieve the modality by simply setting setIsModal(Boolean) of the corresponding dialog box to true.
这里完成的编程非常简单。如果您擅长java脚本,那么尝试学习
JSON
(java脚本对象表示法),您会发现它很简单。JSON
正在成为流行的数据交换介质。它重量轻,易于解析,消耗的流量较少。Well the programming done here is very simple. If you are good in java-script then try to learn
JSON
(java script object notation) and you would find it simple.JSON
is becoming popular data interchange medium. It's light weight, easy to parse, and consumes less traffic.