


Use EXT to dynamically call stock information without refreshing_YUI.Ext related
To be honest, I am not very familiar with Ext technology yet, so the code I write feels weird. If there is something wrong, I hope you can enlighten me.
The Ext version used is ext-2.2, and the download address is: http://www.extjs.com/products/extjs/download.php
Download Ext JS 2.2 SDK, unzip and copy the resources folder to the working directory.
Create a new jscript folder in the resources folder, and copy the ext-all.js file and adapterextext-base.js file in the ext root directory to the jscript folder, and create a new stock.js file. The code is as follows:
function ajaxRequest(){
Ext.Ajax.request( {
url: 'http://hq.sinajs.cn/list=sh000001,sh601939,sh600016,sh600528,sh600667,sh601390,sh601398,sh601857,sh600028,',
success: function(response){
var stocks = response.responseText.split(';');
var length = stocks.length - 2;
var dataset = new Array(length);
for(var i=0; i
var temp1 = content.split('=')[0];
var temp2 = content.split('=') [1];
var code = temp1.substr(temp1.length - 6, 6);
var temp3 = temp2.replace('"', '');
var name = temp3.split (',')[0];
var tday_f = temp3.split(',')[1];
var yest_f = temp3.split(',')[2];
var curr_f = temp3.split(',')[3];
var temp_f = curr_f - yest_f;
var data_i = new Array(9);
data_i[0] = code;
data_i[ 1] = name;
data_i[2] = curr_f;
data_i[3] = tday_f;
data_i[4] = yest_f;
data_i[5] = temp_f.toFixed(2);
data_i[6] = ((temp_f / yest_f) * 100).toFixed(2);
data_i[7] = temp3.split(',')[4];
data_i[8] = temp3.split(',')[5];
dataset[i] = data_i;
}
var store = new Ext.data.SimpleStore({
fields: [
{name: 'a1'},
{name: 'a2'},
{name: 'a3'},
{name: 'a4'},
{name: 'a5' },
{name: 'a6'},
{name: 'a7'},
{name: 'a8'},
{name: 'a9'}
]
});
//store.loadData(dataset);
var grid = new Ext.grid.GridPanel({
//renderTo: document.body,
store: store,
columns: [
{header: "Stock Code", width: 100, sortable: true, dataIndex: 'a1', id:'a1'},
{header: "Stock Name", width: 100, sortable: true, dataIndex: 'a2'},
{header: "Current price", width: 100, sortable: true, dataIndex: 'a3'},
{header: "Today's opening", width: 100, sortable: true, dataIndex: 'a4'},
{header: "Yesterday's closing price", width: 100, sortable: true, dataIndex: 'a5'},
{header: "Current price difference" ", width: 100, sortable: true, dataIndex: 'a6', renderer: change},
{header: "Increase and decrease", width: 100, sortable: true, dataIndex: 'a7', renderer: change },
{header: "Highest Price", width: 100, sortable: true, dataIndex: 'a8'},
{header: "Lowest Price", width: 100, sortable: true, dataIndex: ' a9'}
],
stripeRows: true,
autoExpandColumn: 'a1',
height:240,
width:740,
title:'Stock Information List'
});
if(document.getElementById("stockgrid").innerHTML == ""){
grid.render('stockgrid');
grid.getSelectionModel().selectFirstRow();
}
grid.store.loadData(dataset);
}
});
}
function change(val){
if(val < 0){
return '' val '';
}else if(val > 0){
return '' val '';
}
return val;
}
Ext.onReady(function(){
//Correction When the page starts, it prompts to download http://extjs.com/s.gif
Ext.BLANK_IMAGE_URL = "resources/images/default/s.gif";
Ext.state.Manager.setProvider(new Ext .state.CookieProvider());
ajaxRequest();
window.setInterval("ajaxRequest()",3000);
});
In the working directory Create a new stock.html file with the following code:
< ;div id="stockgrid">
As you can see from here, using Ext technology, dynamic pages, from the page presentation layer to data acquisition, are all handled by Ext.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The Linuxext2 file system is a file system used on most Linux operating systems. It uses an efficient disk storage structure to manage the storage of files and directories. Before we delve into the physical storage structure of the Linuxext2 file system, we first need to understand some basic concepts. In the ext2 file system, data is stored in data blocks (blocks), which are the smallest allocable units in the file system. Each data block has a fixed size, usually 1KB, 2KB or 4

The Linuxext2 file system is one of the commonly used file systems in the Linux operating system and has good performance and stability. This article will analyze the physical organization of the ext2 file system in detail and provide some specific code examples to help readers better understand. 1. Overview of the ext2 file system The ext2 file system is the earliest second-generation extended file system on the Linux system. It has made certain improvements in the performance, reliability and stability of the file system. It mainly consists of super block, group scan

A file system is an organization method for files stored on storage devices such as disks. The Linux system can support a variety of currently popular file systems, including: EXT2, EXT3, EXT4, FAT, FAT32, etc. So what are the differences between ext3 and ext4 in Linux systems? The following is a detailed introduction. What is the difference between ext3 and ext4 in Linux systems? 1. Larger file system and larger files ext3: 16TB file system and maximum 2TB file; ext4: 1EB file system and maximum 16TB file. 2. Unlimited number of subdirectories ext3: 32000 subdirectories; ext4: unlimited number of subdirectories.

How to use reflection functions in Java to dynamically create and call objects Introduction: In Java programming, reflection is a powerful technology that allows us to obtain and manipulate class information at runtime. Among them, the dynamic creation and invocation of objects is one of the important application scenarios of reflection. This article will introduce how to use reflection functions to dynamically create and call objects in Java, and provide specific code examples. 1. Overview of reflection: Java reflection means that the program operates the relevant properties and methods of the target class through the reflection API at runtime. exist

Introduction to file system selection and optimization suggestions for building a web server on CentOS: When building a web server, it is extremely important to select an appropriate file system and optimize it. This article will introduce the file systems commonly used when building web servers on CentOS and provide corresponding optimization suggestions. 1. File system selection XFS file system XFS is an advanced, high-performance log file system. It has fast and efficient file system recovery capabilities and excellent I/O operation performance for large-capacity storage. XFS versus large

In PHP development, reflection and magic methods are two commonly used techniques. When we need to automatically generate code or dynamically call certain functions, reflection and magic methods can make our code more flexible and efficient. In this article, we will explore how to use reflection and magic methods to achieve automatic code generation and dynamic invocation. Reflection is a powerful tool provided by PHP, which can help us obtain information such as classes, methods, and properties when the program is running. Through reflection, we can dynamically obtain information such as methods, properties, and annotations of a class or object, so that

Detailed explanation of the physical structure of the ext2 file system under Linux. In the Linux system, ext2 is a commonly used file system type. It is a relatively simple and efficient file system. In this article, we will delve into the physical structure of the ext2 file system, including super blocks, group descriptors, inode tables, data blocks, etc., and also provide specific code examples to help readers better understand. 1. Super block (SuperBlock) The super block is one of the most important data structures in the ext2 file system.

In the process of developing with Golang, sometimes we encounter some strange errors and problems. Among them, the error message "undefined: path.Ext" may appear. This problem is usually caused by missing import packages. We can use the following methods to solve this problem. Method 1: Import the "path" package When using the path.Ext function, we need to import the "path" package. If you haven't imported the package yet, you can add it to your code
