wiQuery
- 授权协议: MIT
- 开发语言: Java JavaScript
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/wiquery/
- 软件文档: http://code.google.com/p/wiquery/wiki/QuickStart
软件介绍
wiQuery是一个将 jQuery 与 jQuery UI 集成到Java Wicket Web开发框架中的开源项目。Wicket 框架提供了一种真正采用面向对象的方式来创建Web应用程序。wiQuery支持的jQuery UI组件包括:
- Tabs
- Dialog
- Accordion
- Effects
- Resizable
- Draggable
- Droppable
- Sortable
一个简单的对话框例子如下:
public class HomePage extends WebPage {
public HomePage(final PageParameters parameters) {
final Dialog dialog = new Dialog("dialog");
add(dialog);
Button button = new Button("open-dialog");
button.add(new WiQueryEventBehavior(new Event(MouseEvent.DBLCLICK) {
@Override
public JsScope callback() {
return JsScope.quickScope(dialog.open().render());
}
}));
add(button);
}
}
An Introduction to Probability Theory and Its Applications
William Feller / Wiley / 1991-1-1 / USD 120.00
Major changes in this edition include the substitution of probabilistic arguments for combinatorial artifices, and the addition of new sections on branching processes, Markov chains, and the De Moivre......一起来看看 《An Introduction to Probability Theory and Its Applications》 这本书的介绍吧!
