- 浏览: 19337 次
- 性别:
- 来自: 苏州
最近访客 更多访客>>
文章列表
jQuery获取Select选中的Text和Value(jquery学习备忘录)
语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val(); //获取Select ...
一般在导数据的时候,如果需要将oracle10g导出的dmp文件导入到oracle9i里,会报版本不支持的错误,
解决办法:
用低版本的客户端,远程导高版本的数据库,然后还用低版本的客户端恢复
exp sportsdb/123456@orcaleyx_192.168.10.7 FILE=D:/websitecms.DMP
imp system/myodbc123456@sportsdb FILE=D:/websitecms.DMP full=y
结论:
一、高版本exp出的dmp文件,低版本无法imp(无法识别dmp文件)
二、低版本的exp ...
- 2009-08-18 14:00
- 浏览 2208
- 评论(0)
alert(Ext.get("comboPro").dom.value);
alert(Ext.getCmp("comboPro").getValue());
buttons: [{
text: 'Save',
handler: function(){
Ext.Msg.alert("",fp.form.fi ...
- 2009-08-17 20:20
- 浏览 914
- 评论(0)
public String execute() throws Exception
{
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("utf-8");
List person = dao.getAllPage(start, 10);
//String json= ExtHelper.getJsonFormList(dao.getA ...
- 2009-08-14 10:37
- 浏览 3193
- 评论(0)
var state_Store = new Ext.data.SimpleStore({
fields : ['txt','val'],
data : [['正常','0'],['异常','1'],['紧急','2']]
});
var _state = new Ext.form.ComboBox({
name : 'dangerState',
fieldLabel : '状态',
width : 200,
value : dangerState,
...
- 2009-08-13 12:20
- 浏览 957
- 评论(0)
{
fieldLabel: "管理密码",
id:"pwA",
name: "adminPW",
value:"admin",
inputType : "password",
allowBlank:false,
...
- 2009-08-13 11:46
- 浏览 854
- 评论(0)
listeners:{
'dblclick':function(){
//request.getParameter("po");
//String title = po.getTitle();
//alert(node.text);
var id = node.id;
alert(id);
var reader = new Ext.data.JsonReader({},[
...
- 2009-08-13 11:19
- 浏览 1029
- 评论(0)
},{
header:'对象'
,
dataIndex:'node'
,
renderer:function
(value,meta,record){
var
nodeType = Ext.util.Format.uppercase(record.get(
'nodeType'
));
if
([
'BSC'
,
'MSC'
,
'MGW'
,
'GGSN'
,
'SGSN ...
- 2009-08-13 10:59
- 浏览 1725
- 评论(0)
Ext.onReady(function() {
Ext.BLANK_IMAGE_URL = "../images/olive/s.gif";
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = "side";
var store = new Ext.data.Store({
url : "xml/test.xml",
...
- 2009-08-13 10:27
- 浏览 1026
- 评论(1)
grid.getSelectionModel().selectFirstRow();
//
默认选择第一行
var
store
=
new
Ext.data.SimpleStore(
{
fields: [
- 2009-08-13 09:39
- 浏览 957
- 评论(0)
renderer使用
- 博客分类:
- Extjs
{ header:
"
变化(%)
"
, width:
75
, sortable:
true
, renderer: pctChange, dataIndex:
'
pctChange
'
}
,
function
pctChange(val)
- 2009-08-13 09:28
- 浏览 1144
- 评论(0)
在一个用户已登录了SQL*PLUS后,有没有什么办法使当前用户退出,让另一个用户登录进去,而又不用关掉SQL*PLUS之后再重进.
SQL>connect username/password@yourdb
- 2009-06-27 15:36
- 浏览 1487
- 评论(0)
删除configuration文件夹里除config.ini以外的所有文件,切记不删除config.ini文件,重启Eclipse
- 2009-04-01 15:34
- 浏览 3132
- 评论(0)