Page 1 of 1

Jiwa Grid

PostPosted: Fri Oct 06, 2017 4:58 pm
by SBarnes
Hi Guys

is there a way to make the Jiwa Grid show the row as highlighted but without the black cell selection on one of the cells?

I have already tried the following:

Code: Select all
               jgProducts.SelectionBlockOptions = FarPoint.Win.Spread.SelectionBlockOptions.Rows;
            jgProducts.ActiveSheet.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            jgProducts.ActiveSheet.OperationMode = FarPoint.Win.Spread.OperationMode.RowMode;

Re: Jiwa Grid  Topic is solved

PostPosted: Sun Oct 08, 2017 2:04 pm
by Mike.Sheen
Hi Stuart,

Try this:

Code: Select all
.EditModePermanent = False
.EditModeReplace = False
.SelectionBlockOptions = FarPoint.Win.Spread.SelectionBlockOptions.Rows
.ActiveSheet.OperationMode = FarPoint.Win.Spread.OperationMode.SingleSelect


This is how we do it with the few places that have row selections (backorder allocation form, search window, et cetera).

Mike

Re: Jiwa Grid

PostPosted: Sun Oct 08, 2017 5:44 pm
by SBarnes
Thanks I'll give that a go