Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a list box containing Unique ID Numbers & relevant details; and a search box.
Does anyone know how to only display the list box only when a correct transaction number is enterred into the seach box?
Any help and suggestions much appreciated!
Hi,
You can use the Show-> Conditional Property available on Layout tab under properties page.
Thanks & Best Regards,
Kuldeep Tak
Hi,
You can use the Show-> Conditional Property available on Layout tab under properties page.
Thanks & Best Regards,
Kuldeep Tak
Ho do you define what is a correct transaction number? How do you know it's correct?
Actually, if you're using V9 why don't you use a Global Search box, this will only show options that are real and might mean you don't need your list box at all.
I have transaction numbers listed as:
1555668
1665588
1557566
etc..
So if for example I enterred 1557566 into the search box the details for that number would appear. However, when I have selected no number I do not want to be able to see anything at all (at the moment every transaction would be displayed).
Thanks
Sorry I meant the data is displayed in a Straight Table not List Box.
On the conditional show option in your straight table, you could use the expression:
GetSelectedCount(TransactionNumber) = 1
This would mean the straight table is only shown when one transaction number has been selected.
Thanks both.