Added focus to popup

When collection add popup is shown, the textbox gets focus
This commit is contained in:
Tim Hobbs 2014-03-21 16:17:02 -07:00
parent fd0c1ec8ae
commit 81afb3321b

View file

@ -72,6 +72,11 @@
<script type="text/javascript">
$('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit);
$(document).on("pageinit", function () {
$(".popupIdentify").on("popupafteropen", function (e) {
$("#txtLookupName").focus().selct();
});
});
</script>
</div>
</body>