Foros de discusión

Doubts about using model hints

Sergio Ramazzina, modificado hace 11 años.

Doubts about using model hints

New Member Mensajes: 6 Fecha de incorporación: 8/06/11 Mensajes recientes
Hi all,

I'm new to Liferay and I need some help to understand why some things seems not to work. I'm developing a series of portlets and I'm trying to use model hints to set the width of text input fields or to set the width and height of some texarea fields. I carefully read this blog http://tinyurl.com/d7rhlgk that explains how to set all these things but my portlet form fields seems not to understand these settings. Am I missing something? I've also tried to go through the source of the site portlet where the textarea fiels that contains the description of the site has width and height set the same way but I don not understand why mine seems unaware of these settings and sets the textarea size to default.

Here it is the code I put in portlet-model-hints.xml

    
                  <field name="name" type="String">
			<hint name="max-length">64</hint>
			<validator name="required" />
		</field>
		<field name="description" type="String">
			<hint name="max-length">255</hint>
			<hint name="display-height">105</hint>
			<hint name="display-width">500</hint>
		</field>


Other question anyone can explain me how does work the <validator name="required" /> tag?

Thanks a lot for the support

Sergio
thumbnail
Rewati Raman, modificado hace 11 años.

RE: Doubts about using model hints

Junior Member Mensajes: 97 Fecha de incorporación: 24/02/12 Mensajes recientes
Hi Sergio Ramazzina,
   <field name="name" type="String">
            <hint name="max-length">64</hint>
            <validator name="required" />
        </field>


i hope atleast above code is working properly because i tried and its cjhnaging the size of string

Regards,
Rewati Raman
thumbnail
Harish Kumar, modificado hace 11 años.

RE: Doubts about using model hints

Expert Mensajes: 483 Fecha de incorporación: 31/07/10 Mensajes recientes
I've replied regarding the same in this thread
thumbnail
Mazhar Alam, modificado hace 11 años.

RE: Doubts about using model hints

Regular Member Mensajes: 191 Fecha de incorporación: 25/11/11 Mensajes recientes
What exactly do you need..in which you are facing probs..?
Check you are building the service again after modifying the model-hints.
ensure that it reflects in your Sql folder..

Thanks
Sergio Ramazzina, modificado hace 11 años.

RE: Doubts about using model hints

New Member Mensajes: 6 Fecha de incorporación: 8/06/11 Mensajes recientes
Sorry if I explained my problem uncorrectly. The hint


           <hint name="max-length">64</hint>


worked properly changing the size of the varchar field as required in the generated table SQL. The hints that didn't worked were


            <hint name="display-height">105</hint>
            <hint name="display-width">500</hint>


that changed the displayed size of the input control in the generated portlet. But I found the why. I was using it with the aui taglib instead of
the liferay-ui. The thing that I don't understand is that if I look at the code of the site admin portlet for example it uses the same hints to set the size of a
textarea box but using the aui taglib. So why is it working there and not on my portlet? What am I missing?

Regards

Sergio
suneel kumar, modificado hace 8 años.

RE: Doubts about using model hints

New Member Mensajes: 15 Fecha de incorporación: 15/09/15 Mensajes recientes
how to work with custom portlet for permissions??
thumbnail
David H Nebinger, modificado hace 8 años.

RE: Doubts about using model hints

Liferay Legend Mensajes: 14916 Fecha de incorporación: 2/09/06 Mensajes recientes
What does custom portlet permissions have to do with model hints?

Have you checked dev.liferay.com where there are learning paths for resource and portlet permissions?
suneel kumar, modificado hace 8 años.

Change title bar and icon

New Member Mensajes: 15 Fecha de incorporación: 15/09/15 Mensajes recientes
Hi how to change title bar and icon using theme in liferay

i have to change the controll panel title bar .
when i click the controll panel in new tab it should dispaly "xxxx" title . how to do it
anybody help me