SmartClient:如何使用模式窗口

发布于 2024-10-14 07:56:35 字数 449 浏览 2 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(3

温柔戏命师 2024-10-21 07:56:36

他们已附加与代码相关的 JavaScript。应用 Window 的两个基本属性来获取具有 Modality 的 Window:

  1. IsModal = true;
  2. 显示模态掩码 = true。

They have attached JavaScript associated with the code. Two basic properties of Window are applied to get a Window having Modality:

  1. IsModal = true;
  2. ShowModalMask = true.
猛虎独行 2024-10-21 07:56:36

这是基于 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.

赤濁 2024-10-21 07:56:36

这里完成的编程非常简单。如果您擅长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.

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