Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - miside

Pages: [1]
1
I want use format, like formatter in easyui grid:
$('#dg').datagrid({
   columns:[[
      {field:'userId',title:'User', width:80,
         formatter: function(value,row,index){
            if (row.user){
               return row.user.name;
            } else {
               return value;
            }
         }
      }
   ]]
});
can you give me some advice to achieve this?

2
like
$("#pqGrid").pqGrid({minHeight:200,maxHeight:400});
so when I set minHeight and maxHeight, pqGrid's height between 200px and 400px

Pages: [1]