/* Handler that renames the autocomplete prompt when the DOM gets loaded */ $( document ).ready(function() { setTimeout(function(){ reset_OsInputPrompt_Bootstrap_prompt(); }, 100); }); /* Function to be called by HTTPRequestHandler.RunJavascript action which is called by the Search and Reset filter screen actions */ function reset_OsInputPrompt_Bootstrap_prompt() { $('.AutoCompletePrompt').attr('placeholder', 'Isn't this a cool autocomplete prompt???'); }
OsInputPrompt_GetInputData = (function(orig) { return function(el) { var inputData = orig(el); inputData.prompt = inputData.prompt || el.attr("placeholder"); return inputData; }; })(OsInputPrompt_GetInputData);