Merge branch 'master' of github.com:webnotes/wnframework
This commit is contained in:
commit
d64a06fcfd
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue