4
Views
1
Comments
Color Zone or Merging rows in editable table
Question
I was wondering if I can show this in an editable table :

Product | Week Ready | Cost
A                   2                 23
                     3                 25
B                   2                 30
                     3                 35


instead of 

Product | Week Ready | Cost
A                   2                 23
A                   3                 25
B                   2                 30
B                   3                 35

Is it possible?

I am looking to either use different colors for each product or as above. Please advise.

Thanks !
UserImage.jpg
Abhi
Hi,

Was able to achieve  this functionality by toggling the visible property of the field in editable table.

Used as below: 
If(GetVDSInfo.List.CurrentRowNumber=0 or (GetVDSInfo.List.Current.VDSDetails.Material<>(GetVDSInfo.List[GetVDSInfo.List.CurrentRowNumber-1].VDSDetails.Material)),True,False)

Where GetVDSInfo is the list of editable table. And if the material name is same as earlier row material then its visibility is false.

Hope this helps, if someone is looking for the same


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.