![]() | Steema Issues DatabaseNote: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;otherwise you can use StackOverflow. Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy. |
| Summary: | BooleanRender changed event not firing when boolean value is changed | ||
|---|---|---|---|
| Product: | TeeGrid for .NET | Reporter: | christopher ireland <chris> |
| Component: | Grid | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | chris, marc |
| Priority: | --- | ||
| Version: | 1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
The issue can be seen by code such as the following: Steema.TeeGrid.Renders.BooleanRender bRender = new Steema.TeeGrid.Renders.BooleanRender(tTeeGrid1.Columns[0].Changed); bRender.Changed += BRender_Changed; tTeeGrid1.Columns[0].Render = bRender; private void BRender_Changed(object sender, EventArgs e) { throw new NotImplementedException(); } Here the NotImplementedException is not thrown.