-- HikaShop version -- : 4.2.1
-- Joomla version -- : 3.3.3
Were wanting to keep the order details page up to date when open in a browser.
So if you have an open order on your page, and someone else modifies the order (any of the field sets, Ie show_general, show_details, show_billing, show_additional etc) that we can reload that fieldset only.
We know that this URL :
'/administrator/index.php?option=com_hikashop&ctrl=order&task=show&subtask='FIELDSET'&cid=<? echo $this->order->order_id ;?>&tmpl=component',
will give the HTML of that entire fieldset, but how can we know if the values/object that generate that field only have changed so we can reload just that fieldset.
We already have in place the ability to reload the fieldset, but need to be able to determine if any of those values in that fieldset have changed.
Any suggestions?