Steema Issues Database

Note: 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.



Bug 2109 - BooleanRender changed event not firing when boolean value is changed
Summary: BooleanRender changed event not firing when boolean value is changed
Status: RESOLVED FIXED
Alias: None
Product: TeeGrid for .NET
Classification: Unclassified
Component: Grid (show other bugs)
Version: 1
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-10-04 07:45 EDT by christopher ireland
Modified: 2018-10-04 07:51 EDT (History)
2 users (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description christopher ireland 2018-10-04 07:45:16 EDT
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.