Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6364143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:07:36+00:00 2026-05-25T00:07:36+00:00

Any views on the most robust tools to implement a pretty ‘client rich’ (ie

  • 0

Any views on the most robust tools to implement a pretty ‘client rich’ (ie charts/controls updating one another’s content without postback). I have used Telerik quite a bit, but it seems very markup heavy when you want to configure it for ajax calls and controls updating each other on the client side.

The other options seem to be $ajax commands in jquery, standard updatepanels or a hybrid approach. Maintainability/simplicity is important. So is performance though – if simple JSON can pass rather than viewstates etc, that would be preferable.

Thanks

Mark

EDIT:
Thanks for the responses. The nature of my question is more around ‘architecture’. In the sense of driving things from client side events (ie when dropdown A changes, use client side events to refresh the others) or using server side events to ‘plumb’ it all together and then render any inline javascript from that side. Hope that clarifies it a bit. Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:07:36+00:00Added an answer on May 25, 2026 at 12:07 am

    If you’re looking for Free stuff;

    http://www.highcharts.com/ is probably the best free jQuery charting out there. It’s brilliant in what it can do.

    I also use http://jqueryui.com/ for a lot of my UI needs as it contains most of the controls I use in every site I write.

    jQuery has a great AJAX implementation and if you use it in conjunction with the MVC framework you have a really smooth UX.

    edit

    jQuery

    $.get("/userControls/PrintRunPriceCalculator.ashx?pages=" + pages + "&quantity=" + quantity, {}, function (data) {
        if (data != "")
            $(".TotalAmountFigure").html(data);
    });
    

    ashx

    public class PrintRunPriceCalculator : IHttpHandler, IReadOnlySessionState, IBookPrintDetail
    {
    
        public void ProcessRequest(HttpContext context)
        {
            int quantity;
            int pages;
    
            try
            {
                quantity = int.Parse(context.Request.QueryString["quantity"]);
                pages = int.Parse(context.Request.QueryString["pages"]);
            }catch{ return; }
    
            BookPrintDetailPresenter presenter = new BookPrintDetailPresenter(this);
            context.Response.Write(presenter.GetQuote(quantity, pages));
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Any idea on how to unit test the views in ASP.NET MVC? I am
Is there any difference in using login_required decorator in urls.py and in views.py ?
I didn't find any option for that, so I suspect that some views follow
Let's say I have a large collection of Image models and at any one
I follow this post What is the simplest and most robust way to get
My app is pretty simple with only two views. The first is a login
I’ve a block, created in the views module, where I post the most recent
I'm using ASP.NET, but I'm sure this pertains to any (or most) MVC frameworks.
I have a hybrid ASP.Net web forms/MVC app. On one of the MVC pages/views,
Is there any unofficial standard naming convention for partial views? I've seen someone suggested

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.