`
文章列表
解决方案一:(修改jquery.js) 修改前: ajaxSettings: { url: location.href, global: true, type: "GET", contentType: "application/x-www-form-urlencoded", processData: true, async: true,                 ..... 修改后: ajaxSettings: { url: location.href, global: true, type: "GET& ...
//////////////////////////客户端单选按钮radio绑定后台数据,修改过后将值存到隐藏域中,然后form提交修改过的数据注:dt为cs文件的全局变量dataTable////////////////////////// <%@ Page Language="C#" AutoEventWireup="true" CodeFile="C2-1100-02_OffLineTaskAutoAssignModifyInitAct_T01.aspx.cs"     Inherits="OLCC_zh_CN_ ...
/*                                                                        */ /*              InstPubs.SQL - Creates the Pubs database                  */ /*                                                                        */ /* ** Copyright Microsoft, Inc. 1994 - 2000 ** All Rights Reserved. * ...
1个网吧网管在自杀前的遗书 :"在这的网吧客人98%都牛,开机不会,输入法切换不会,字母大小写转换不会,玩私服登陆器怎么用不会,QQ开语音不会,进了游戏不会退出,私服服务器关了说我机子问题,老子真想一把捏死他,捏死再揉成一团,再搓成麻花,放油锅里炸,再拿出来一脚踩的粉碎   语音聊天不会开MIC,说网吧耳机是坏的.   小荷作文网 www.zww.cn 看电影嫌不是普通话的!   小 荷 作文网 www.zww.cn 问我:""网管,有没有毛片看?""我说没,他怪电影不全!   QQ登陆不上说机器不好!老子跑过去一看,密码不对,那的还问我密码多少 ...

简单工厂模式

    博客分类:
  • C#
using System; //简单工厂模式 namespace MyConsoleApplication {     /// <summary>     /// 运算类     /// </summary>     class Operation     {         private double _numberA = 0;         private double _numberB = 0;         public double NumberA         {             get { return _numberA; }        ...
//#region当合同资金类型为付款时,列表显示开户银行和账号和流程状态列,否则不显示-jun-2011-6-20-15:45-         for (var i = 0; i < finance_check_actualCm.getColumnCount(); i++) {             if ((finance_check_actualCm.getDataIndex(i) == "BANK" || finance_check_actualCm.getDataIndex(i) == "ACCOUNT"||finance_check_ ...
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
//判断浏览器 function checkbrowser() {         var obj = navigator.userAgent;         if (obj.indexOf("MSIE") > 0) {             return "MSIE";         }         if (obj.indexOf("Firefox") > 0) {             return "Firefox";         }         if (obj.indexOf ...
Ext.form.ComboBox属性及常用方法详解 2010-09-28 12:35 属性 view : Ext.DataView 方法 ComboBox( Object config ) 构造 clearValue() : void 清除所有文本/值对 collapse() : void expand() : void 收起/展开下拉列表 doQuery( String query, Boolean forceAll ) : void 执行查询 getValue() : String 选择当前字段的值 isExpanded() : void 下拉列表是展开的? select( ...
--创建测试表 CREATE TABLE [t_test] ( [tid] INT IDENTITY(1,1) PRIMARY KEY,               [varcharValue] VARCHAR(50), [floatValue] FLOAT ) --向表中插入10000条数据 declare @counter int set @counter=1 while @counter<10000 begin insert into [t_test] values(Convert(varchar(50),Rand()),Rand()) set @counter=@co ...
/**      * 删除自定义字段      */     var setting_customfields_handleDelete = function() {         var selectedKeys = setting_customfieldslist_grid.selModel.selections.keys;         if (selectedKeys.length > 0) {             var select = setting_customfieldslist_grid.getSelections();             for (var ...

where并列条件

    博客分类:
  • Linq
/// 合同标的总和         /// </summary>         /// <param name="contractId">合同Id</param>         /// <param name="userId">用户Id</param>         /// <returns>合同标的总和</returns>         /// <remarks>jun.2011.08.03</remarks>         publi ...
{             layout : 'fit',             height : 280,             cm : planFinanceObjectMgr.planFinanceObjectCm,             autoScroll : true,             store : planFinanceObjectMgr.planFinanceStore,             sm : new Ext.grid.CheckboxSelectionModel(),             viewConfig : {               ...

从Grid 获得 JSON 数据

 
/**      * 从Grid 获得 JSON 数据      *      * @param {Object} grid      * @param {Object} colm      */     function contract_htlist_GetJSON(grid, colm) {         var rowCount = grid.getStore().getCount();         var colCount = colm.getColumnCount();         var JSONArray = new Array();         for (var ...
JavaScript For...In Statement The for...in statement loops through the properties of an object. Syntax for (variable in object)   {   code to be executed   } Note: The code in the body of the for...in loop is executed once for each property. Example Looping through the properties of an object: ...
Global site tag (gtag.js) - Google Analytics