Fórum

Alloy TextBoxList

Mauricio Saglietto, modificado 13 Anos atrás.

Alloy TextBoxList

New Member Postagens: 3 Data de Entrada: 05/07/10 Postagens Recentes
Hi all..
I'm working on a portlet and trying to implement a TexboxList from Alloy... i followed the example from: http://alloy.liferay.com/demos.php?demo=textbox_list ...

What want to do is a form to save the selected options...
Then I need to get the data.. what is the point of having a textfield if I can get the data that the user selected xD ... and don't see how to in the example...
And following the same reasoning .. I don't now how i have to do to have some data pre load.. for when the user want to edit the selection...

Can someone give me some directions to do this?

And one last thing .. there is any example out there to load the datasource from a servlet or something like that? ..
thumbnail
Nate Cavanaugh, modificado 13 Anos atrás.

RE: Alloy TextBoxList (Resposta)

Junior Member Postagens: 94 Data de Entrada: 27/11/06 Postagens Recentes
Hi Mauricio,
I can definitely see why that might be useful ;)

The API on that piece could use some polish, but the latest demo (we will be pushing to the website soon) has an example of how to push data into a TextBoxList, but here's something I think should work for you:

From what I can tell, you want to incorporate it as part of a form where users may select options, and those options will persist across the form submit.
The way we handle this in Liferay is to push the entries to a hidden input that are comma-separated.

So let's say you want to add new entries into your TextBoxList, I'm assuming that you've stored the entries in a comma separated list on a hidden input like so:
<input name="hiddenInput" id="hiddenInput" value="test1,test2,test3">


Then, you could create your TextBoxList like in the demo:

var TBL = new A.TextboxList(
	{
		dataSource: [
			['NM', 'New Mexico', 'Land of Enchantment'],
	        ['NY', 'New York', 'Empire State'],
	        ['NC', 'North Carolina', 'First in Freedom'],
	        ['ND', 'North Dakota', 'Peace Garden State'],
	        ['OH', 'Ohio', 'The Heart of it All'],
	        ['OK', 'Oklahoma', 'Oklahoma is OK'],
	        ['OR', 'Oregon', 'Pacific Wonderland'],
	        ['PA', 'Pennsylvania', 'Keystone State'],
	        ['RI', 'Rhode Island', 'Ocean State']
		],
		schema: {
			resultFields: ['name']
		},
		matchKey: 'name',
		typeAhead: true,
		contentBox: '#myAutoComplete',
		width: 600
	}
);

TBL.render('#demo');


Then you could prefill it with values from the hidden input like so:

var values = A.one('#hiddenInput').val().split(',');

A.each(values, TBL.add, TBL);


Basically, every TextBoxList widget as an add, insert, and remove method that will let you manipulate the entries in there.

Now the question is, how to get the values back into the hidden input?

All TextBoxLists have an underlying DataSet object that is stored as an "entries" property.

You could do it one of two ways, depending on how you're submitting your form. If you're submitting your form like normal, you can just update the hidden form on submit, like so:

A.one('#form').on('submit', function(event) {
A.one('#hiddenInput').val(TBL.entries.keys.join());
});



If you're submitting the form field via ajax, or want to update it every time an item is added or removed from the entry box, you can do this:

var updateHiddenInput = function(event){
A.one('#hiddenInput').val(TBL.entries.keys.join());
}

TBL.entries.after('add', updateHiddenInput);
TBL.entries.after('remove', updateHiddenInput);


I hope that helps, but let me know if you have any other questions emoticon
Mauricio Saglietto, modificado 13 Anos atrás.

RE: Alloy TextBoxList

New Member Postagens: 3 Data de Entrada: 05/07/10 Postagens Recentes
Thanks for your answer Nate, the way it works is little bit complicated... I will check it because im needing the key and name of each element...

