实例介绍
【实例截图】
【核心代码】
.
├── codebase
│ ├── fonts
│ │ ├── roboto-bold-webfont.woff
│ │ ├── roboto-bold-webfont.woff2
│ │ ├── roboto-medium-webfont.woff
│ │ ├── roboto-medium-webfont.woff2
│ │ ├── roboto-regular-webfont.woff
│ │ └── roboto-regular-webfont.woff2
│ ├── suite.css
│ ├── suite.css.map
│ ├── suite.d.ts
│ ├── suite.js
│ ├── suite.js.map
│ ├── suite.min.css
│ ├── suite.min.js
│ └── types
│ ├── ts-all
│ │ └── sources
│ │ └── entry.d.ts
│ ├── ts-calendar
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Calendar.d.ts
│ │ ├── helper.d.ts
│ │ └── types.d.ts
│ ├── ts-chart
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── AxisCreator.d.ts
│ │ ├── Chart.d.ts
│ │ ├── ComposeLayer.d.ts
│ │ ├── Filters.d.ts
│ │ ├── Legend.d.ts
│ │ ├── Tooltip.d.ts
│ │ ├── helpers
│ │ │ ├── circle.d.ts
│ │ │ ├── common.d.ts
│ │ │ └── spline.d.ts
│ │ ├── scales
│ │ │ ├── RadialScale.d.ts
│ │ │ ├── Scale.d.ts
│ │ │ ├── SvgScales.d.ts
│ │ │ ├── TextScale.d.ts
│ │ │ └── index.d.ts
│ │ ├── series
│ │ │ ├── Area.d.ts
│ │ │ ├── Bar.d.ts
│ │ │ ├── BarX.d.ts
│ │ │ ├── BaseSeria.d.ts
│ │ │ ├── Donut.d.ts
│ │ │ ├── Line.d.ts
│ │ │ ├── NoScaleSeria.d.ts
│ │ │ ├── Pie.d.ts
│ │ │ ├── Pie3D.d.ts
│ │ │ ├── Radar.d.ts
│ │ │ ├── ScaleSeria.d.ts
│ │ │ ├── Scatter.d.ts
│ │ │ ├── Spline.d.ts
│ │ │ ├── SplineArea.d.ts
│ │ │ ├── Stacker.d.ts
│ │ │ └── index.d.ts
│ │ ├── shapes
│ │ │ ├── legend.d.ts
│ │ │ └── line.d.ts
│ │ └── types.d.ts
│ ├── ts-colorpicker
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Colorpicker.d.ts
│ │ ├── colors.d.ts
│ │ ├── helpers
│ │ │ ├── calculations.d.ts
│ │ │ └── color.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ ├── picker.d.ts
│ │ └── types.d.ts
│ ├── ts-combobox
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Combobox.d.ts
│ │ ├── ProCombobox.d.ts
│ │ ├── helper.d.ts
│ │ ├── keyListener.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ └── types.d.ts
│ ├── ts-common
│ │ ├── CssManager.d.ts
│ │ ├── FocusManager.d.ts
│ │ ├── KeyManager.d.ts
│ │ ├── ScrollView.d.ts
│ │ ├── core.d.ts
│ │ ├── date.d.ts
│ │ ├── dom.d.ts
│ │ ├── events.d.ts
│ │ ├── html.d.ts
│ │ ├── keycodes.d.ts
│ │ ├── polyfills
│ │ │ ├── array.d.ts
│ │ │ ├── element.d.ts
│ │ │ ├── math.d.ts
│ │ │ ├── object.d.ts
│ │ │ └── string.d.ts
│ │ ├── types.d.ts
│ │ └── view.d.ts
│ ├── ts-data
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── CollectionStore.d.ts
│ │ ├── DragManager.d.ts
│ │ ├── ajax.d.ts
│ │ ├── datacollection
│ │ │ ├── loader.d.ts
│ │ │ └── sort.d.ts
│ │ ├── datacollection.d.ts
│ │ ├── dataproxy.d.ts
│ │ ├── drivers
│ │ │ ├── CsvDriver.d.ts
│ │ │ ├── JsonDriver.d.ts
│ │ │ ├── XMLDriver.d.ts
│ │ │ └── drivers.d.ts
│ │ ├── helpers.d.ts
│ │ ├── lazydataproxy.d.ts
│ │ ├── selection.d.ts
│ │ ├── serializers
│ │ │ └── xml.d.ts
│ │ ├── treecollection.d.ts
│ │ └── types.d.ts
│ ├── ts-dataview
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── DataView.d.ts
│ │ ├── ProDataView.d.ts
│ │ ├── editors
│ │ │ ├── InputEditor.d.ts
│ │ │ └── editors.d.ts
│ │ └── types.d.ts
│ ├── ts-form
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Form.d.ts
│ │ ├── ProForm.d.ts
│ │ ├── elements
│ │ │ ├── button.d.ts
│ │ │ ├── checkbox.d.ts
│ │ │ ├── checkboxGroup.d.ts
│ │ │ ├── colorpicker.d.ts
│ │ │ ├── combo.d.ts
│ │ │ ├── container.d.ts
│ │ │ ├── dateinput.d.ts
│ │ │ ├── helper
│ │ │ │ └── label.d.ts
│ │ │ ├── input.d.ts
│ │ │ ├── proCombo.d.ts
│ │ │ ├── radioGroup.d.ts
│ │ │ ├── radiobutton.d.ts
│ │ │ ├── select.d.ts
│ │ │ ├── simplevault.d.ts
│ │ │ ├── sliderform.d.ts
│ │ │ ├── spacer.d.ts
│ │ │ ├── textarea.d.ts
│ │ │ ├── textinput.d.ts
│ │ │ └── timeinput.d.ts
│ │ ├── helper.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ └── types.d.ts
│ ├── ts-grid
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Exporter.d.ts
│ │ ├── Grid.d.ts
│ │ ├── ProGrid.d.ts
│ │ ├── Selection.d.ts
│ │ ├── columnsResizer.d.ts
│ │ ├── helpers
│ │ │ ├── cells.d.ts
│ │ │ ├── data.d.ts
│ │ │ ├── keys.d.ts
│ │ │ └── main.d.ts
│ │ ├── types.d.ts
│ │ └── ui
│ │ ├── Cells.d.ts
│ │ ├── FixedCols.d.ts
│ │ ├── FixedRows.d.ts
│ │ ├── content.d.ts
│ │ ├── editors
│ │ │ ├── CheckboxEditor.d.ts
│ │ │ ├── ComboboxEditor.d.ts
│ │ │ ├── DateEditor.d.ts
│ │ │ ├── InputEditor.d.ts
│ │ │ ├── SelectEditor.d.ts
│ │ │ ├── TextAreaEditor.d.ts
│ │ │ └── editors.d.ts
│ │ └── render.d.ts
│ ├── ts-layout
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Cell.d.ts
│ │ ├── Layout.d.ts
│ │ ├── ProCell.d.ts
│ │ ├── ProLayout.d.ts
│ │ ├── helpers.d.ts
│ │ └── types.d.ts
│ ├── ts-list
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── List.d.ts
│ │ ├── ProList.d.ts
│ │ ├── Selection.d.ts
│ │ ├── editors
│ │ │ ├── InputEditor.d.ts
│ │ │ └── editors.d.ts
│ │ └── types.d.ts
│ ├── ts-menu
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── ContextMenu.d.ts
│ │ └── Menu.d.ts
│ ├── ts-message
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── alert.d.ts
│ │ ├── common.d.ts
│ │ ├── confirm.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ ├── message.d.ts
│ │ ├── tooltip.d.ts
│ │ └── types.d.ts
│ ├── ts-navbar
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Navbar.d.ts
│ │ ├── elements
│ │ │ ├── button.d.ts
│ │ │ ├── customHTMLButton.d.ts
│ │ │ ├── datePicker.d.ts
│ │ │ ├── helpers.d.ts
│ │ │ ├── imageButton.d.ts
│ │ │ ├── input.d.ts
│ │ │ ├── menuItem.d.ts
│ │ │ ├── navItem.d.ts
│ │ │ ├── separator.d.ts
│ │ │ ├── spacer.d.ts
│ │ │ └── title.d.ts
│ │ ├── itemfactory.d.ts
│ │ └── types.d.ts
│ ├── ts-popup
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Popup.d.ts
│ │ └── types.d.ts
│ ├── ts-ribbon
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── ProRibbon.d.ts
│ │ └── Ribbon.d.ts
│ ├── ts-sidebar
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── ProSidebar.d.ts
│ │ ├── Sidebar.d.ts
│ │ └── types.d.ts
│ ├── ts-slider
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Slider.d.ts
│ │ └── types.d.ts
│ ├── ts-tabbar
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Tabbar.d.ts
│ │ └── types.d.ts
│ ├── ts-timepicker
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Timepicker.d.ts
│ │ ├── helper.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ └── types.d.ts
│ ├── ts-toolbar
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── ProToolbar.d.ts
│ │ └── Toolbar.d.ts
│ ├── ts-tree
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── Editor.d.ts
│ │ ├── Tree.d.ts
│ │ └── types.d.ts
│ ├── ts-vault
│ │ ├── index.d.ts
│ │ └── sources
│ │ ├── ProgressBar.d.ts
│ │ ├── ReadStackPreview.d.ts
│ │ ├── Uploader.d.ts
│ │ ├── Vault.d.ts
│ │ ├── configs.d.ts
│ │ ├── helper.d.ts
│ │ ├── locales
│ │ │ └── en.d.ts
│ │ └── types.d.ts
│ └── ts-window
│ ├── index.d.ts
│ └── sources
│ ├── ProWindow.d.ts
│ ├── Window.d.ts
│ ├── WindowController.d.ts
│ ├── helpers.d.ts
│ └── types.d.ts
├── license.txt
├── package.json
├── readme.txt
├── samples
│ ├── calendar
│ │ ├── calendar_with_date_range.html
│ │ └── calendar_with_timepicker.html
│ ├── chart
│ │ ├── area_chart.html
│ │ ├── bar_chart.html
│ │ ├── donut_chart.html
│ │ ├── pie_chart.html
│ │ ├── radar_chart.html
│ │ └── scatter_chart.html
│ ├── colorpicker
│ │ ├── basic_colorpicker.html
│ │ └── custom_pallete_and_custom_colors.html
│ ├── combobox
│ │ ├── combobox_with_initial_value.html
│ │ ├── combobox_with_items_count.html
│ │ └── common
│ │ └── data.js
│ ├── common
│ │ ├── cover.css
│ │ ├── favicon
│ │ │ ├── favicon.ico
│ │ │ ├── icon-144.png
│ │ │ ├── icon-16.png
│ │ │ ├── icon-32.png
│ │ │ ├── icon-48.png
│ │ │ └── icon-96.png
│ │ ├── fonts
│ │ │ ├── fonts-woff.css
│ │ │ └── fonts-woff2.css
│ │ └── index.css
│ ├── data
│ │ ├── data_filter.html
│ │ └── data_update.html
│ ├── dataview
│ │ ├── common
│ │ │ └── data.js
│ │ ├── draggable_dataview_with_template.html
│ │ └── editable_dataview_with_simple_configuration.html
│ ├── form
│ │ ├── all_form_controls.html
│ │ ├── common
│ │ │ └── data.js
│ │ └── form_validation.html
│ ├── grid
│ │ ├── common
│ │ │ └── data.js
│ │ ├── grid_initialization.html
│ │ └── grid_with_rich_configuration.html
│ ├── helpers
│ │ ├── base_icons.html
│ │ ├── common
│ │ │ ├── data.js
│ │ │ ├── dhxicons.css
│ │ │ ├── dhxicons.woff
│ │ │ └── dhxicons.woff2
│ │ └── resizehandler.html
│ ├── index.html
│ ├── layout
│ │ ├── collapsable_and_resizable_layout.html
│ │ └── layout_types.html
│ ├── list
│ │ ├── common
│ │ │ └── data.js
│ │ ├── editable_list_with_simple_configuration.html
│ │ └── list_with_drag_n_drop.html
│ ├── menu
│ │ ├── common
│ │ │ ├── data.js
│ │ │ └── data.json
│ │ ├── context_menu_initialization.html
│ │ └── menu_initialization.html
│ ├── message
│ │ ├── alert.html
│ │ ├── confirm.html
│ │ ├── message.html
│ │ └── tooltip.html
│ ├── popup
│ │ ├── popup_auto_positioning.html
│ │ └── popup_with_custom_css.html
│ ├── ribbon
│ │ ├── common
│ │ │ ├── data.js
│ │ │ └── data.json
│ │ ├── ribbon_get_state.html
│ │ └── ribbon_initialization.html
│ ├── sidebar
│ │ ├── common
│ │ │ ├── data.js
│ │ │ └── data.json
│ │ ├── disable_all_or_several_items.html
│ │ └── toggled_sidebar_and_custom_html.html
│ ├── slider
│ │ ├── slider_range_mode.html
│ │ └── slider_with_a_scale.html
│ ├── tabbar
│ │ ├── tabbar_rich_configuration.html
│ │ └── tabbar_tab_align.html
│ ├── timepicker
│ │ ├── timepicker_with_current_time_and_button.html
│ │ └── twelve_hour_format_in_timepicker.html
│ ├── toolbar
│ │ ├── common
│ │ │ ├── data.js
│ │ │ └── data.json
│ │ ├── toolbar_initialization.html
│ │ └── toolbar_two_state_button_and_tooltips.html
│ ├── tree
│ │ ├── common
│ │ │ └── data.js
│ │ ├── with_custom_template_and_event_handlers.html
│ │ └── with_editing_drag_and_drop_and_checkboxes.html
│ └── window
│ ├── window_closable_and_movable.html
│ └── window_two_windows.html
├── whatsnew.txt
└── 好例子网_dhtmlxSuite v.7.2.5 Standard.zip
112 directories, 323 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论