◆ addAttendeesByEntity()
void org.turro.zul.convocation.AttendeesGrid.addAttendeesByEntity |
( |
boolean |
deep | ) |
|
◆ addContact()
void org.turro.zul.convocation.AttendeesGrid.addContact |
( |
Contact |
contact | ) |
|
◆ addContacts()
void org.turro.zul.convocation.AttendeesGrid.addContacts |
( |
| ) |
|
Definition at line 82 of file AttendeesGrid.java.
83 final GenericFilterListbox<Contact> contacts =
new GenericFilterListbox<>(
84 new ContactFilter(),
new ContactFilterGrid(),
new ContactListbox());
86 contacts.show(I_.get(
"Contacts"),
"800px",
"600px",
new Command() {
88 public Object execute(Context context) {
89 if(contacts !=
null) {
90 for(Contact contact : contacts.getObjectValues()) {
94 Events.postEvent(
new Event(Events.ON_CHANGE));
◆ pasteContacts()
void org.turro.zul.convocation.AttendeesGrid.pasteContacts |
( |
| ) |
|
Definition at line 101 of file AttendeesGrid.java.
102 List<Contact> contacts = (List<Contact>) Framework.getClipboard().get(
"bbf_clip_contact");
103 if(contacts !=
null) {
104 for(Contact contact : contacts) {
105 Connector email = contact.getConnectorMap().get(IUser.CONNECTOR_EMAIL);
106 if(email !=
null && !Strings.isBlank(email.getValue())) {
110 Framework.getClipboard().remove(
"bbf_clip_contact");
◆ refresh()
void org.turro.zul.convocation.AttendeesGrid.refresh |
( |
| ) |
|
◆ setConvocation()
void org.turro.zul.convocation.AttendeesGrid.setConvocation |
( |
Convocation |
convocation | ) |
|
The documentation for this class was generated from the following file: