You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: partial/examples/examples.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ <h4>Field definitions</h4>
31
31
compile: true // should field be compiled, true or false (OPTIONAL),
32
32
value: function(row,column){ return row[column]/2;} // custom function for column value if no data exists for column in data array (OPTIONAL),
33
33
click: function(){ return console.log('column clicked);} // click function for column (OPTIONAL),
34
-
expand: "<my-directive></my-directive>" // expand (open/close) row when clicked and add this as content (could be a directive or plain html) (OPTIONAL),
34
+
expand: "<my-directive></my-directive>" // expand (open/close) row when clicked and add this as content (could be a directive or plain html) (OPTIONAL),
35
35
export: function(row,column){ return '<span>'+row[column]+'</span>';} // custom function for export presentation (OPTIONAL)
0 commit comments