JQuery Flot Charts with Time Series

Posted by Komol on August 18, 2011 at 5:50 AM Comments comments (0)

Flot is an awesome library to produce the simple charts based on the great JQuery.

Using the date/time data (e.g. X-axis data type) is a little difficult to get working right but after exchanging the emails with the developer of the Flot library, I got it right and this solution I couldn’t find anywhere on Google/Bing.

Here’s the code snippet and I hope this helps.

This examp...

Read Full Post »

Topic: Install and Setup Guide for Extjs Visual Studio

Posted by imomins on July 12, 2011 at 11:10 AM Comments comments (0)

Hi everyone. I have been spending the day working with Ext.Net and so far I am loving it. I have been looking for something like this for over a year now and am excited to get started with it.

I wanted to give back by sharing my experience with setting up and installing Ext.Net with Visual Studios. I had noticed that there weren’t really any step by step instructions for people who are new to .Net and thought I would try to help out by ...

Read Full Post »

jQuery.ajax( url, [settings] )

Posted by imomins on July 11, 2011 at 11:02 AM Comments comments (0)

jQuery.ajax( url, [settings] )urlA string containing the URL to which the request is sent.

settingsA set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) below for a complete list of all settings.

version added: 1.0jQuery.ajax( settings )settingsA set of key/value pairs that configure the Ajax request. All s...

Read Full Post »

Jgrid

Posted by imomins on July 11, 2011 at 7:42 AM Comments comments (0)

jsonReader as FunctionIn certain situation you will obtain the data from a web service. In this case it is not possible to configure all the properties of the response so that the grid will work properly. As of version 3.6.4 it is possible to define the elements of the jsonReader as function. Below is a example on how this can be used:

jsonReader: {

repeatitems: false,

id: "Id",

Read Full Post »

Creating Message in JSON with JavaScript("toJSONString()" )

Posted by imomins on July 11, 2011 at 7:12 AM Comments comments (0)

Creating Message in JSON with JavaScript      

In previous section you have studied about the JSONin JavaScript's some basic concepts of creating a simple object and creating anarray of objects. Now we are going to discuss how to create a message with JSONin JavaScript.

In this example of creating message in JSON withJavaScript we have included "json2.js" file first. After t...

Read Full Post »

Creating Array Objects in JavaScript with JSON

Posted by imomins on July 11, 2011 at 6:59 AM Comments comments (0)

Creating Array Objects in JavaScript with JSON      

In the previous section of JavaScript-JSON tutorial youhave known that how to create an object and now in this tutorial we haveprovided you the way array of objects are declared in JavaScript-JSON.

In our example file we have created an object "students"which contains two array objects "Maths" and "Science"containing name, ...

Read Full Post »

JSON in JavaScript

Posted by imomins on July 11, 2011 at 6:47 AM Comments comments (0)

JSON stands for JavaScript Object Notation that is a language independent text format which is fast and easy to understand.

JSON in JavaScript      

JSON stands for JavaScriptObject Notationthat  is a language independent text format which is fast and easy to understand.That means it is really very simple and easy to learn without sparing much time.In anothe...

Read Full Post »

Introduction to JSON

Posted by imomins on July 11, 2011 at 6:45 AM Comments comments (0)

Introduction to JSON Introduction

As we know Ajax is a web development technology that makes the server responses faster by enabling the client-side scripts to retrieve only the required data from the server without retrieving a complete web page on each request, which will minimize the data transferred from the server.

These requests usually retrieve xml formatted response, the xml responses are...

Read Full Post »