摘要:
据目前所知:Store至少分为两类,一个是SimpleStore,另一个是JsonStore。 1,用在gridPanel中常使用SimpleStore Js代码 varstore_stat=newExt.data.SimpleStore({ fields:[ {name:'date',mapping:'date'} ,{name:'model',mapping:'model'} ,{... 阅读全文
摘要:
接口添加页面JS验证<script> //验证接口信息 //验证接口是否是汉字 function checkname(name){ var preg=/[^\u4e00-\u9fa5]/g if(name.value == ''){ document.getElementById('name').innerHTML="<font color='red'>*请填写接口中文名称</font>"; }else if(name.value.match(preg)){ document.getElem 阅读全文
摘要:
ExtJs之Ext.data.StoreStore.getCount()返回的是store中的所有数据记录,然后使用for循环遍历整个store,从而得到每条记录。除了使用getCount()的方法外,还可以使用each()函数,如下面的代码所示。store.each(function(record){ alert(record.get('name')); });store.each(function(record) { alert(record.get('name'));});Each()可以接受一个函数作为参数,遍历内部record,并将每个record作为 阅读全文