Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
780
WebDropDowns and the $create statement
posted

Hello,

We have a form where there is a HTML table with rows. There are WDD and also other controls in the cells of the rows. That row can be copied via Javascript and added to the HTML table. For each WDD in the row, we create an instance of the control.

 Sys.Application.add_init (function () {

      $create(Infragistics.Web.UI.WebDropDown, {}

});

 It is taking a lot of time to load the new row and the more rows we have, the more time it takes.

 Would it be possible to have one instance of the WDD and use it several times? Or there is a way to avoid having so many $create statements?

Thanks in advance

 P.S: I have seen that in WebDataGrid, only one instance of the WDD exists for the whole grid.