New, faster rendering mechanism - The new RadFormDecorator is more flexible, as it covers a number of scenarios that the old rendering was not possible to accommodate in a seamless cross-browser manner. Examples are: changing the text of a button on the client-side with javascript, attaching event handlers to a button, providing additional styling to fieldset elements, etc. The new rendering works much faster because it takes heavy advantage of the browser’s CSS engine. The old rendering relied stronger on JavaScript because of its IE6 support. Now the core implementation targets newer browsers, and the code is branched for IE6 where necessary. The new rendering also performs much better with partial page updates (AJAX)
Top