Foros de discusión

[SOLVED]Getting a custom user field value (expando)

thumbnail
Daniel Kreiseder, modificado hace 14 años.

[SOLVED]Getting a custom user field value (expando)

New Member Mensajes: 12 Fecha de incorporación: 8/01/09 Mensajes recientes
I added a custom user field in Liferay, and set a value on a specific user.

How can I access this value programmatically?


If I try this, I always get null:

    String customAttr = (String)user.getExpandoBridge().getAttribute("customAttr");


user.getExpandoBridge().getAttribute("customAttr") returns a value of Type java.IO.Serializable.
Maybe the cast here is wrong?

But the Custom Attribute does exist (following code prints out the attribute key):

    for (Enumeration<string> attrs = user.getExpandoBridge().getAttributeNames(); attrs.hasMoreElements();)
    	_log.info("elem: '" + attrs.nextElement() + "'");
</string>


Somehow I miss the point here....
thumbnail
Amos Fong, modificado hace 14 años.

RE: Getting a custom user field value (expando)

Liferay Legend Mensajes: 2047 Fecha de incorporación: 7/10/08 Mensajes recientes
Hi Daniel,

When you created the custom attribute, which type did you choose? Maybe try casting into that type.
thumbnail
Daniel Kreiseder, modificado hace 14 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 12 Fecha de incorporación: 8/01/09 Mensajes recientes
The custom field is of type string...
Mahmoud kallel, modificado hace 10 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado hace 10 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Daniel Kreiseder, modificado hace 14 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 12 Fecha de incorporación: 8/01/09 Mensajes recientes
It was a security problem...

In com.liferay.portlet.expando.service.impl.ExpandoValueServiceImpl.getData(String className, String tableName, String columnName, long classPK)
:

		if (ExpandoColumnPermission.contains(
				getPermissionChecker(), column, ActionKeys.VIEW)) {

			return expandoValueLocalService.getData(
				className, tableName, columnName, classPK);
		}
		else {
			[b]return null;[/b]
		}


I only had to set the view permisson on the custom expando value, and everything worked fine ....
thumbnail
ilke Muhtaroglu, modificado hace 14 años.

RE: Getting a custom user field value (expando)

Regular Member Mensajes: 226 Fecha de incorporación: 12/05/09 Mensajes recientes
Hi,

I am trying to access this value before i log-in ! Where and how what do we set ?

"had to set the view permisson on the custom expando value" Can you please inform more about how to do this?

thanks for co-operation.

ilke
thumbnail
Daniel Kreiseder, modificado hace 14 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 12 Fecha de incorporación: 8/01/09 Mensajes recientes
Control Panel-> Users->Custom Attributes->Actions->Permissions


Set Guest Permission to read
thumbnail
vikash kumar chaurasia, modificado hace 14 años.

RE: Getting a custom user field value (expando)

Junior Member Mensajes: 97 Fecha de incorporación: 8/01/10 Mensajes recientes
Hi,


My question is:

If I have created a custom attribute for User e.g. country from the control panel and set it's value as "France" for a user. How can I get that attribute value for that user in a portlet in Plugin SDK envt.

Thanks.
jeff Leitman, modificado hace 13 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 4 Fecha de incorporación: 20/08/09 Mensajes recientes
vikash kumar chaurasia:
Hi,


My question is:

If I have created a custom attribute for User e.g. country from the control panel and set it's value as "France" for a user. How can I get that attribute value for that user in a portlet in Plugin SDK envt.

Thanks.



I am wondering the same thing. I have a custom attribute of type java.lang.String[], used for timezones (e.g. "America/New York", "America/Chicago") for Organizations. I put the list of available timezones into the Default Value to get the list to show up, and chosoe "Selection" when creating the custom attribute. Then for an organization, I can choose one timezone from the list. But when I try to do

(String) org.getExpandoBridge().getAttribute("timezone");


it always throws an error because "timezone" attribute has type "java.lang.String[]", not "java.lang.String".

So how do I retrieve only the chosen timezone String?
Borja Gómez, modificado hace 13 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 6 Fecha de incorporación: 18/11/10 Mensajes recientes
I have the same problem. Have you solved it?

