mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-02 04:43:46 +01:00
Better handling of multiple selected read-only accounts
This commit is contained in:
parent
61f5cbbe55
commit
4407942ca6
@ -24,7 +24,7 @@
|
|||||||
* It extends et2_link to avoid needing the whole user list on the client.
|
* It extends et2_link to avoid needing the whole user list on the client.
|
||||||
* Instead, it just asks for the names of the ones needed, as needed.
|
* Instead, it just asks for the names of the ones needed, as needed.
|
||||||
*/
|
*/
|
||||||
var et2_selectAccount_ro = et2_link.extend([et2_IDetachedDOM], {
|
var et2_selectAccount_ro = et2_link_string.extend([et2_IDetachedDOM], {
|
||||||
|
|
||||||
init: function(_parent, options) {
|
init: function(_parent, options) {
|
||||||
/**
|
/**
|
||||||
@ -42,7 +42,14 @@ var et2_selectAccount_ro = et2_link.extend([et2_IDetachedDOM], {
|
|||||||
this.options.application = 'home-accounts';
|
this.options.application = 'home-accounts';
|
||||||
|
|
||||||
// Don't make it look like a link though
|
// Don't make it look like a link though
|
||||||
this.link.removeClass("et2_link");
|
this.list.removeClass("et2_link_string").addClass("et2_selectbox");
|
||||||
|
},
|
||||||
|
|
||||||
|
set_value: function(_value) {
|
||||||
|
this._super.apply(this, arguments);
|
||||||
|
|
||||||
|
// Don't make it look like a link though
|
||||||
|
jQuery('li',this.list).removeClass("et2_link et2_link_string");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
et2_register_widget(et2_selectAccount_ro, ["select-account_ro"]);
|
et2_register_widget(et2_selectAccount_ro, ["select-account_ro"]);
|
||||||
|
@ -497,6 +497,11 @@ var et2_selectbox_ro = et2_selectbox.extend([et2_IDetachedDOM], {
|
|||||||
this.setDOMNode(this.span[0]);
|
this.setDOMNode(this.span[0]);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Handle read-only multiselects in the same way
|
||||||
|
createMultiSelect: function() {
|
||||||
|
this.createInputWidget();
|
||||||
|
},
|
||||||
|
|
||||||
loadFromXML: function(_node) {
|
loadFromXML: function(_node) {
|
||||||
// Read the option-tags
|
// Read the option-tags
|
||||||
var options = et2_directChildrenByTagName(_node, "options");
|
var options = et2_directChildrenByTagName(_node, "options");
|
||||||
|
@ -213,6 +213,17 @@ button.et2_button_text:focus {
|
|||||||
height: 1.8em;
|
height: 1.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Read-only multi-select */
|
||||||
|
ul.et2_selectbox {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
.et2_selectbox li {
|
||||||
|
text-decoration: none;
|
||||||
|
list-style-image: none;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Date / Time widgets
|
* Date / Time widgets
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user