w2ui
Home
Get started
Demos
Docs
Blog
Support
Layout
Grid
Toolbar
Sidebar
Tabs
Form
Popup
Utilities
ver 1.3
ver 1.4
ver 1.5
ver 2.0
Grid
Overview
Events
Properties
Methods
w2grid.confirm
Shows a context confirmation dialog for the grid
confirm(options)
options
string|object
, text of the message or additional options
Returns
object
. This method displays a context confirmation dialog.
If you have following form:
let grid = new w2grid({ name : 'grid', columns: [ { field: 'recid', text: 'ID', size: '50px' }, { field: 'lname', text: 'Last Name', size: '30%', tooltip: 'column tooltip' }, { field: 'fname', text: 'First Name', size: '30%' }, { field: 'email', text: 'Email', size: '40%' }, { field: 'sdate', text: 'Start Date', size: '120px' }, { field: 'sdate', text: 'End Date', size: '120px' } ] });
You can
w2ui.grid.confirm('Some message.') .yes(event => { console.log('yes', event) }) .no(event => { console.log('no', event) }) .answer(event => { console.log(event.answer event) }) .then(event => { console.log('confirm is ready', event) })
Or
w2ui.grid.confirm({ width: 400, height: 200, body: 'Some message' }) .yes(event => { console.log('yes', event) })
User Comments
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus