I tried
grid.navGrid("#grid_toppager",{},
{
bSubmit: 'Submit',
editCaption: 'Edit',
title: 'Save changes (Ctrl+S)' } );
but Save changes (Ctrl+S) tooltip does not appear if mouse is over Submit button. how to show tooltip in edit and add form submit buttons ?
There are no
titleoption of navGrid method. There are only options likeedittitleoraddtitlewhich are not what you need.What you need is to set
titleattribute on the “Submit” button which you have to do directly inside ofbeforeShowFormfor example. See the demo.