JQuery Interview Question Answer
|
|
comments (0)
|
1- What is jQuery ?
How to create RSS feed from any feed URL using javascript
|
|
comments (0)
|
To create RSS feed of your Blog Simply Copy The following js Code.
<!-- start rss code -->
<script type="text/javascript">
<!--
rssmikle_url="http://imomin.webs.com/apps/blog/entries/feed/rss";
rssmikle_frame_width="620";
rssmikle_frame_height="600";
rssmikle_target="_blank";
rssmikle_font="Times New Roman, serif";
rssmikle_font_size="10";
rssmikle_border="on";
rssmikle_css_url="";
r...
Read Full Post »Integrate Google Map With ASP.NET
|
|
comments (0)
|
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Geocoding.aspx.cs" Inherits="ReverseGeocoding" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false" mce_src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script language="javascript" type=...
Read Full Post »Integrate Google Map With ASP.NET
|
|
comments (0)
|
JQgrid Tutorial
|
|
comments (0)
|
Dynamically setting the "editoption" 'value' field for a select box in jqgrid
|
|
comments (0)
|
1) call $.get() before constructing the grid
2) put its result into a variable
3) set that variable in value:name pair of the select box editoptions
in colModel.
This didn't work because of $.get() executing an AJAX call asynchronously
so that the abovementioned variable is assigned before the AJAX call is
finished and gets 'undefined' value accordingly.
Read Full Post »
JQuery Flot Charts with Time Series
|
|
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
|
|
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] )
|
|
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
|
|
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 »