It can't be so difficult!
thumbnail
Piotr Filipowicz, modificado hace 13 años.

RE: Getting a custom user field value (expando)

Junior Member Mensajes: 52 Fecha de incorporación: 18/11/10 Mensajes recientes
Maybe you should write something like this:


String name = "myAttr";
		int type = user.getExpandoBridge().getAttributeType(name);
		Serializable value = user.getExpandoBridge().getAttribute(name);
		Serializable defaultValue = user.getExpandoBridge().getAttributeDefault(name);
		if (type == ExpandoColumnConstants.STRING_ARRAY) {
			String[] curValue = (String[])value;
			for (String curDefaultValue : (String[])defaultValue) {
				if ((curValue != null) &amp;&amp; (curValue.length &gt; 0) &amp;&amp; (curDefaultValue.equals(curValue[0]))) {
					System.out.println(curDefaultValue);
				}
			}
		}


I saw similar code in tag ui:custom-attribute in file: portal/portal-web/docroot/html/taglib/ui/custom_attribute/page.jsp.

Give me the answer if this code looks right.

--
Best regards,
Piotr Filipowicz
kuki last, modificado hace 13 años.

RE: Getting a custom user field value (expando)

New Member Mensaje: 1 Fecha de incorporación: 22/11/10 Mensajes recientes
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue. I tried


Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");


and


Map<string, serializable> expandoAttribs = file.getExpandoBridge().getAttributes();
Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");
</string,>


It still gives me the default values ... i can see them in the db table 'expandovalue'

I've tried to do it like this:


			ExpandoTable et = ExpandoTableLocalServiceUtil.getTable(eb.getClassName(), eb.get);
			System.out.println("et: "+et.getTableId()+" "+et.getName()+" "+et.getPrimaryKey());
			ExpandoColumn ec = ExpandoColumnLocalServiceUtil.getColumn(et.getTableId(), et.getName());
			System.out.println("ec: "+ec.getColumnId()+" ");
			//ExpandoRowLocalServiceUtil.getRow(et.getTableId(), et.getPrimaryKey());
			//ExpandoValueLocalServiceUtil.getValue(columnId rowId)


and ... THERE IS NOOOOOOOOO *$@% DOCUMENTATION on the parameters exceppt for @depricated...
thumbnail
Adolfo Enrique Benedetti, modificado hace 13 años.

RE: Getting a custom user field value (expando)

Junior Member Mensajes: 45 Fecha de incorporación: 4/06/09 Mensajes recientes
kuki last:
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue.

Did you try to change the values of your test? maybe the values retrieved from the custom fields are not the ones sent by the browser in the last submit, but the old ones(in your case the default values). see this post
Mykola M, modificado hace 12 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 4 Fecha de incorporación: 20/01/11 Mensajes recientes
kuki last:
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue. I tried


Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");


and


Map<string, serializable> expandoAttribs = file.getExpandoBridge().getAttributes();
Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");
</string,>


It still gives me the default values ... i can see them in the db table 'expandovalue'

I've tried to do it like this:


			ExpandoTable et = ExpandoTableLocalServiceUtil.getTable(eb.getClassName(), eb.get);
			System.out.println("et: "+et.getTableId()+" "+et.getName()+" "+et.getPrimaryKey());
			ExpandoColumn ec = ExpandoColumnLocalServiceUtil.getColumn(et.getTableId(), et.getName());
			System.out.println("ec: "+ec.getColumnId()+" ");
			//ExpandoRowLocalServiceUtil.getRow(et.getTableId(), et.getPrimaryKey());
			//ExpandoValueLocalServiceUtil.getValue(columnId rowId)


and ... THERE IS NOOOOOOOOO *$@% DOCUMENTATION on the parameters exceppt for @depricated...


This is ridiculous. Spent ~6h hours digging it, had to look up eventually how they display values of custom fields in control panel, and look what I have found!
Sorry for being somewhat emotional, but this is just stupid.

If you define custom field "myfield" on for instance Organization, and you call
org.getExpandoBridge().getAttribute("random") - returns null, because there's no field "random" defined
org.getExpandoBridge().getAttribute("myfield") - returns value as expected.

