hello admin
I think the problem comes from the items list "default.xml" file.
The options of creating the link menu are generated by this file. I have something like this:
<?xml version="1.0" encoding="utf-8"?>
<metadata>
<layout title="MAINTENANCE_LAYOUT_TICKETS">
<message>
<![CDATA[MAINTENANCE_LAYOUT_SHOW_TICKETS_LAYOUT]]>
</message></layout>
<fields name="request">
<fieldset name="request" addfieldpath="/administrator/components/com_maintenance/models/fields">
<field name="filter_created_by"
label="MAINTENANCE_JSEARCH_FILTER_CREE_PAR"
required="false"
default=""
description="MAINTENANCE_JSEARCH_SELECT_USER"
nullLabel="MAINTENANCE_JSEARCH_SELECT_NAME"
type="modalpicker"
model="thirdusers"
labelKey="name"/>
<field name="filter_creation_date_from"
label="MAINTENANCE_JSEARCH_FILTER_CREE_LE_FROM"
required="false"
default=""
description="MAINTENANCE_JSEARCH_SELECT_CREE_LE_FROM"
nullLabel="MAINTENANCE_JSEARCH_SELECT_CREE_LE"
format="d.m.Y H:i"
type="ckcalendar"/>
<field name="filter_creation_date_to"
label="MAINTENANCE_JSEARCH_FILTER_CREE_LE_TO"
required="false"
default=""
description="MAINTENANCE_JSEARCH_SELECT_CREE_LE_TO"
nullLabel="MAINTENANCE_JSEARCH_SELECT_CREE_LE"
format="d.m.Y H:i"
type="ckcalendar"/>
<field name="filter_lieu"
label="MAINTENANCE_JSEARCH_FILTER_LIEU"
required="false"
default=""
description="MAINTENANCE_JSEARCH_SELECT_LIEU"
nullLabel="MAINTENANCE_JSEARCH_SELECT_NOM"
type="modalpicker"
model="lieux"
labelKey="nom"/>
and the genrated link is :
index.php? option = com_maintenance & view = tickets & filter_created_by = - Select Name - & filter_lieu = - Select Name - & filter_type = - Select Name - & filter_statut = - Select Name - & filter_priority = - Select Name -
The problem is that when you do not enter any option on the menu link, joomla take by defaults the "nullllabel" of the modalpicker.
i tried without "nulllabel" and that work better
Nicolas