Thank you! Have you thought about forgot username? Our system doesnt use email for user name, we use a value based on a combination of facility and user's name and when folks dont log on everyday they can forget it.
- Log in to post comments
Thank you! Have you thought about forgot username? Our system doesnt use email for user name, we use a value based on a combination of facility and user's name and when folks dont log on everyday they can forget it.
A follow up...how can I set this Property via JS? None of these work :(
&js<
#(%page.currentTableRow)# = "test"
%page.currentTableRow = "test"
zenPage.currentTableRow = "test"
>
Thanks Jean, will check this out
Will do, thank you both!
Nice! This worked for me. I removed the (MAXLEN) and it still worked. I am not sure how big my string will be, but I have enough to move forward. Thank you!
I will look into that thank you!
There is a getRowData function but it seems to only be available from Javascript? Is there a way to pass this variable rowData back to my enclosing ObjectScript function?
&js<
var table = zenPage.getComponentById("userTable");
var rowData = table.getRowData(0);
if (rowData)
{
alert(rowData);
}
else
{
alert("no row data");
}
>
Thanks Cristiano, I will look into this!
Thanks Laura! I tried this but I get an error when I execute it. Its almost like its trying to run the output HTML on the page, which it may be? I was just trying to store the HTML in a variable but it includes all the related JS for the table as well.
#dim tblPane as %ZEN.Component.tablePane
set tblPane = %page.%GetComponentById("userTable")
set tblContent = tblPane.%DrawHTML()