Displaying 3 results from an estimated 3 matches for "id_client".
Did you mean:
if_client
2008 Feb 13
2
javascript pop window from form how to update field back to main form
Hi
I have question where I run web form. Now on this form I have one
field with link select user.
This link will pop up new window with javascript and on this window I
have form with items
which end user can select. Once selection is done end user press
button Select User.
Now I need to close that javascipt window and send back value of that
selection back to form
and to the field which has
2007 Jul 10
9
Other parameters on InPlaceEditor
...l,
{
ajaxOptions: {method: ''get''},
value: ($(el).innerHTML==''Yes'') ? ''1'' : ''0'',
collection: [[0,''No''],[1,''Yes]],
parameters: ''op=pag_sca&id='' + id_pagam + ''&id_cliente=<?=$id_user?
>&id_order=<?=$_REQUEST[''id'']?>'',
onBlur: function(request) {Element.show(''indicator'')}
});
----------------------------------
Thank you
--~--~---------~--~----~------------~-------~--~----~
You received this message be...
2006 Mar 31
0
info about default value of InPlaceCollectionEditor
...t;
function setupCategoryEditor(el, url, id_pagam) {
var Element = document.getElementById(el);
var editor= new Ajax.InPlaceCollectionEditor(el, url,
{
callback: function(form, value) { return
''op=pag_sca&value=''+value+''&id=''+id_pagam+''&id_cliente=8&id_order=22'' },
onBlur: function(request) {Element.show(''indicator'')},
collection: [[0,''No''],[1,''Yes'']],
value: 0,
ajaxOptions: {method: ''get''}
});
}
</script>
-------------------------------------...