BUG 0000 Added field title in Dashboards
- Added field title for to opcion "new" and "edit" dashlet - Added field title in list of dashlets - Added title value in DASHLET_INSTANCE.DAS_INS_ADDITIONAL_PROPERTIES field, this in "inser.sql" file
This commit is contained in:
@@ -5,6 +5,7 @@ var hiddenDasInsUID;
|
||||
var cboDasUID;
|
||||
var cboDasInsOwnerType;
|
||||
var cboDasInsOwnerUID;
|
||||
var txtDasInsTitle;
|
||||
var formFields;
|
||||
var additionalFields;
|
||||
var dashletInstanceFrm;
|
||||
@@ -63,7 +64,7 @@ Ext.onReady(function() {
|
||||
cboDasUID = new Ext.form.ComboBox({
|
||||
id: 'cboDasUID',
|
||||
name: 'DAS_UID',
|
||||
fieldLabel: 'Dashboard',
|
||||
fieldLabel: "Dashlet",
|
||||
editable: false,
|
||||
width: 320,
|
||||
store: storeDasUID,
|
||||
@@ -152,12 +153,21 @@ Ext.onReady(function() {
|
||||
valueField: 'OWNER_UID',
|
||||
displayField: 'OWNER_NAME'
|
||||
});
|
||||
|
||||
txtDasInsTitle = new Ext.form.TextField({
|
||||
id: "txtDasInsTitle",
|
||||
|
||||
name: "DAS_INS_TITLE",
|
||||
fieldLabel: "Title",
|
||||
allowBlank: false,
|
||||
width: 320
|
||||
});
|
||||
|
||||
formFields = [
|
||||
new Ext.form.FieldSet({
|
||||
id: 'general',
|
||||
title: 'General',
|
||||
items: [hiddenDasInsUID, cboDasUID, cboDasInsOwnerType, cboDasInsOwnerUID]
|
||||
items: [txtDasInsTitle, hiddenDasInsUID, cboDasUID, cboDasInsOwnerType, cboDasInsOwnerUID]
|
||||
})
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user