Inline Input
🟡 Updated this yearPreview

🔍 Analysis
- 🏆 #6 of 6 Utilities mods in this game by downloads
📋 About This Mod
Provides reusable inline input fields for BLT menu rows.
Inline Input
Inline Input is a reusable helper for text inputs inside mod option menus.
It renders a text field over a BLT menu row and handles focus, typing, caret movement, selection, clipboard shortcuts, Backspace/Delete, Enter, Esc, validation, refreshes, and lifecycle callbacks. Use it when a mod needs a search box, name field, numeric entry, or any other inline text value.
This mod does nothing on its own, it's a dependency for other mods.
Requirements
-
[]PAYDAY 2 with SuperBLT.[/]
Quick Start
Load the library, register an input, then add a menu row for it:
local ok, InlineInput = pcall(dofile, ModPath .. "../InlineInput/require.lua")
if not ok or not InlineInput then
log(" InlineInput is not installed")
MyMod.search_text = MyMod.search_text or ""
local search_input = InlineInput:RegisterInput({
id = "my_mod:options_search",
menu_id = "my_mod_options",
item_id = "my_mod_options_search",
placeholder = "SEARCH",
max_length = 64,
get_value = function()
return MyMod.search_text
set_value = function(value, node_gui, source)
MyMod.search_text = value
MyMod:ApplyOptionsFilter(value)
on_submit = function(value)
MyMod:SaveSettings()
on_cancel = function()
MyMod.search_text = ""
MyMod:ApplyOptionsFilter("")
search_input:add_menu_item(MenuHelper, {
priority = 1000
📊 Mod Details
- Game
- Payday2 Mods
- Author
- perry519
- Version
- 1.0.2
- Downloads
- 11
- Endorsements
- 0
- Category
- Utilities
- Created
- 7/30/2026
- Updated
- 7/30/2026
🔧 How to Install Payday2 Mods
Download from Nexus Mods.
📖 Full step-by-step install guide for Payday2 →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Payday2 commands, item IDs, and more.
Keep browsing — more Payday2 mods await