I am always reluctant to use Netadvantage for ASP.NET controls when there already exist the same controls in VS2005 (i.e.: gridview, panel, tab). Although Infragistics controls are easier to use and has plenty of formatting options, the load that these controls add (JavaScript code in the resource file and styling images) push me away. I am not sure exactly how much it would increase the loading time or it would be noticeable for the user. I hope I am wrong
As I'm sure you've come to realize, software development is a constant tradeoff. Add more functionality, and performance takes a hit. In the new generation of web applications, end users have come to expect a rich experience, and that doesn't come for free. In many cases the performance hit is negligable, but there's always going to be a 'best case', where the feature-less will be faster than the feature-laden.
Here are a few things to think about.
Using AJAX techniques, you can break through performance barriers that were impossible to break through in the past. For example, you can use Virtual LoadOnDemand for the WebGrid to bind to millions of records, and have the performance of a grid with only 10 rows in it. Rich editing is made possibe using masked editors, and can be done without annoying postbacks to "enter edit mode". Paging can be done asynchronously, and the paging mechanism is built into the grid. There's an entire client-side API that you can use to program against any of the Infragistics controls without having to postback. Leveraging these aspects will enable you to create an application where the user can be more productive, and have a good experience.
Here are a couple of additional points to think about when dealing when any web application.
All script and css files are cached by both your webserver and the client browser. The client will only have to wait while the script is downloaded the first time they visit the site (unless they clear their cache).
Turning on GZIP compression on your WebServer can shrink the js files down quite a bit.
Also, you may have read in the beta forums that we're working on a new framework for our controls called "Aikido" One of the goals of this framework is to minimize the difference between "feature" and "performance". We want to deliver the features with the performance, and that's what we're focusing on.
I hope this helps,
-Tony
Hello,
We are using NetAdvantage for .NET+WPF 2007 Vol 3, the question that keeps coming up and I am looking for documentation on, is: Does NetAdvantage need to load, JavaScript or ActiveX controls to the client?
Can you point me in the right direction?
NetAdvantage for ASP.NET controls use JavaScript for client-side behaviors. Thus, they require JavaScript to be enabled on the client machine, but not ActiveX.
@Tony you forgot to mention a "HUGE" speed increase that you brought to my attention months ago when using app stylist and that is to rename the css stuff to a short name so instead of Office2007Blue rename it (and inside) to ob will cut down huge amounts on the overhead...
And to the OP gzip compression on IIS is great and if should be used "if you can" another way to go is to use Port80's Software which i use on some really intensive apps its fairly cheap and works well...
Link to port 80: http://www.port80software.com/products/httpzip/
Hi to all,
my programming team is currently evaluating the 2008 ASP.NET 2.X suite. After reading some of the forum discussions in regards to the poor performance of the webgrid I'm wondering if buying 10 licences is a good choice. For us, the application should respond quickly enough in order to keep the user experience excellent.
I would like to hear from your experience....since this is why a forum exist....to share our experiences....
The curent situation in our testing (using the demo version) is not acceptable. The webgrid is very slow in IE using a data set with less than 1000 records. Our current ASP application deal with close to 100k records....
Thanks in advance
Nicolas Monge
Project Manager, 20-20 Technologies
"The curent situation in our testing (using the demo version) is not acceptable."
I think the demo is representative of the performance you will see with the full version. If it is a problem now it will be a problem after you purchase. In any case I'd recommend you not buy 10 licenses until you are pretty sure the tool will work for your needs.
Can stored procedures (pl/sql) be used for hierarchical data sources? Could you point me to any examples?
thanks in advance!
GS
I have been using Infragistics products for the past 10 years...Sheridan Data Widgets. None of their customers pushes these guys harded than I do! Very simply, nearly all of my development is tied to using the Infragistics toolset. I can literally say I have zero experience with the MS Grid that ships with VS2008.One of the things I learned a long time ago about database development for windows and web is that the presentation layer is just that: THE PRESENTATION LAYER. Any effort to use it to massage and manipulate the data has performance consequences.THE DB SERVER IS YOUR FRIENDGet the data you need from your server EXACTLY the way you want the data presented. Yes it takes more time to write the stored procs, but you should also see a performance gain.Web Hierachical Data SourceI have been waiting for this control for a while. It eliminates the need to manually create your heirachical grid. Instead you create multiple sqldatasources and the WHDS manages the relationships for the WebGrid. It has great potential! :) . I want to see it at the centerpiece of ALL the Infragistics hierachical controls Trees, Menus, Calendars etc. It works fabulously with the Trees, Menus. Me thinks it should eventually replace the "custom datasource" used for the calendar. That way the calendar "data" can be easier to customize.WebDialogWindowI use this on EVERY MASTERPAGE! Being able to provide a modal dialog with a few lines of code is something every developer needs. Now I need it to provide standard Alert dialogs that can replace the MS validation alert boxes."Every conquest brings a newer quest!" ~ Eleanor Roosevelt
@JohnBobby
JohnBobby said: "Aikido is a brand new asp.net framework, built on top of Microsoft's ASP.NET AJAX extensions. All new controls built by Infragistics are built on top of this framework." seems like it will take a very long time for all controls to be rewritten under this new framework if you are only releasing 3 or so each time!
"Aikido is a brand new asp.net framework, built on top of Microsoft's ASP.NET AJAX extensions. All new controls built by Infragistics are built on top of this framework."
seems like it will take a very long time for all controls to be rewritten under this new framework if you are only releasing 3 or so each time!
It's always hard to explain the benefits of a new version without making the old version sound bad, but the truth is that even without the rewrite, the Infragistics controls, including the WebGrid are the best on the market (I know I'm a bit biased - but I really do believe this is true). The rewrite is all about making the controls even better - and not all controls require such an extensive rewrite. The Grid is probably the largest project, due to some of the complex architectrual changes that are being made.
JohnBobby said: 1) I have no way to know if what you say here is true and 2) I don't know specifically which "other vendor" you are referring to (please be specific if you can back up the claim as it would be helpful to me and others)
1) I have no way to know if what you say here is true and 2) I don't know specifically which "other vendor" you are referring to (please be specific if you can back up the claim as it would be helpful to me and others)
You're right - you have no way to know if what I say is true (which is almost my point) - and I probably shouldn't have said anything. My intent isn't to bash another product, but to make you aware that what may sound like a big deal on paper, may not be such a big deal at all. Here's a more concrete example. Go look for the "fastest grid on the market" and I'm sure you'll find multiple vendors making the same claim. Do you believe them just because they say it? No, you test it yourself. That was what I was trying to get at. I spend my days doing competitive analysis, so it's one of my own pet peeves to see the 'claims' that are being made, which are virtually unfounded. At the end of the day, just be sure to do your homework, and you'll be fine.
I would like to suggest that if you (or anyone else) would like to follow up on this discussion we schedule a phone call, and chat about this in real-time. I'm starting to struggle just trying to find which questions were asked, which ones I answered, etc. Plus, I don't make as many typo's when I'm talking on the phone :)
And you're right, I meant 2008 Volume 3, not 2008 Volume 1. Like you said - 2008 volume 2 just shipped, so I would say there's a really good chance the feature list for 2008 volume 1 is already set in stone. :)
@tony
thanks for your balanced reply. my thoughts are below.
"Infragistics has been doing AJAX development since 2004"
and kudos to you but you have acknowledged that your controls need to be rewritten (hence, Aikido) and that is what I hear often here in the forums, that your controls do the job but are heavy weight.
"While other vendors may be pushing their "new" AJAX frameworks, be cautious of what ammounts to nothing more than a marketing campaign"
"in the 2008.2 release, we added Safari support"
no disrespect but with a 2% market share we have much greater concerns than Safari support!
"I can't guarantee that drag and drop support is coming in 2008 volume 1"
I don't understand this comment as 2008 volume 1 was released some time ago and in fact 2008 volume 2 was just released! maybe you meant 2008? assuming so, to me this indicates you've abandoned this component at least in terms of enhancing its functionality. I appreciate you talking to the PM; tell him/her that if they are serious about the scheduler component they should look at the competition and see that they are now behind the state of the art.
"I would hope that you can agree that there was quite a bit of value in each of the releases"
actually I do not agree. and I am williing to admit this could be my own problem. but I have been and remain disappointed with each release of late. I eagerly look forward to a new release and then when I read the news it seems maybe there are one or two new features, and then something minor like a new chart is listed as a major new feature and enhancements (bug fixes?) to existing components listed as new features. from a marketing perspective, some of your recent releases IMHO should not even have a front-page splash/announcement rather just a page of release notes. it feels like over-promising and under-delivering to me. but again, maybe I am totally off-base here and I'm just feeling this way because my specific needs have not been met.
"We generally don't talk about roadmaps"
I understand the issues you discuss here but it would still be useful to know whether a component is slated for improvement within the next few releases. seems like you could just decide internally "yes" or "no" on something like that looking down the road for a year. not to sound like a broken record but it seems to me that the scheduler component was created and released to great fanfare and then shelved.
I really do appreciate your comments and I hope I don't sound too negative. our subscription goes through the end of the year so I'll be curious to see what the last release of 2008 brings.
JohnBobby said: As far as price is concerned it really is not about the price. I have lost more $ in wasted time trying to get the scheduler to work the way I want it to than I paid for the components! These tools are supposed to save me money!
As far as price is concerned it really is not about the price. I have lost more $ in wasted time trying to get the scheduler to work the way I want it to than I paid for the components! These tools are supposed to save me money!
My experience with WebGrid, Input Formatters, and the Menu, is that the learning curve is steep, but after that it's worth it. It's taken me about two years to learn my way around my particular subset of the tool set.
They are trying to improve this by providing better documentation, but these forums are (IMO) several times as valuable as all of the KB, Docs, and Samples put together. (Thanks in large part to the participation of IG staff.)