`
san_liuhongbin
  • 浏览: 20370 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
    grid的常见问题: 1,   grid数据为空. 2,   grid不能正确的显示图片 3,   不能正确排序 4,   TabPanels包括grid 5,   grid单元格中的link 6,   合并字段 7,   自定义row或者column的外观,行为 8,   grid cell添加click事件 9,   store调用load后, Store还是空 10, grid大小随window变化 11, 更新grid单元格(实际上是:store) 12, 从不同的url重新加载grid 13, xml问题 14, 当它应该为空的时候,grid保留记录 15, json Rea ...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">的定义 对Ext.Viewport的layout 会有影响. code:HTML/JSP代码<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ...
try...catch 语句. 1. nested try...catch语句.    使用场景: 在try...catch语句中的catch子句中,也会发生错误,此时,就可以使用嵌套try...catch语句。 eg: <script type="text/javascript"> try{ eval("a ++ b"); }catch(oException){ alert("An Exception occurred."); try{ var aErr ...
javascript 提供了两种特别的错误处理的方式. BOM包含一个onerror事件处理函数,这在window和img对象上都有,同时,ECMAScript定义了另外一个从Java中借过来的try...catch...finally..结构,来处理异常. 1.onerror事件处理函数 onerror事件是在window对象触发的.eg:<script type='text/javascrpt'> window.onerror=function(){ alert('An error occurred'); return true; //pre ...
When used with Boolean operands, the || operator performs the Boolean OR operation on the two values: it returns true if either the first operand or the second operand is true, or if both are true. If both operands are false, it returns false.    All know the above usage, but I mention the following ...
Global site tag (gtag.js) - Google Analytics