WoW AceGUI-3.0-Completing-EditBox addon Dragonflight/Wrath of the Lich King Classic 2024
logo
wow addon AceGUI-3.0-Completing-EditBox

AceGUI-3.0-Completing-EditBox

Game Version: 6.2.0
Total Downloads: 14,492
Updated: Jun 28, 2015
Created: Oct 26, 2010
download AceGUI-3.0-Completing-EditBoxDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
1.4.2 +1 More release 65.97 KB Jun 28, 2015 6.2.0 3,039 download AceGUI-3.0-Completing-EditBox 1.4.2

+1 More releaseDownload
1.4.1 +1 More release 65.99 KB Jun 14, 2014 5.4.8 1,605 download AceGUI-3.0-Completing-EditBox 1.4.1

+1 More releaseDownload
1.4 +1 More release 65.65 KB Aug 28, 2012 5.0.4 2,289 download AceGUI-3.0-Completing-EditBox 1.4

+1 More releaseDownload
v1.3 +1 More release 65.38 KB Nov 30, 2011 4.3.0 2,453 download AceGUI-3.0-Completing-EditBox v1.3

+1 More releaseDownload
v1.2 +1 More release 65.30 KB Jun 28, 2011 4.2.0 1,256 download AceGUI-3.0-Completing-EditBox v1.2

+1 More releaseDownload
v1.1 +1 More release 65.05 KB Apr 26, 2011 4.1.0 818 download AceGUI-3.0-Completing-EditBox v1.1

+1 More releaseDownload
v1.0-2 +1 More release 64.95 KB Mar 17, 2011 4.0.6 638 download AceGUI-3.0-Completing-EditBox v1.0-2

+1 More releaseDownload
v1.0 +1 More release 61.72 KB Oct 28, 2010 4.0.1 1,261 download AceGUI-3.0-Completing-EditBox v1.0

+1 More releaseDownload
r9 +1 More alpha 65.26 KB Jun 28, 2011 4.2.0 74 download AceGUI-3.0-Completing-EditBox r9

+1 More alphaDownload
r7 +1 More alpha 65.01 KB Apr 26, 2011 4.1.0 52 download AceGUI-3.0-Completing-EditBox r7

+1 More alphaDownload
r4 +1 More alpha 61.69 KB Oct 28, 2010 4.0.1 67 download AceGUI-3.0-Completing-EditBox r4

+1 More alphaDownload
r3 +1 More alpha 61.63 KB Oct 28, 2010 4.0.1 61 download AceGUI-3.0-Completing-EditBox r3

+1 More alphaDownload

Description

Share this:

Allows easy creation of AceGUI EditBox widgets supporting autocompletion. They can be used as custom controls in AceConfig table entries as well, via the 'dialogControl' field (see AceConfig docs for more on the dialogControl option).

Example mock-up (see the .lua file for explanations and additional notes):

local AceGUI = LibStub("AceGUI-3.0")
local Completing = LibStub("AceGUI-3.0-Completing-EditBox")

Completing:Register ("ExampleGroupMembers", AUTOCOMPLETE_LIST_TEMPLATES.IN_GROUP)
Completing:Register ("ExampleMailbox",      AUTOCOMPLETE_LIST.MAIL)
....

-- Works just like the name field in the builtin mail window.
local send_to = AceGUI:Create("EditBoxExampleMailbox")
....

-- The options dialog here will autofill names in your current raid.
ace3option = {
    name = "Example",
    type = 'input',
    dialogControl = "EditBoxExampleGroupMembers",
    get = false,
    set = function (info, value)
        print("Ooooh shiny, you might have typed", value, "with the help of autocompletion!")
    end,
}

Bugs, comments, etc, at the wowace development site link.

Comments

Add a comment