Hi there,
I have tables like :
transactiondetail (id,productid,price,qty) products (productid,productname,minimumprice)
the standard relation formula is :
$crud->set_relation('productid','products','{productname}-{minimumprice}');
but i wanna split the minimumprice into textbox in the form entry as readonly, because i wanna show to the user that the sales price cannot be lower than the minimum price.
So how can i do that ?