`
dayone
  • 浏览: 365402 次
  • 性别: Icon_minigender_1
  • 来自: xian
社区版块
存档分类
最新评论

Ext JS 最新动态

阅读更多

/**
 * Ext JS 最新动态
 * 2008-08-04 放出目前最新版本 v2.2
 * 上一个版本 v2.1 是在 2008-04-20 出炉的,当中间隔了相当长一段时间 
 */

 /**
 * Release Notes for v2.2.0
 * Release Date: August 4, 2008
 * Current Version: 2.2.0 (rev 2547) 
 * Previous Version: 2.1.0 (rev 2042)
*/

------------------------------------------

Release Notes for Ext 2.2.0

Release Date: August 4, 2008
Current Version: 2.2.0 (rev 2547)
Previous Version: 2.1.0 (rev 2042)

Overview

  • Full Firefox 3.0 support
  • Added Ext.History component and sample
  • Completely refactored Checkbox and Radio controls
  • Added CheckboxGroup and RadioGroup components and sample
  • Added MultiSelect and ItemSelector extensions and sample
  • Added FileUploadField extension and sample
  • Added XMLTreeLoader extension and sample
  • Added several new Drag-and-Drop samples
  • Added GMapPanel extension and sample
  • Grid performance improvements
  • Many general improvements and bug fixes
  • Extensive documentation improvements
  • Various locale file updates

Change Log

  • Adapters
    • Ext Base
      • Added UTF-8 to defaultPostHeader to support international char sets properly
  • Ext.core
    • Ext
      • New properties for isGecko2 and isGecko3
      • Updated useShims property to be Gecko2-only on Mac
      • Fix for isArray and array check fix in Ext.each
    • Ext.Element
      • Event registration improvements
      • Updated Gecko/Mac overflow auto fix to be scoped to Gecko2 only
      • Shim border fix for IE8
    • Ext.EventManager
      • Event handler registration logic refactored to fix DOM leak issues
    • Ext.Updater
      • Now extends Ext.util.Observable
      • New overrideable getDefaultRenderer method
      • Fix in update method to preserve passed in config options correctly
  • Ext.data
    • Ext.data.Connection
      • New disableCachingParam config
    • Ext.data.Record
      • Fixed type coercion bug in isModified
    • Ext.data.Tree
      • New Node.isExpandable method
  • Ext.util
    • Ext.util.ClickRepeater
      • Fixed scope issue when unregistering interal event handlers
    • Ext.util.Date
      • Various date format fixes
    • Ext.util.Format
      • Fix in htmlDecode to handle ampersands correctly
      • New nl2br (newline to BR) function
    • Ext.util.History
      • New component
    • Ext.util.KeyMap
      • Added stopEvent as a valid config option for the addBinding method
  • Ext.widgets
    • Ext.Button
      • Fixes to minimize mouse handlers created on buttons
    • Ext.Component
      • New initPlugin method for more flexible plugin initialization
      • Fix to ignore state events if stateful=false
    • Ext.Container
      • Updated onDestroy to call destroy on the container's layout if available
      • Fixed default scope passed to the cascaded function in Container.cascade
    • Ext.DatePicker
      • Marked constrainToViewport config as deprecated (it's not currently used)
      • Changed disabledDaysText and disabledDatesText to default to "Disabled" instead of ""
      • New configs for minDate, maxDate, disabledDays, disabledDaysRE and disabledDates
      • New methods setDisabledDates, setDisabledDays, setMinDate and setMaxDate
      • New showToday config to show/hide the Today button and footer
      • Fixed selectToday to check for disabled Today button before changing the date
    • Ext.DataView
      • New mouseenter and mouseleave events
      • New trackOver config to enable mouse events
      • Fix in getNodes to calculate the end node correctly
    • Ext.Editor
      • New canceledit event
      • Fixed issue with TriggerField editors not blurring correctly on key navigation
      • Fixed editor wrapper element scrollbar issue in FF2/Opera
    • Ext.PagingToolbar
      • Added beforechange and change events and changePage method
      • Fixed handling of 0 entered into the page field
    • Ext.Panel
      • Change to set ownerCt on buttons added to panels
      • Fix for FF2/Mac scroll bar issue on contained items
      • Fix panel disabling support in IE
      • Fixed in destruction order of internal components
    • Ext.ProgressBar
      • Fix to only attempt progress updates if rendered
      • Added support for the text config in the wait method
      • Fix for preserving the proper progress width in ratio to the value on resize
    • Ext.QuickTips
      • Added autoRender support to fix initial display issues
    • Ext.Resizable
      • Change to render the resize proxy to the document body instead of as a sibling to its element so it doesn't interfere with Component position calculations
    • Ext.Slider
      • New dragging property and changecomplete event
      • Fixes for slider with minValue != 0
      • Fix for preserving the proper thumb position in ratio to the value on resize
    • Ext.StatusBar
      • Fix for setting the proper default icon on clear
    • Ext.TabPanel
      • Fix to position the tab strip spacer element correctly for tabPosition bottom
      • Fix for FF3 to raise the contextmenu event correctly on tab strip right-click
    • Ext.Tip
      • Fixed IE7 repaint bug on initial show
    • Ext.Toolbar
      • Fix in addField to add the fields to the items collection rather than the Toolbar items
    • Ext.Window
      • Added doLayout call on resize
    • Ext.dd.DDCore
      • Fixed null error in isValidHandleChild
    • Ext.dd.ScrollManager
      • Fix to enable overriding scroll frequency in the scroll config object
    • Ext.dd.StatusProxy
      • Fix to remove float style from ghost elements when adding them to the proxy to prevent proxy box collapse
    • Ext.form.Checkbox
      • Completely refactored to support new visual styles
    • Ext.form.CheckboxGroup
      • New component
    • Ext.form.DateField
      • New showToday config to show/hide the Today button and footer on the associated DatePicker
      • New methods setDisabledDates, setDisabledDays, setMinValue and setMaxValue
    • Ext.form.Field
      • Fix to prevent initializing the data value to emptyText
      • Fix to preserve the originalValue on init
      • Fix for odd FF/Win issue when changing OS window focus that disabled editing
      • Change to default error messages to basic tooltips if no field container el is available
    • Ext.form.FormPanel
      • Change to make the form tag into the panel's body element
    • Ext.form.HtmlEditor
      • Scoped disabling the font, link, lists and source edit buttons to Safari2 only (Safari3 is OK)
      • Various fixes to improve initialization
      • Fix to prevent multiple event handlers from being setup (resolved double line break issue in IE)
      • Fixed issue of IE allowing toolbar commands to apply to content outside the editor body
    • Ext.form.Label
      • Added setText method
    • Ext.form.TextArea
      • Fixed onKeyUp not calling its superclass method
    • Ext.form.TimeField
      • Fix for broken field on DST boundary dates
    • Ext.form.TriggerField
      • Fix for trigger icon alignment to field in IE
      • Fixed missing scope to properly remove the document mousedown handler after mimicing blur
    • Ext.form.Radio
      • Completely refactored to support new visual styles
    • Ext.form.RadioGroup
      • New component
    • Ext.form.TextField
      • Fix for selectOnFocus support
      • Fixed broken key filtering when using maskRe in non-FF browsers
    • Ext.grid.ColumnModel
      • Fixed configchange event declaration name typo
    • Ext.grid.EditorGrid
      • Fix to align editors correctly with mixed-height row content
      • Fixed bug in preEditValue that prevented html decoding when needed
      • Added onDestroy method to clean up column model's editors on destroy
    • Ext.grid.GridPanel
      • New deferRowRender config
    • Ext.grid.GridView
      • New configs for controlling cell and row selector class and depth
      • Fixes to sync the invisible focus element on row add/remove actions
      • Moved some rendering logic to afterRender (improved performance)
    • Ext.layout.BorderLayout
      • Added destroy method to clean up splitbars created by layout
    • Ext.layout.ColumnLayout
      • Target size calculation fix for IE
    • Ext.layoutContainerLayout
      • Added support for subclass destroy functions
    • Ext.menu.Item
      • Improved tolerance for mousing from a menu to its submenu without dismissing the submenu too quickly while passing over other menu items
    • Ext.menu.Menu
      • New ignoreParentClicks config to ignore clicks on menu items with child menus
    • Ext.menu.TextItem
      • Updated constructor to support config object in addition to just text
    • Ext.tree.TreeDragZone
      • Fix to honor the hlDrop config on invalid drop repair
    • Ext.tree.TreeDropZone
      • Fixed highlight calls to check enableFx first to avoid possible errors
    • Ext.tree.TreeEditor
      • Fixed editor alignment to node when autoScroll is on and the node is outside the scroll area
    • Ext.tree.TreeLoader
      • Fixed type coercion bug in isLoading
      • Updated createNode to support new TreePanel.nodeTypes
    • Ext.tree.TreeNode
      • New getLoader method
      • Fixed null error in destroy when no child nodes present
    • Ext.tree.TreeNodeUI
      • Refactored internal support for Ext.data.Node.isExpandable
    • Ext.tree.TreePanel
      • Ability to specify dataUrl or a TreeLoader config in addition to a TreeLoader instance
      • New nodeTypes support for more flexible node declaration and creation
分享到:
评论

相关推荐

    原生js图片圆形排列按钮控制3D旋转切换插件.zip

    原生js图片圆形排列按钮控制3D旋转切换插件.zip

    类似c++数组的python包

    内含二维数组与三维数组,分别为list2nd,list3rd

    原生js颜色随机生成9x9乘法表代码.zip

    原生js颜色随机生成9x9乘法表代码.zip

    原生js实现图片叠加滚动切换代码.zip

    原生js实现图片叠加滚动切换代码.zip

    【Academic tailor】学术小裁缝必备知识点:全局注意力机制(GAM)TensorFlow

    【Academic tailor】学术小裁缝必备知识点:全局注意力机制(GAM) 注意力机制是深度学习中的重要技术,尤其在序列到序列(sequence-to-sequence)任务中广泛应用,例如机器翻译、文本摘要和问答系统等。这一机制由 Bahdanau 等人在其论文《Neural Machine Translation by Jointly Learning to Align and Translate》中首次提出。以下将详细介绍这一机制的背景、核心原理及相关公式。 全局注意力机制(Global Attention Mechanism, GAM)由 《Global Attention Mechanism: Retain Information to Enhance Channel-Spatial Interactions》提出,是一篇针对计算机视觉任务提出的方法。这篇文章聚焦于增强深度神经网络中通道和空间维度之间的交互,以提高分类任务的性能。与最早由 Bahdanau 等人提出的用于序列到序列任务的注意力机制 不同,这篇文章的重点是针对图像分类任务,并未专注于序

    基于SpringBoot的“篮球论坛系统”的设计与实现(源码+数据库+文档+PPT).zip

    本项目在开发和设计过程中涉及到原理和技术有: B/S、java技术和MySQL数据库等;此文将按以下章节进行开发设计; 第一章绪论;剖析项目背景,说明研究的内容。 第二章开发技术;系统主要使用了java技术, b/s模式和myspl数据库,并对此做了介绍。 第三章系统分析;包罗了系统总体结构、对系统的性能、功能、流程图进行了分析。 第四章系统设计;对软件功能模块和数据库进行详细设计。 第五章系统总体设计;对系统管理员和用户的功能进行描述, 第六章对系统进行测试, 第七章总结心得;在论文最后结束章节总结了开发这个系统和撰写论文时候自己的总结、感想,包括致谢。

    毕业设计&课设_iOS 商城项目,含购物与商家管理功能,用 Sqlite,有账号示例,适合 iOS 开发练习.zip

    1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。

    镗夹具总工艺图.dwg

    镗夹具总工艺图

    原生js树叶数字时钟代码.rar

    原生js树叶数字时钟代码.rar

    近代非线性回归分析-韦博成1989

    近代非线性回归分析-韦博成1989

    Rust语言中冒泡排序算法的高效实现与优化

    内容概要:本文详细介绍了用 Rust 语言实现冒泡排序算法的具体步骤,以及通过设置标志位来优化算法性能的方法。示例代码包括了函数定义、内外层循环逻辑、标志位的应用,并在主函数中展示了如何调用 bubble_sort 函数并显示排序前后的数组。 适合人群:具有基本 Rust 编程基础的学习者和开发者。 使用场景及目标:适用于想要深入了解 Rust 中冒泡排序实现方式及其优化技巧的技术人员。通过本篇文章,能够掌握 Rust 基本语法以及算法优化的基本思想。 阅读建议:除了仔细阅读和理解每一部分的内容外,还可以尝试修改代码,改变数据集大小,进一步探索冒泡排序的时间复杂度和优化效果。此外,在实际应用时也可以考虑引入并发或其他高级特性以提升性能。

    培训课件 -安全隐患分类与排查治理.pptx

    培训课件 -安全隐患分类与排查治理.pptx

    1-中国各地级市的海拔标准差-社科数据.zip

    中国各地级市的海拔标准差数据集提供了298个地级市的海拔变异性信息。海拔标准差是衡量某地区海拔高度分布离散程度的统计指标,它通过计算各测量点海拔与平均海拔之间的差异来得出。这一数据对于评估地形起伏对网络基础设施建设的影响尤为重要,因为地形的起伏度不仅会增加建设成本,还会影响信号质量。此外,由于地形起伏度是自然地理变量,它与经济社会因素关联性较小,因此被用作“宽带中国”试点政策的工具变量,以研究网络基础设施建设对经济的影响。数据集中包含了行政区划代码、地区、所属省份、所属地域、长江经济带、经度、纬度以及海拔标准差等关键指标。这些数据来源于地理空间数据云,并以Excel和dta格式提供,方便研究者进行进一步的分析和研究。

    YOLO算法的原理与实现.pdf

    YOLO算法的原理与实现

    机器学习用于视网膜病变预测:使用 XGBoost 揭示年龄和HbA1c 的重要性 -论文

    视网膜病变是糖尿病和高血压的主要微血管并发症。如果不及时治疗,可能会导致失明。据估计,印度三分之一的成年人患有糖尿病或高血压,他们未来患视网膜病变的风险很高。我们研究的目的是检查糖化血红蛋白 (HbA1c)、血压 (BP) 读数和脂质水平与视网膜病变的相关性。我们的主要假设是,血糖控制不佳(表现为高 HbA1c 水平、高血压和异常脂质水平)会导致视网膜病变风险增加。我们使用眼底照相机筛查了 119 名印度患者的视网膜病变,并获取了他们最近的血压、HbA1c 和血脂谱值。然后,我们应用 XGBoost 机器学习算法根据他们的实验室值预测是否存在视网膜病变。我们能够根据这些关键生物标志物高精度地预测视网膜病变。此外,使用 Shapely Additive Explanations (SHAP),我们确定了对模型最重要的两个特征,即年龄和 HbA1c。这表明血糖控制不佳的老年患者更有可能出现视网膜病变。因此,这些高风险人群可以成为早期筛查和干预计划的目标,以防止视网膜病变发展为失明。

    RL Base强化学习:信赖域策略优化(TRPO)算法TensorFlow实现

    在强化学习(RL)领域,如何稳定地优化策略是一个核心挑战。2015 年,由 John Schulman 等人提出的信赖域策略优化(Trust Region Policy Optimization, TRPO)算法为这一问题提供了优雅的解决方案。TRPO 通过限制策略更新的幅度,避免了策略更新过大导致的不稳定问题,是强化学习中经典的策略优化方法之一。

    Spring 应用编译为原生可执行文件.zip

    1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。

    1-中国各地区普通小学毕业生数(1999-2020年)-社科数据.zip

    这组数据涵盖了1999至2020年间中国各地区普通小学毕业生的数量。它为我们提供了一个深入了解中国教育领域中普通小学阶段教育水平和教育资源分配情况的窗口。通过分析这些数据,可以为制定科学合理的教育政策提供依据,同时,通过比较不同城市的普通小学毕业生数,也能为城市规划和劳动力市场调查提供参考。数据来源于中国区域统计年鉴和中国各省市统计年鉴,包含了8472个样本,以面板数据的形式呈现。这些数据对于掌握中国教育态势具有重要的参考价值。

    原生js制作拖拽排列排序代码.zip

    原生js制作拖拽排列排序代码.zip

    PixPin截图工具,非常好用的一款截图工具

    PixPin截图工具,非常好用的一款截图工具

Global site tag (gtag.js) - Google Analytics