Summary Falsecount, Truecount Broken!

Hi All,

I've got an issue with using Truecount and Falsecount in Summary Rows on a treegrid.

the problem is that whenever I use truecount or falsecount it returns the same as the count value, and ignores all of the true/false stuff...

Have I found a bug?


.SummaryRows(rows =>

{

rows.Title("Totals").SummaryColumns(col =>

{

col.SummaryType(TreeGridSummaryType.Count)

.DataMember("Floor")

.Prefix("Count = ")

.DisplayColumn("Floor").Add();

col.SummaryType(TreeGridSummaryType.Truecount)

.DataMember("NeedsAction")

.Prefix("aCount = ")

.DisplayColumn("NeedsAction").Add();

col.SummaryType(TreeGridSummaryType.Falsecount)

.DataMember("NeedsAction")

.Prefix("bCount = ")

.DisplayColumn("Comment").Add();

}).Add();

})




2 Replies

BR Brett August 21, 2015 02:26 PM UTC

Ok I definitely believe this to be a bug, luckily I found a work around (for Truecount anyway), I used TreeGridSummaryType.Sum and that counts all of the true booleans...


MK Mahalakshmi Karthikeyan Syncfusion Team August 24, 2015 01:04 PM UTC

Hi Brett,

Sorry for the inconvenience caused.

We can also reproduce the issue you have reported. Hence we have logged an issue report regarding this. A support incident has been created under your account to track the status of this requirement. Please log on to our support website to check for further updates.

https://www.syncfusion.com/account/login?ReturnUrl=/support/directtrac/incidents

Please let us know if you require further assistance on this.

Regards,

Mahalakshmi K.


Loader.
Up arrow icon