2007-12-18

Ext Grid

关键字: Ext Grid
Ext在和后端通信使用Json时,要使用"callback('Json');"这种形式,原因是引用grid提交分页数据的时候后面还会自动跟随一个可以说是标识的字段callback=stcCallback1001 每提交一次请求,callback就会自增,也就是说第二次就是callback=stcCallback1002 对应的,你的php文件回传json数据的时候也要带上这个值,来确定是哪次的请求所返回的结果 格式是: stcCallback1001( { ‘results’: 2, ‘rows’: [ { ‘id’: 1, ‘name’: ‘Bill’, occupati ...
2007-10-10

使用snmp协议收集信息

关键字: snmp
使用http://gicl.cs.drexel.edu/people/sevy/snmp/snmp.html 提供的“an open-source implementation of the SNMP protocol”。 实现功能之前,看了一些资料(网络管理,SNMP,SMI和MIB等),
  • 17:40
  • 浏览 (233)
  • 评论 (0)
Data Type Conversion 1. Array length Truncating an array by setting its length property is the only way that you can actually shorten an array. If you use the delete operator to delete an array element, that element becomes undefined, but the length property does not change. 2. Array.concat( ) ...
  • 13:50
  • 浏览 (272)
  • 评论 (0)
2007-09-07

二叉树

关键字: 数据结构 二叉树
java 代码 这是我写的二叉树和四种遍历方式,请指教。    p.s. 编号是按照满进行编号(location)。             public class BinaryTree {        private static final int ROOT_LOCAT ...
2007-08-15

实践递归

关键字: 递归
描述:1,2,3......n 从n中取出r个数。 例如:n=5,r=3 1-2-3,1-2-4,1-2-5,1-3-4,1-3-5,1-4-5 2-3-4,2-3-5,2-4-5 3-4-5 下面是我的解决方法,还有其他的方法么? java 代码 import java.util.ArrayList;    import java.util.Collections;    import java.util.HashSet;    im ...
bill.end
搜索本博客
博客分类
最近加入圈子
存档
最新评论
  • Ext Grid
    本地两个都可以用的
    -- by zhangtianqi
  • Ext Grid
    这个是跨域执行的,服务器和执行文件不再一起放着的,所以用ScriptTagPro ...
    -- by zhangtianqi
  • Ext Grid
    感谢楼主..这虽然是个小问题. 但是困扰了几天.. (感激中....)
    -- by yangfengjob