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
decorator function doesnot take an input usually sa below
decorator: function(){
return [
'<span data-dojo-type="dijit.form.CheckBox" ',
'data-dojo-attach-point="cb" ',
'data-dojo-props="readOnly: true"',
'>'
].join('');
},
but have seen that in some cases decorator function takes arguments example as below
Hi All,
decorator function doesnot take an input usually sa below
decorator: function(){
return [
'<span data-dojo-type="dijit.form.CheckBox" ',
'data-dojo-attach-point="cb" ',
'data-dojo-props="readOnly: true"',
'>'
].join('');
},
but have seen that in some cases decorator function takes arguments example as below
decorator: function(cellData){
return "" + cellData + "";
}.
How can we achieve this i.e. to make the decorator method accept valid arguments.
The text was updated successfully, but these errors were encountered: