使用 Rally 开发自定义 HTML 应用程序:我想显示一个文本框并从其中输入的数据中提取值。如何在使用 App SDK 创建自定义 html 应用程序时访问 rallytextfield 中的文本?
问问题
108 次
2 回答
0
这是一段导致问题的代码:如何访问日期选择器的值,我尝试了.getValue。它无法获得价值。请帮助
Ext.define('CustomApp', {
extend: 'Rally.app.App', componentCls: 'app', id: 'appid', launch: function () {
var datepickerfrom = Ext.create('Ext.Container', {
id: 'datepickerfrom',
items: [{
xtype: 'rallytextfield',
fieldLabel: 'Enter text: ',
labelWidth: 10
}],
renderTo: Ext.getBody().dom
});
this.add(datepickerfrom);
button = {
xtype: 'rallybutton',
text: 'Generate Report',
handler: function () {
console.clear();
console.log(datepickerfrom.getRawValue());
},
};
});
于 2013-08-15T01:03:15.373 回答
0
于 2013-08-06T16:29:06.683 回答