Skip to content

Commit

Permalink
Merge pull request #378 from Orckestra/dev
Browse files Browse the repository at this point in the history
Fixing issue where Checkbox Form Control fail when added to page afte…
  • Loading branch information
Marcus Wendt authored Feb 1, 2017
2 parents adf26f6 + 78e263b commit 261ddc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
private bool ViewState_Checked
{
get { return (bool) ViewState[ViewStateKey]; }
get { return (bool) (ViewState[ViewStateKey] ?? this.Checked); }
set { ViewState[ViewStateKey] = value; }
}
Expand Down

0 comments on commit 261ddc1

Please sign in to comment.