Merge branch 'master' of github.com:webnotes/wnframework

This commit is contained in:
Akhilesh Darjee 2013-09-12 14:01:21 +05:30
commit d64a06fcfd

View file

@ -188,9 +188,9 @@ wn.views.QueryReport = Class.extend({
if(c.indexOf(":")!=-1) {
var opts = c.split(":");
var df = {
label: opts[0],
fieldtype: opts[1],
width: opts[2]
label: opts.slice(0, opts.length - 2).join(":"),
fieldtype: opts[opts.length - 2],
width: opts[opts.length - 1]
}
if(!df.fieldtype)