OnDgsEditAccepted

From Multi Theft Auto: Wiki
Revision as of 11:54, 20 June 2018 by Thisdp (talk | contribs) (Created page with "{{Client event}} __NOTOC__ This event is triggered when enter is pressed on a dgs edit box. ==Parameters== <syntaxhighlight lang="lua"> element editBox </syntaxhighlight> *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event is triggered when enter is pressed on a dgs edit box.

Parameters

element editBox
  • editBox: the dgs edit box which had focus.

Source

The source of this event is the dgs edit box which enter was pressed on.

Example

This example creates a dgs edit box and prints a message when enter is pressed.

DGS = exports.dgs
editBox = DGS:dgsCreateEdit ( 0.3, 0.1, 0.4, 0.1, "", true )
addEventHandler( "OnDgsEditAccepted", editBox,
    function( theElement ) 
        outputChatBox( DGS:dgsGetText( theElement ) )
    end
)

See Also

General

Check Box

Combo Box

Drag'N Drop

Edit

Grid List

Menu

Selector

Mouse

Radio Button

Switch Button

Tab

Animation

Plugin

Media

Color Picker

QRCode

Remote Image

Client event functions