`
文章列表
转自:http://www.cnblogs.com/rainman/archive/2011/02/20/1959325.html,作为笔记使用   什么是跨域 1、document.domain+iframe的设置 2、动态创建script 3、利用iframe和location.hash 4、window.name实现的跨域数据传输 5、使用HTML5 postMessage 6、利用flash 本文来自网络(http://f2e.me/200904/cross-script
从网上找了N个例子试用,每次都是在前台firebug中都已经可以看到传过来josn数据了,但是在jqgrid中就是没有数据。   今天把josn数据中的单引号,全部替换成双引号,数据终于显示出来了。   jqgrid居然不识别单引号!!!!!!   这个足足搞了三天,居然是因为这个。。。 郁闷!     <%@ page contentType="text/html;charset=utf-8"%> <link rel="stylesheet" type="text/css" href=&quo ...

jqgrid实例

一个jqgrid的demo,集成了右键菜单、弹出窗口、行背景根据值变色等插件,在此记录,以后找起来方便点。
今天在使用jQuery的ajax时出现了中文乱码问题: 刚开始使用的是get: function changeVmList(){ var productName = document.getElementById("productName").value; $.get( "<%=basePath%>assitanceAction.do?method=getVmCombo", {productName:productName}, function(vmCombo){ document.getElementById ...
Ext做文件上传的时候发现,如果上传成功后从后台取返回信息,出现错误。 var importForm = new Ext.FormPanel({ labelAlign:'right', buttonAlign:'right', frame:true, title: '', bodyStyle:'padding:5px 5px', width:450, url:'importAction.do?method=importAlarmRule', fil ...
--按年分组查看    select     to_char(to_timestamp(start_time_of_date::bigint), 'YYYY') as d ,  count(cdr_id)  as  total_call,sum (call_duration::integer /60 +1)   as  total_duration  from  cdr   where  to_timestamp(start_time_of_date::bigint)  between  '2010-01-01'   and    '2010-12-12'   group by d -- ...
chartObj = getChartFromId(chartObjectList[i]); 这个方法中的参数,应该和图表的xhtml中语句myTypeFChart = new FusionCharts("./FusionCharts/MSLine.swf","chartSwfTypeF", "330", "300", "0", "1"); 中的 "chartSwfTypeF"变量相对应。而不是div的id。 myType ...
在chart中添加属性unescapeLinks='0'
原地转:http://ext.group.iteye.com/group/blog/427912 不能收藏,只能自己转下了。 今天在用ext+struts2做东西的时候,出现参数传递乱码情况,Action接收到的参数值始终都是乱码 1.将页面,工程,都设置成utf-8 2.传参方式也改成post 3.tomcat 也 ...
今天在公司将spring升级成了2.5,结果配置spring+ibatis时一直抛SqlMapClient这个bean创建失败的异常。google了好久都没结果,最后发现原来spring升级成2.5以后,ibatis也必须升级到2.3 !!!!
HTML:scrollLeft,scrollWidth,clientWidth,offsetWidth到底指的哪到哪的距离之完全详解 scrollHeight: 获取对象的滚动高度。 scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离 scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离 scrollWidth:获取对象的滚动宽度 offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度 offsetLeft:获取对象相对于版面或由 offsetParent 属性指定的父 ...
鼠标及对象坐标控制属性 offsetTop 获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算顶端位置。 offsetLeft 获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置。 offsetHeight 获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度。 IE、Opera 认为 offsetHeight = clientHeight + 滚动条 + 边框。 NS、FF 认为 offsetHeight 是网页内容实际高度,可以小于 clientHeight。 offsetWidth 获取对象相对于版面或由父 ...
<script language=javascript> var str_url,str_pos,str_para; var arr_param=new Array(); str_url = window.location.href; str_pos = str_url.indexOf("?"); str_para = str_url.substring(str_pos+1); if (str_pos>0){ arr_param=str_para.split("&"); for(var i=0;i<arr_param.len ...
/** Given a string, this method replaces all occurrences of    *  '<' with '<', all occurrences of '>' with    *  '>', and (to handle cases that occur inside attribute    *  values), all occurrences of double quotes with    *  '"' and all occurrences of '&' with '&'.    *  Wi ...

EXT 树

    博客分类:
  • EXT
<html> <script src="ext20/adapter/ext/ext-base.js" charset="utf-8"></script> <script src="ext20/ext-all.js" charset="utf-8"></script> <link href="ext20/resources/css/ext-all.css" rel="stylesheet" type="t ...
Global site tag (gtag.js) - Google Analytics