0311总结

1. treeMenu.add(new Ext.menu.Item({

parentNode:node, // 对象中根本就没有这个属性

text : jsonData[i].text,

// iconCls : 'delete',

seq : jsonData[i].seq,// 文书序号

authority : jsonData[i].authority,// 文书权限

handler : newPaperHandler

}));

对象中根本就没有 parentNode这个属性,但是在newPaperHandler函数中,却可以使用 this. parentNode调用到这个配置属性。

2.js 文件中如果存在递归,而递归不能正确结束,则有可能引起 Eclipse 崩溃。(不知道为什么, Eclipse 用的 3.3.2

3.项目中使用最多的就是列表(grid)和查询条件了。但是,一路走来使用了多个查询的方式,但是或多或少都出现问题,就算没有问题,代码看着也过于复杂。今天发现了ext中from中的一种方法,感觉可以作为一种解决问题的办法。

      grid.baseParams=Form.getBasicForm.getValues();这样就可以简单的将from中的值转换为对象,从而可以简化关于Grid查询的代码。

     Form.getForm.getValues();返回值为对象。例如:{{userName:tom},{date:20090101},.........}

     Form.getForm.getValues(true);返回值为字符串。例如:  userName=tom&date=20090101


你可能感兴趣的:(eclipse,Date,ext,delete)