摘要:本文是学习Sqlserver CLR 整合过程中的笔记,会持续更新。欢迎批评指正!1. 启用CLR整合1 sp_configure 'show advanced options', 1;2 GO3 RECONFIGURE;4 GO5 sp_configure 'clr enabled', 1;6 GO7 RECONFIGURE;8 GOView Code 2. 查询数据库支持的CLR版本:1 select * from sys.dm_clr_properties2 select * from sys.dm_clr_appdomains3 select * fro
阅读全文
摘要:1. 安装语言包http://go.microsoft.com/?linkid=98102832. 切换语言To set the language that is used for the UI text in Visual StudioOn the Tools menu, click Options.In the Options dialog box, expand Environment and then click International Settings.In the Language list, choose the language in which the UI text s
阅读全文
摘要:1. 使用继承(extend) 1 var model = Ext.define("Ext.data.reader.SomeModel", { 2 extend: 'Ext.data.Model', 3 fields: [ 4 {name: 'name'}, 5 {name: 'extra.gender'} 6 ], 7 get: function(field){ 8 if (field.indexOf('.') !== -1) { 9 var parts = field.split('.'..
阅读全文
摘要:环境:extjs 2.3.0,ie 9 32位(Firefox(23)正常)触发事件:EditorGridPanel中,点击日期选择控件的时候。错误信息:中文:SCRIPT438: 对象不支持“createContextualFragment”属性或方法 ext-all.js, 行35 字符108英文Object doesn't support property or method 'createContextualFragment'解决方法:第一步:插入以下代码 1 if (typeof Range.prototype.createContextualFragment
阅读全文
摘要:最近要实现自动完成的功能,搜了半天找到下面这篇文章很详细,记录下来备查。jQuery.Autocomplete实现自动完成功能(详解)http://www.cnblogs.com/shulin/archive/2010/07/13/1776463.htmljquery.autocomplete.js 下载地址:http://www.pengoworks.com/workshop/jquery/autocomplete.htmjQuery UI Autocompletehttp://jqueryui.com/autocomplete/
阅读全文
摘要:很久以前就注册了,但是一直没有开通博客。突然想写下 一点什么,却找不到地方。申请之后,几分钟就批准了,效率真高!!感谢领导!
阅读全文