How do I make my custom table control empty after saving records in Maximo

78 Views Asked by At

timesheet

I have Maximo 7.6.1.2, There is a custom table control containing some data and I want to make it empty after saving records ? as it appear without any record.

Thanks

There is a property "Start Empty=true" so when the application is launched the table control shows empty.

1

There are 1 best solutions below

0
Preacher On

The custom table control has a Relationship property. If you set the where clause for that relationship to something false, like 3 = 4, then the relationship will not find data, but you will still be able to add rows. On save, data will be re-fetched from the database using the relationship's where clause, which will not find the data you just saved, making the table be empty again.