found the solution with redirect(current.request.env.http_web2py_component_location, client_side = True), never thought that more than one check box must reload the whole page to ensure the value is store in the session, it's so different with the form field text input type, doesn't matter how much form field text input type, it can triggered the ajax callback and store and retrieve it on the session e.g. def callback_4(session_order): counter = int(current.request.vars.counter) if current.request.vars.action == 'adjust_bevel': id = int(current.request.vars.id) quantity = int(current.request.vars['quantity_%s' % counter] ) bevel = current.request.vars.bevel gosok_halus = current.request.vars.gosok_halus if bevel == 'on': bevel = '' session_order[counter] = id, quantity, bevel, gosok_halus *redirect(current.request.env.http_web2py_component_location, client_side = True)* elif bevel == '': bevel = 'on' session_order[counter] = id, quantity, bevel, gosok_halus * redirect(current.request.env.http_web2py_component_location, client_side = True)* if current.request.vars.action == 'adjust_gosok_halus': id = int(current.request.vars.id) quantity = int(current.request.vars['quantity_%s' % counter] ) bevel = current.request.vars.bevel gosok_halus = current.request.vars.gosok_halus if gosok_halus == 'on': gosok_halus = '' session_order[counter] = id, quantity, bevel, gosok_halus * redirect(current.request.env.http_web2py_component_location, client_side = True)* elif gosok_halus == '': gosok_halus = 'on' session_order[counter] = id, quantity, bevel, gosok_halus * redirect(current.request.env.http_web2py_component_location, client_side = True)*
best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

