Hi,
I am using telerik for some time, but due to some posts on stackoverflow site I was curious to see how much rad components
contribute(overhead) to request size. So i made a test project with simple telerik page and standard asp.net page:
Telerik(q3, trial)
- first request size: html + 93k resources(2 requests made only once)
- default empty aspx page = 550b
- 10 telerik empty grids: 17k
- 20 telerik textboxes 34k,10 telerik textboxes 18k, 20 standard textboxes 2k
- 20 telerik textboxes + 20 empty grids 48k, standard 2k
- 1 item scheduler - 22k
If web config is changed with:(http://www.telerik.com/help/aspnet-ajax/disabling_embedded_resources.html)
<appSettings>
<!-- Disables the embedded scripts and skins for all RadControls -->
<add key="Telerik.EnableEmbeddedSkins" value="false"/>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false"/>
<add key="Telerik.EnableEmbeddedScripts" value="false"/>
</appSettings>
- first request size: html + 85k resources(2 requests)
- the rest ramain aprox the same(scheduler ->21k)
1. Is there a list of comparing tests or info about telerik components transfer(contribution to request) size; (only for component, not the axd resources once requests). Also it would be nice if I could see a compare between 2 pages one with standard controls and
javascript with jquerry, and the same features done with telerik.
2. The difference seems quite large vs standard.Have I missed something in the tests?
I am using telerik for some time, but due to some posts on stackoverflow site I was curious to see how much rad components
contribute(overhead) to request size. So i made a test project with simple telerik page and standard asp.net page:
Telerik(q3, trial)
- first request size: html + 93k resources(2 requests made only once)
- default empty aspx page = 550b
- 10 telerik empty grids: 17k
- 20 telerik textboxes 34k,10 telerik textboxes 18k, 20 standard textboxes 2k
- 20 telerik textboxes + 20 empty grids 48k, standard 2k
- 1 item scheduler - 22k
If web config is changed with:(http://www.telerik.com/help/aspnet-ajax/disabling_embedded_resources.html)
<appSettings>
<!-- Disables the embedded scripts and skins for all RadControls -->
<add key="Telerik.EnableEmbeddedSkins" value="false"/>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false"/>
<add key="Telerik.EnableEmbeddedScripts" value="false"/>
</appSettings>
- first request size: html + 85k resources(2 requests)
- the rest ramain aprox the same(scheduler ->21k)
1. Is there a list of comparing tests or info about telerik components transfer(contribution to request) size; (only for component, not the axd resources once requests). Also it would be nice if I could see a compare between 2 pages one with standard controls and
javascript with jquerry, and the same features done with telerik.
2. The difference seems quite large vs standard.Have I missed something in the tests?