First Post 🙂
I have a top bar menu item of type input control (like search) which stores a value in RegularUser.SearchFilter and calls a process.
I would like to clear the input field and reset to the "Undefined" text the moment the user clicks enter.
Resetting SearchFilter to "" does not reset the UI. Does this require javascript in the Advanced Render section?
This is how far I've got so far. Am I on the right lines? Or is it much simpler than this?
$("#" + parser.m_widgetInfo.wrapperId).find("aw_menu_top_bar_RegularUser_SearchFilter").val("").change();