Look at this http://www.emposha.com/javascript/fcbkcomplete.html ... they make a input hidden for each element.. and will submit as array..
thumbnail
Andrius Kurtinaitis, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Junior Member Postagens: 62 Data de Entrada: 25/01/10 Postagens Recentes
Hello,
TBL.entries.keys.join()
returns the names of the states. What can I do to get the keys?
Ex.: AL,AK,AZ,AR
thumbnail
Andrius Kurtinaitis, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Junior Member Postagens: 62 Data de Entrada: 25/01/10 Postagens Recentes
Furthermore,
A.each(values, TBL.add, TBL);
would add only labels, what about keys?
thumbnail
AKASH PATIL, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Junior Member Postagens: 75 Data de Entrada: 13/12/10 Postagens Recentes
hey Andrius ,

did u get the solution for below's question . .?



Hello,
1TBL.entries.keys.join()
returns the names of the states. What can I do to get the keys?
Ex.: AL,AK,AZ,AR




Please help me to find out.

Thanks in advance,
Akash Patil
Aikon Labs Pvt. Ltd. IND
thumbnail
Hitoshi Ozawa, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes


Hello,
1TBL.entries.keys.join()
returns the names of the states. What can I do to get the keys?
Ex.: AL,AK,AZ,AR



Aren't they the keys?
Which values in the following do you want to get?
['NM', 'New Mexico', 'Land of Enchantment']
thumbnail
AKASH PATIL, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Junior Member Postagens: 75 Data de Entrada: 13/12/10 Postagens Recentes
hey Hitoshi Ozawa,
Thanks for your response,

The above code returns New Mexico, New York .
But i want is NM,NY format.

Please help me to find it.

Thanks,
Akash Patil
thumbnail
Hitoshi Ozawa, modificado 13 Anos atrás.

RE: Alloy TextBoxList

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
It seems it's only possible to add one element. May be set matchKey: 'key' and retrieve the name from the key to other object.
Katarzyna B, modificado 12 Anos atrás.

RE: Alloy TextBoxList

New Member Postagens: 18 Data de Entrada: 07/01/12 Postagens Recentes
Hello,

I know this is an old entry, but maybe somebody will answer emoticon

The problem is that in case similar to the one described, the following code:
Nate Cavanaugh:
Hi Mauricio,

A.one('#form').on('submit', function(event) {
A.one('#hiddenInput').val(TBL.entries.keys.join());
});




works in Chrome, but does not in Firefox.

The behaviour is quite strange. When I modify the code above to:
A.one('#form').on('submit', function(event) {
var node = A.one('#_20_hiddenInput');
A.one('#hiddenInput').val(TBL.entries.keys.join());
alert( node.attr('value') );
});


I get alert window with proper values, but in form submitted the value of hiddenInput field is unchanged.
Any ideas how to work this out?
thumbnail
Marco Napolitano, modificado 11 Anos atrás.

RE: Alloy TextBoxList

New Member Postagens: 20 Data de Entrada: 14/02/12 Postagens Recentes
Nate Cavanaugh:
Hi Mauricio,
I can definitely see why that might be useful ;)

The API on that piece could use some polish, but the latest demo (we will be pushing to the website soon) has an example of how to push data into a TextBoxList, but here's something I think should work for you:

From what I can tell, you want to incorporate it as part of a form where users may select options, and those options will persist across the form submit.
The way we handle this in Liferay is to push the entries to a hidden input that are comma-separated.

So let's say you want to add new entries into your TextBoxList, I'm assuming that you've stored the entries in a comma separated list on a hidden input like so:
<input name="hiddenInput" id="hiddenInput" value="test1,test2,test3">

[...]


Hi Nate,
your example works great but I/we need a little more.
Your dataSource contains something like:
['NM', 'New Mexico', 'Land of Enchantment']

and the matchKey attribute is name; so the element shows New Mexico.
But on submit I need to have NM passed to the portlet and not the label New Mexico.

How can I do?

Tnx
Marco