⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kapow.js

📁 javascript 很酷的类库
💻 JS
字号:
/*
 * Isomorphic SmartClient
 * Version 6.5 (2008-04-30)
 * Copyright(c) 1998-2007 Isomorphic Software, Inc. All rights reserved.
 * "SmartClient" is a trademark of Isomorphic Software, Inc.
 *
 * licensing@smartclient.com
 *
 * http://smartclient.com/license
 */
isc.defineClass("RobotServerPicker", "Window").addProperties({autoCenter: true,autoSize: true, isModal: true,title: "Select Robot Server",formConstructor: "DynamicForm",formDefaults: {    width: 300,    numCols: 2,    colWidths: [150, "*"],    defaultItems: [        {name: "robotServerURL", title: "Robot Server URL", defaultValue: "http://127.0.0.1:50080"},//        {name: "robotServerURL", title: "Robot Server URL", defaultValue: "http://10.10.1.161:50080"},        {name: "next", type: "button", title: "Next", click : "form.creator.nextClick()", startRow: true},        {name: "cancel", type: "button", title: "Cancel", click: "form.creator.hide()", endRow: false, startRow: false}    ]},myAutoChildren: ["form"],initWidget : function () {    this.Super("initWidget", arguments);    this.form = this.createAutoChild("form");    this.addItem(this.form);},nextClick : function () {    var robotServerURL = this.form.getValue("robotServerURL");    window.robotServerURL = robotServerURL;    this.hide();    this.fireCallback("robotServerSelected", "robotServerURL", [robotServerURL]);}});isc.RobotServerPicker.registerStringMethods({    robotServerSelected: "robotServerURL"});

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -