Hello
I have found that parsing of edit dialog is very slow if I have large datagrid (1000 or more records).
With other words, if I call edit dialog and after that this code:
$('#div_temp').html(data); // data contains my dialog
$.parser.parse('#div_temp');
parser take 4-5 seconds if I have 1000 rows in grid.
If I have 50 or 100 records in the grid, it works normal.
It looks like parser do parsing whole screen and all grids each time dialog is opened.. is it possible to somehow parse only opened dialog because all my dialog's are modal?
Thank you.