jQuery 和 Intraweb?

发布于 2024-08-25 13:09:36 字数 97 浏览 2 评论 0原文

有人有在 Intraweb 中执行 jQuery 通知/弹出窗口/日历的示例吗?

一个简单的例子就很好了...

甚至更好...dojo 版本会很棒。

Anyone have a sample of doing a jQuery notification/popup/calendar in Intraweb ?

A simple example would be great..

Even better... dojo version would be great.

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

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

发布评论

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

评论(4

软甜啾 2024-09-01 13:09:36

访问 CGDevTools 他们有一个 jQuery 组件套件可以与 Intraweb 一起使用,也许他们有你需要的东西。

Visit CGDevTools they have a jQuery components suite to use with Intraweb maybe they have what you need.

地狱即天堂 2024-09-01 13:09:36

Dojo 有用于通知的烤面包机小部件:

演示: http://docs.dojocampus.org/dojox/ widget/Toaster

api : http://api.dojotoolkit.org /jsdoc/1.2/dojox.widget.Toaster

工作起来就像一个魅力,并且非常可配置。

对于弹出窗口,请使用 dojo 的对话框小部件。

对于日历,请使用 dojo 的 datepicker 小部件。

如果您愿意,您可以收到一条通知,其中包含启动包含日历的弹出窗口的链接...

Dojo has the toaster widget for notifications:

demo : http://docs.dojocampus.org/dojox/widget/Toaster

api : http://api.dojotoolkit.org/jsdoc/1.2/dojox.widget.Toaster

Works like a charm and is very configurable.

For popups use dojo's dialog widget.

For calendar use dojo's datepicker widget.

If you like you can have a notification with a link to lauch a popup that contains a calendar...

只为一人 2024-09-01 13:09:36

这里有一个弹出消息

http://jsbin.com/otinu3/edit

如果您在使用 jsbin 时遇到困难(用于测试这些东西的伟大沙箱),标记是:

<!DOCTYPE html>
<html>
    <head>
        <link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"></link>
        <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
        <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
        <meta charset=utf-8 />
        <title>Popup example</title>
    </head>
    <body>
        <div id="popupMessage">This is the popup message</div>
    </body>
</html>​

并且 JavaScript 很简单

$('#popupMessage').dialog({title:'Here we go'});​

Here's a popup message

http://jsbin.com/otinu3/edit

In case you have difficulty using jsbin (great sandbox for testing these things), the markup is:

<!DOCTYPE html>
<html>
    <head>
        <link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"></link>
        <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
        <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
        <meta charset=utf-8 />
        <title>Popup example</title>
    </head>
    <body>
        <div id="popupMessage">This is the popup message</div>
    </body>
</html>​

and the JavaScript is as simple as

$('#popupMessage').dialog({title:'Here we go'});​
眸中客 2024-09-01 13:09:36

在 Intraweb 新闻组中,我发布了一个在 Intraweb 中使用 jQuery 的非常基本的示例。

请参阅 atozedsoftware.intraweb.attachments(位于 nntp://news.atozed.com)。主题“André Aigneren 的 JQuery 示例项目”,日期为 2009 年 11 月 23 日。用 D2010 和 IW 10 编写。它使用 datepicker 控件。

该示例基于此博客: http://www.hadihariri.com/Blogs/ Delphi/20080117.aspx

格特

In the Intraweb newsgroups I've posted a very basic example for using jQuery in Intraweb.

See atozedsoftware.intraweb.attachments (on nntp://news.atozed.com). Thread "JQuery sample project for André Aigneren", date November 23rd, 2009. Written in D2010 and IW 10. It is using the datepicker control.

The example is based on this blog: http://www.hadihariri.com/Blogs/Delphi/20080117.aspx.

Gert

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