Fórum

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

thumbnail
Daniel Kreiseder, modificado 14 Anos atrás.

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

New Member Postagens: 12 Data de Entrada: 08/01/09 Postagens Recentes
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 14 Anos atrás.

RE: Getting a custom user field value (expando)

Liferay Legend Postagens: 2047 Data de Entrada: 07/10/08 Postagens Recentes
Hi Daniel,

When you created the custom attribute, which type did you choose? Maybe try casting into that type.
thumbnail
Daniel Kreiseder, modificado 14 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 12 Data de Entrada: 08/01/09 Postagens Recentes
The custom field is of type string...
Mahmoud kallel, modificado 10 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado 10 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Daniel Kreiseder, modificado 14 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 12 Data de Entrada: 08/01/09 Postagens Recentes
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 14 Anos atrás.

RE: Getting a custom user field value (expando)

Regular Member Postagens: 226 Data de Entrada: 12/05/09 Postagens Recentes
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 14 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 12 Data de Entrada: 08/01/09 Postagens Recentes
Control Panel-> Users->Custom Attributes->Actions->Permissions


Set Guest Permission to read
thumbnail
vikash kumar chaurasia, modificado 14 Anos atrás.

RE: Getting a custom user field value (expando)

Junior Member Postagens: 97 Data de Entrada: 08/01/10 Postagens Recentes
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 13 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 4 Data de Entrada: 20/08/09 Postagens Recentes
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 13 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 6 Data de Entrada: 18/11/10 Postagens Recentes
I have the same problem. Have you solved it?

It can't be so difficult!
thumbnail
Piotr Filipowicz, modificado 13 Anos atrás.

RE: Getting a custom user field value (expando)

Junior Member Postagens: 52 Data de Entrada: 18/11/10 Postagens Recentes
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 13 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Mensagem: 1 Data de Entrada: 22/11/10 Postagens Recentes
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 13 Anos atrás.

RE: Getting a custom user field value (expando)

Junior Member Postagens: 45 Data de Entrada: 04/06/09 Postagens Recentes
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 12 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 4 Data de Entrada: 20/01/11 Postagens Recentes
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 12 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 19 Data de Entrada: 17/05/10 Postagens Recentes
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 12 Anos atrás.

RE: Getting a custom user field value (expando)

Junior Member Postagens: 43 Data de Entrada: 14/03/11 Postagens Recentes
thanks!!
Krishan Kumar, modificado 12 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 16 Data de Entrada: 18/01/12 Postagens Recentes
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 12 Anos atrás.

RE: Getting a custom user field value (expando)

Regular Member Postagens: 100 Data de Entrada: 21/02/12 Postagens Recentes
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 11 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 5 Data de Entrada: 09/01/12 Postagens Recentes
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 10 Anos atrás.

RE: Getting a custom user field value (expando)

Junior Member Postagens: 48 Data de Entrada: 03/02/12 Postagens Recentes
Thanks Julien, It worked for me... emoticon
Mahmoud kallel, modificado 10 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado 10 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Ehsan Rashidy, modificado 10 Anos atrás.

RE: Getting a custom user field value (expando)

New Member Postagens: 17 Data de Entrada: 24/04/13 Postagens Recentes
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 14 Anos atrás.

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

Regular Member Postagens: 226 Data de Entrada: 12/05/09 Postagens Recentes
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 12 Anos atrás.

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

Expert Postagens: 427 Data de Entrada: 12/08/09 Postagens Recentes
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 12 Anos atrás.

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

Junior Member Postagens: 71 Data de Entrada: 24/01/12 Postagens Recentes
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 7 Anos atrás.

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

New Member Mensagem: 1 Data de Entrada: 09/06/16 Postagens Recentes
Excellent job

it works , thanks emoticon
thumbnail
Jack Bakker, modificado 12 Anos atrás.

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

Liferay Master Postagens: 978 Data de Entrada: 03/01/10 Postagens Recentes
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 12 Anos atrás.

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

Regular Member Postagens: 162 Data de Entrada: 04/02/11 Postagens Recentes
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 10 Anos atrás.

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

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modificado 10 Anos atrás.

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

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Archi Madhu, modificado 10 Anos atrás.

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

Regular Member Postagens: 237 Data de Entrada: 25/03/08 Postagens Recentes
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 10 Anos atrás.

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

New Member Postagens: 7 Data de Entrada: 20/11/13 Postagens Recentes
thanks, but in what field i shoul put this code?