Skip to content

Instantly share code, notes, and snippets.

@jeffcai
Created March 8, 2013 05:28
Show Gist options
  • Select an option

  • Save jeffcai/5114399 to your computer and use it in GitHub Desktop.

Select an option

Save jeffcai/5114399 to your computer and use it in GitHub Desktop.
uncheck dojo CheckBox widget
dojo.query("[name='_name']").forEach(function(node, index, arr) {
var widget = dijit.getEnclosingWidget(node);
widget.attr('checked', false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment