up vote 0 down vote favorite
share [g+] share [fb]

Has anyone had any experience writing a web control (in either ASP.net, or javascript/HTML/CSS), that could be used to display log information which is pinged from a server every now and then via an AJAX query?

I'm thinking a grid control from someone like Telerik, or maybe a javascript jQuery-type library would at least have the plumbing I need to get going. Each row would likely contain some HTML which I could format as needed for the event, and that's about it really.

It would also be nice to be able to programmatically scroll to show added rows, preferably smoothly.

Here is a programmer-art mockup of what I mean:

alt text

Regards, Shane

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

I would recommend using JQuery to perform the ping to fetch data periodically. The data provider has to provide a data format like json of something easy for you to decipher on the receiving end.

Use JQuery again to construct the new log item to be displayed and append it to the log display container. Use ScrollTo plugin or just javascript to scroll new item into view

Resources:

link|improve this answer
Great links, thanks! I'll try this when I get into work tomorrow :D – Shane Oct 30 '09 at 6:13
@Shane: No prob, good luck! – o.k.w Oct 30 '09 at 6:41
feedback

Telerik has great support for declarative (codeless) client-side binding or programmatic client-side binding of its controls to web services. Here's an example of a grid that is updated in real-time.

They will also be releasing a new ListView control if you want a more custom layout than the grid provides. I'm sure you'll find similar implementations as far as client-side binding and web services.

link|improve this answer
feedback

If ASP.NET MVC is an option, you might also want to check-out the free and open source Telerik Grid for ASP.NET MVC:

http://demos.telerik.com/aspnet-mvc/Grid

Unlike the jQuery options, the Telerik Grid supports both server-side and client-side rendering, delivering a solution that is more accessible, indexer-friendly, and still as fast and performant as JavaScript grids. Includes support for binding directly to web services and for UI features like paging, sorting, filtering, grouping, and (soon) hierarchy.

Hope that helps for any that are following in Shane's footsteps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.