I need the remaining checkbox to be disabled after I select 11 checkboxes in a table…
I went to checkbox disable condition & used a when rule, and there I have given
countInPageList() function.
Can anyone say what is the exact syntax we should use inside that function bracket ?
SrijitaB
(Srijita Banerjee)
March 28, 2024, 5:48am
2
@SubharthiB16680890
Say your pagelist property name is “ABC” and your checkbox property name is “PQR”. In that case the expression would be
@countInPageList (“true”,“.PQR”, .ABC)
ArulDevan
(Aruldevan Thangappan T)
March 28, 2024, 5:58am
3
Hi @SubharthiB16680890 : The function definition is as countInPageList(LookFor, LookAt, LookIn).
LookFor - what value you need to check in a property (in this case it is true)
LookAt - the property name in the page list.
LookIn - Name of page list.
Please note that LookFor and LookAt are string parameters and LookIn is Clipboard property.
Thanks.
@SrijitaB thanx for the information, one more question. Do we automatically get the prompt after the dot “.” or we have to type it manually ?
SrijitaB
(Srijita Banerjee)
March 29, 2024, 6:13am
5
@SubharthiB16680890
You have to type it manually. It’s a string parameter
@SrijitaB Thanx again, it is working, it is getting disabled.
@SubharthiB16680890 Hi, I have another situation to solve here, Suppose I have a table (contains an age column) and I want to select 11 checkbox, but I want atleast 1 checkbox to be an age greater than 18…
So, where & how can I implement this validation ?