How to load record creation dates in an application

To load record creation dates in an application; Add =SpreadsheetWebRecordInfo(”EntryDate”) named range to your workbook. Go to User Interface module. Add a textbox control and bind the named range to it Finally, publish your...

How to hide pages for specific users

To hide pages for specific users; Add =SpreadsheetWebUserInfo(”UserName”) named range to your workbook. Add an If function. We added =IFERROR(IF(C1=”joedoe@pagos.com”;TRUE;FALSE);TRUE) to disable a page for ”joedoe@pagos.com” user. Go to Pages...

How to hide controls for specific users

To hide pages for specific users; Add =SpreadsheetWebUserInfo(”UserName”) named range to your workbook. Add an If function. We added =IFERROR(IF(C1=”joedoe@pagos.com”;TRUE;FALSE);TRUE) to hide a control for ”joedoe@pagos.com” user. Go to User...

How to change the font family in Stylesheets

To change the font family in Stylesheets; Open Designer Interface, Go to ‘Stylesheet’ module. Add a new stylesheet. Add following CSS code; font-family: “Font Name”, sans-serif; Replace “Font Name” with the name of the font you want to use....

How to set defaults in Dropdown controls

To set defaults in Dropdown controls; Open Designer interface, Click on the dropdown control, Select the desired default value from the ‘Default Value’ dropdown located on the right side of the...

How to set defaults in Textbox controls

To set defaults in Textbox controls; Open Designer interface, Click on a textbox control. Enter a default value for the ‘Default Value’ field located on the right side of the...

How to format data in Textbox controls

To format data in Textbox controls; Open Designer interface, Click on a textbox control. Choose desired option from ‘Text Mask’ dropdown located on the right side of the...

How to make cells not editable in Grid controls

To make cells not editable in Grid controls; Open Designer Interface, Go to the ‘Using Interface’ module. Select the input grid. Check the ‘Use Metadata Formatting’ and ‘Disable Formula-based Cells’...