Simple, yep? But!
DLFileEntry (document library documents) is very special.
dlFileEntry.getExpandoBridge().getAttribute("random") - returns null, ok
dlFileEntry.getExpandoBridge().getAttribute("myfield") - returns default value! (like empty string for Text, 1 Jan 1970 for Date etc)

Extensive debugging shows, that in expandovalue for document with id say 100000 there's a record with classPK column value 100001. So class is somehow wrong.
Looking up liferay-portal-src-6.0.6\portal-web\docroot\html\portlet\document_library\edit_file_entry.jsp expained it all - they use DLFileVersion!

dlFileEntry.getFileVersion().getExpandoBridge().getAttribute("myfield") - returns desired value

Had to learn it the hard way )-:
So I hope sharing this knowledge will save mankind some wasted resources (-:
Enjoy.
Jack Daniels, modificado hace 12 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 19 Fecha de incorporación: 17/05/10 Mensajes recientes
That is absurd indeed.

Thank you so much for providing a solution for others to follow. I was about to embark on the same quest when I stumbled on your post. Thanks again!!!
Marc Piparo, modificado hace 12 años.

RE: Getting a custom user field value (expando)

Junior Member Mensajes: 43 Fecha de incorporación: 14/03/11 Mensajes recientes
thanks!!
Krishan Kumar, modificado hace 12 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 16 Fecha de incorporación: 18/01/12 Mensajes recientes
Hi Mykola M,

I need a little help on Docuemnt Lib. custom Fields. If you can help me on this, that wud save my life.

I want to search documents on custom Fields value. That is, I added a custom field - say "Package" - in DL file and added a value - say "1234"- to it.

Now when is search the Liferay portal through open search portlet, it should give me this document. Currently Open search is searching on Custom fileds in User but not on Custom Fields in Document Library.

If you can suggest any solution, plz give it step by step as I am new to Liferay.

I am using Liferay 6.0.6 + tomcat 6.0.29 + MySQL 5.5.

Thanx in advance...

Krishan Kumar
thumbnail
Praveen P, modificado hace 12 años.

RE: Getting a custom user field value (expando)

Regular Member Mensajes: 100 Fecha de incorporación: 21/02/12 Mensajes recientes
Hi i added custom field like country, and given some group of values but while fetching the data useing
(String) user.getExpandoBridge().getAttribute("Country") it is not displaying a desired value, how to get?

Thanks in advance
Julien GRESSE, modificado hace 11 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 5 Fecha de incorporación: 9/01/12 Mensajes recientes
Hi everybody,

We found a way to retreive custom fields value, it's bit complicated but it works fine.


long versionID = DLFileVersionLocalServiceUtil.getLatestFileVersion(fileId, true).getFileVersionId();
ExpandoTable expandoTable = ExpandoTableLocalServiceUtil.getDefaultTable(companyId, DLFileEntry.class.getName());
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(expandoTable.getTableId(), "custom.order");
if (column != null) {
ExpandoValue val = ExpandoValueLocalServiceUtil.getValue(expandoTable.getTableId(), column.getColumnId(), versionID);
  if (val != null) {
    return val.getInteger();
  } else {
    return 0;
  }
}


Hope this helps
thumbnail
Pranoti Nandurkar, modificado hace 10 años.

RE: Getting a custom user field value (expando)

Junior Member Mensajes: 48 Fecha de incorporación: 3/02/12 Mensajes recientes
Thanks Julien, It worked for me... emoticon
Mahmoud kallel, modificado hace 10 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado hace 10 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Ehsan Rashidy, modificado hace 10 años.

RE: Getting a custom user field value (expando)

New Member Mensajes: 17 Fecha de incorporación: 24/04/13 Mensajes recientes
Daniel Kreiseder:
Control Panel-> Users->Custom Attributes->Actions->Permissions

Set Guest Permission to read


Hi,
Thank you Daneil for your helpful post,

I had the same problem with custom fields, here is my scenario:

First i created a custom field through control panel for organization (here),
Then I changed the permissions for this fields
(
1-login as administrator, go to control panel
2-Portal -> custom fields
3- click Actions -> permissions on you desired custom field
4- then check view check box for guest role
)

And at the end i just get the value of the custom field by ExpandoBridge.(organization.getExpandoBridge().getAttribute("CUSTOM_FIELD_NAME");)
thumbnail
ilke Muhtaroglu, modificado hace 14 años.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Mensajes: 226 Fecha de incorporación: 12/05/09 Mensajes recientes
Hi,

I try to access to a custom attribute of users.

The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !

user.getExpandoBridge().getAttribute("sessionNo");

am i supposed to cast it ?

the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???

ilke
thumbnail
Anil Sunkari, modificado hace 12 años.

RE: [SOLVED]Getting a custom user field value (expando)

Expert Mensajes: 427 Fecha de incorporación: 12/08/09 Mensajes recientes
Hi ilke,

ilke Muhtaroglu:
Hi,

I try to access to a custom attribute of users.

The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !

user.getExpandoBridge().getAttribute("sessionNo");

am i supposed to cast it ?

the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???

ilke


As per my understanding if i am right you can try using below code to get field value from expandovalue.

long userClassNameId = ClassNameLocalServiceUtil.getClassNameId(User.class.getName());
ExpandoTable table = ExpandoTableLocalServiceUtil.getDefaultTable(themeDisplay.getCompanyId(), userClassNameId );
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(table.getTableId(), "portraitId");
ExpandoValue expandoValue = ExpandoValueLocalServiceUtil.getValue(table.getTableId(), column.getColumnId(), themeDisplay.getUserId());


Regards,
Anil Sunkari
thumbnail
Tejas Patel, modificado hace 12 años.

RE: [SOLVED]Getting a custom user field value (expando)

Junior Member Mensajes: 71 Fecha de incorporación: 24/01/12 Mensajes recientes
HI Anil
Do you please explain the objects you taken that which object refers to which class and what it returns .
Because i am new in this technology so please explain in detail so i understand how they works .
I use existing code but it gives error in ExpandoColumn and ExpandoValue.
and one thing can u please explain where to use this code like in processAction class or any other class.
Thanks and Regards,
Tejas patel
Ved Mishra, modificado hace 7 años.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Mensaje: 1 Fecha de incorporación: 9/06/16 Mensajes recientes
Excellent job

it works , thanks emoticon
thumbnail
Jack Bakker, modificado hace 12 años.

RE: [SOLVED]Getting a custom user field value (expando)

Liferay Master Mensajes: 978 Fecha de incorporación: 3/01/10 Mensajes recientes
ilke Muhtaroglu:

I try to access to a custom attribute of users.
The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !
user.getExpandoBridge().getAttribute("sessionNo");
am i supposed to cast it ?
the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???


and check permissions on the custom field
thumbnail
Samir Gami, modificado hace 12 años.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Mensajes: 162 Fecha de incorporación: 4/02/11 Mensajes recientes
Hey Guys,

What about ExpandoValueLocalServiceUtil , It have same purpose.
ExpandoValueLocalServiceUtil.getValue(companyId, User.class.getName(), ExpandoTableConstants.DEFAULT_TABLE_NAME, "Custom_Field_Name", userID);


Also it don't requires the Guest user permission to retrieve/update/add the custom field value.

Hope this may helps.
Mahmoud kallel, modificado hace 10 años.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado hace 10 años.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Archi Madhu, modificado hace 10 años.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Mensajes: 237 Fecha de incorporación: 25/03/08 Mensajes recientes
Mahmoud kallel:
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks


I think following should work -

long userClassNameId = ClassNameLocalServiceUtil.getClassNameId(User.class.getName());
ExpandoTable table = ExpandoTableLocalServiceUtil.getDefaultTable(themeDisplay.getCompanyId(), userClassNameId );
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(table.getTableId(), "nationality");
ExpandoValue expandoValue = ExpandoValueLocalServiceUtil.addValue(userClassNameId ,table.getTableId(), column.getColumnId(), classPK, "indian");
Mahmoud kallel, modificado hace 10 años.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Mensajes: 7 Fecha de incorporación: 20/11/13 Mensajes recientes
thanks, but in what field i shoul put this code?