Fórumok

RE: Alloy TextBoxList

Mauricio Saglietto, módosítva 13 év-val korábban

Alloy TextBoxList

New Member Bejegyzések: 3 Csatlakozás dátuma: 2010.07.05. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList (Válasz)

Junior Member Bejegyzések: 94 Csatlakozás dátuma: 2006.11.27. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

New Member Bejegyzések: 3 Csatlakozás dátuma: 2010.07.05. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Junior Member Bejegyzések: 62 Csatlakozás dátuma: 2010.01.25. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Junior Member Bejegyzések: 62 Csatlakozás dátuma: 2010.01.25. Legújabb bejegyzések
Furthermore,
A.each(values, TBL.add, TBL);
would add only labels, what about keys?
thumbnail
AKASH PATIL, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Junior Member Bejegyzések: 75 Csatlakozás dátuma: 2010.12.13. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések


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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Junior Member Bejegyzések: 75 Csatlakozás dátuma: 2010.12.13. Legújabb bejegyzések
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, módosítva 13 év-val korábban

RE: Alloy TextBoxList

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
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, módosítva 12 év-val korábban

RE: Alloy TextBoxList

New Member Bejegyzések: 18 Csatlakozás dátuma: 2012.01.07. Legújabb bejegyzések
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, módosítva 11 év-val korábban

RE: Alloy TextBoxList

New Member Bejegyzések: 20 Csatlakozás dátuma: 2012.02.14. Legújabb bejegyzések
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