Page 1 of 1

Indicators on the Grid

PostPosted: Wed Jul 08, 2026 11:45 am
by SBarnes
Given the following viewtopic.php?f=26&t=2535&p=9672&hilit=indicator#p9672 relates to showing an indicator on the form how can you do this on the Jiwa Grid such as the way contacts under debtors warn if it thinks the email address is invalid?

Re: Indicators on the Grid

PostPosted: Wed Jul 08, 2026 11:55 am
by Mike.Sheen
The Cell object has a property, ErrorText - setting that to a non-blank value will show an error indicator, with the error text as the toolitp.

Eg:

Code: Select all
grdBankPaymentLinesJiwaGrid.ActiveSheet.Cells[row, grdBankPaymentLinesJiwaGrid.ActiveSheet.GetColumnFromTag(null, "InvoiceRemitNo").Index].ErrorText = "Invoice No. is blank. One will generated for you upon save if left blank.";

Re: Indicators on the Grid

PostPosted: Wed Jul 08, 2026 12:02 pm
by SBarnes
Thanks Mike, I am trying to resolve an issue for a customer where they keep ending up with multiple copies of the same contact and same delivery address under the debtor because no one looks carefully before adding either :shock: