Looks like everything is using Ext objects. Try building a function that grabs
each set value and places it in a corresponding hidden input on your page.You
need to store this collection somehow either in DOM or in form elements.
Easiest way to see your results is by using form elements that are hidden to
the user. I'm not sure how to grab the selected values but I'm sure Ext has
something built into the API for each object.
A universal function would look something like this:
//using jquery
function save(sourcevalue, elementIdToSaveTo){
$("#"+elementIdToSaveTo).val(sourcevalue);
}
//standard js notation
function save(sourcevalue, elementIdToSaveTo){
document.getElementById(elementIdToSaveTo).value = sourcevalue;
}
You would run this for every item that you want to store.
I'm not sure if this helps. Without seeing what your client side looks like and
being able to inspect the elements, it is a little tough to figure out a viable
solution.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know
on the House of Fusion mailing lists
Archive:
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328276
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4