Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
URL Link to a contact form 12.11.2013 16:49
Hi,
How to configure to make a column clickable. i.e click on a column value, opens up a contact form and pass the column value as a parameter
I tried html instead of text type but to no avail.
Thanks
LF 1.2.4 / Joomla 2.5.14
Edited by moon_1320 - 12.11.2013 16:56
UPDATE: I was successful to achieve it by using Link to other list, and field to filter.
Q: How to apply CSS to that field, since there is no option for this type.
thanks
Edited by moon_1320 - 12.11.2013 19:48
How to configure to make a column clickable. i.e click on a column value, opens up a contact form and pass the column value as a parameter
I tried html instead of text type but to no avail.
Thanks
LF 1.2.4 / Joomla 2.5.14
Edited by moon_1320 - 12.11.2013 16:56
UPDATE: I was successful to achieve it by using Link to other list, and field to filter.
Q: How to apply CSS to that field, since there is no option for this type.
thanks
Edited by moon_1320 - 12.11.2013 19:48
Re: URL Link to a contact form 13.11.2013 09:24
Hi,
very smart solution, thanks for sharing!. The link type has a couple of classes you can use to style the cell. At the list css:
joomla/modules/mod_listmanager/assets/css/default2.css
You will find
.lmlinklist {
cursor: pointer;
}
class that is specific for link type. Also each column has assigned a class according to its order at the table,
lm_column_0
lm_column_1
lm_column_2
....
these classes don't exist by default at the css, you can create any of them needed for your column/s.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es
very smart solution, thanks for sharing!. The link type has a couple of classes you can use to style the cell. At the list css:
joomla/modules/mod_listmanager/assets/css/default2.css
You will find
.lmlinklist {
cursor: pointer;
}
class that is specific for link type. Also each column has assigned a class according to its order at the table,
lm_column_0
lm_column_1
lm_column_2
....
these classes don't exist by default at the css, you can create any of them needed for your column/s.
Hope this helps, regards
Moonsoft Team
www.moonsoft.es