|
Title: Dialog Box Shadow Does Not Resize when Dialog does Post by: devnull on June 03, 2015, 05:32:13 AM I have a datagrid inside a dialog box.
When rows in the datagrid are hidden or deleted and the datagrid height and dialog body reduce in height, the shadow is not updated and remains at the full height. Title: Re: Dialog Box Shadow Does Not Resize when Dialog does Post by: stworthy on June 03, 2015, 07:52:37 AM When a datagrid row is deleted, please call dialog's 'resize' method to reset its size.
Code: $('#dlg').dialog('resize'); |