This is a SharePoint custom list form. I have a button that when clicked is supposed to set certain fields to edit mode, and leave the rest in view mode.
My buttons OnSelect: Set(varMode, "true")
For the fields that need to be editable, I have DisplayMode: if(varMode="true", DisplayMode.Edit, DisplayMode.View)
When I publish and go view the form, I click the button and it looks like the fields changed from view to edit. The field box even appears, however when I click to type something, nothing happens. Any ideas what this could be? Thanks for the help.