您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 基于extjs的.NET3.5控件Coolite 1.0.0.34580(Preview预览版)
  所属分类: Web开发
  开发工具:
  文件大小: 4mb
  下载次数: 0
  上传时间: 2010-04-03
  提 供 者: fz***
 详细说明: 基于extjs的.NET3.5控件Coolite 1.0.0.34580 (Preview预览版), *************************************************** * Version 1.0.0 升级日志 * *************************************************** 1. Renamed Coolite.Ext.Web project to Ext.Net 2. Renamed Coolite.Examples project to Ext.Net.Examples 3. Renamed Coolite.Ext.UX project to Ext.Net.UX 4. Renamed Coolite.EmbeddedResourceBuilder project to Ext.Net.ERB 5. Renamed Coolite.Utilities project to Ext.Net.Utilities 6. Renamed Coolite.Sandbox project to E xt.Net.Sandbox 7. Renamed Coolite.Toolkit.sln Visual Studio Solution file to Ext.Net.sln. 8. Renamed Coolite.Ext.Web Namespace to Ext.Net 9. Renamed Coolite.Utilities Namespace to Ext.Net.Utilities 10. Renamed Coolite.Ext.UX Namespace to Ext.Net.UX 11. Renamed root singleton "Ext" class to "X". Example (Old) if (!Ext.IsAjaxRequest) { } Ext.Msg.Alert("Title", "Message").Show(); Example (New) if (!X.IsAjaxRequest) { } X.Msg.Alert("Title", "Message").Show(); 12. Added new feature to get server-side Property values from client id Token strings. Example 13. Renamed WebControl class to ExtControl. As well, renamed Coolite.Ext.Web.WebControl.cs file to Ext.Net.ExtControl.cs. 14. Removed . Please use . 15. Removed . Please use . 16. Renamed AjaxMethod class to DirectMethod. 17. Renamed AjaxMethodAttribute to DirectMethodAttribute. Example (Old) [AjaxMethod] public void DoSomthing() { } Example (New) [DirectMethod] public void DoSomthing() { } 18. Renamed property to . 19. Removed . Please use . 20. Removed Adapter class 21. Removed ColorMenuItem class 22. Removed ComboMenuItem class 23. Removed DateFieldMenuItem class 24. Removed DateMenuItem class 25. Removed EditMenuItem class 26. Renamed ElementMenuItem class to ComponentMenuItem 27. Renamed to 28. Removed DataReader class .ReaderID property. 29. JsonReader: added IDProperty (instead of ReaderID) 30. XmlReader: added IDPath (instead of ReaderID) 31. ArrayReader: added IDProperty and IDIndex (instead of ReaderID) 32. Renamed StoreResponseData class .TotalCount property to .Total. 33. Renamed StoreRefreshDataEventArgs class .TotalCount propterty to .Total. 34. Renamed DataSourceProxy class .TotalCount property to .Total. 35. Renamed DataSourceProxy class to PageProxy. 36. Layout collection property is now required in markup if using a Layout Control within or . AccordionLayout ContainerLayout CardLayout CenterLayout FitLayout AbsoluteLayout AnchorLayout FormLayout HBoxLayout VBoxLayout RowLayout ColumnLayout TableLayout 37. Removed [XType] Attribute and replaced with XType readonly property. Example (Old) [Xtype("window")] Example (New) protected override string XType { get { return "window"; } } 38. Removed [InstanceOf] Attribute and replaced with InstanceOf readonly property. Example (Old) [InstanceOf("Ext.Window")] Example (New) public override string InstanceOf { get { return "Ext.Window"; } } 39. Removed [Layout] Attribute and replaced with new .LayoutType readonly property 40. Removed [ClientStyle] and [ClientScripts] Attributes and replaced with new .Resources property. 41. Renamed AjaxRequestModule to DirectRequestModule 42. Renamed to 43. Removed and controls. Please use with new Mode property which can determine if .js or .css resources are rendered. The Mode property is not required and if not defined, both .js and .css resource files are rendered into the location of the ResourcePlaceHolder. Example (New) 44. Renamed to . Change to lowercase "p". 45. Renamed inner property to . Affects all ContentPanel type controls including Panel, Window, Viewport Renaming to also solves rendering bug in VS 2005. Renaming all tags in a project to can be easily accomplished with a case-sensitive search and replace within Visual Studio. Please search for the following (remove double quotes) and ensure you have the "Match case" option checked. Find what: "Body>" Replace with: "Content>" 46. Renamed .BodyControls property to .ContentControls. Affects all ContentPanel type controls including Panel, Window, Viewport 47. Renamed .BodyContainer property to .ContentContainer. Affects all ContentPanel type controls including Panel, Window, Viewport 48. Removed .UpdateBody() Method. Please use .Update(). 49. Removed .ShowOnLoad property. Please use .Hidden property. Example (Old) // Will show Window on initial Page_Load this.Window1.ShowOnLoad = true; Example (New) // Will show Window on initial Page_Load this.Window.Hidden = false; // 'false' is the default value 50. Renamed the .CenterOnLoad property to .InitCenter. Default value is unchanged as "true". Example (Old) // Will center Window on initial Page_Load this.Window1.CenterOnLoad = true; Example (New) // Will center Window on initial Page_Load this.Window.InitCenter = true; 51. Renamed TextMenuItem control to the MenuTextItem 52. GridPanel client API: submitData, getRowsValues has 1 argument only, config object 53. GenericPlugin: renamed InstanceOf to InstanceName. 54. Renamed TabPanel Collection to . Example (Old) Example (New) 55. Removed Control. Now any Ext.Net.PanelBase Component can be added to the TabPanel's .Items Collection. 56. XTemplate: renamed Text to Html 57. XTemplate: Html property is required in markup