Hello RoundCubers
I develop a new theme for RoundCube. Now i want to add some Functions to the list i get from the core (<roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" />).
Is it possible to change the structure of this addresslist without change the core itself?
If i have to change the core, where should i start at, can anyone give me a hint where i do have to search for this object in the core?
Thanks a lot, best regards
What structural changes do you want to make?
Thank you for the fast reply.
I speak of changes in the generated html which will be returned by the following command in a html template:
<roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" />
something like adding buttons to the list to manipulate the contact entries.
That should be done by making a plugin not by modifying the container. Read about the plugin api: http://trac.roundcube.net/wiki/Doc_Plugins
Thanks for your Answer. That worked perfectly for me!