Welcome Guest, Not a member yet? Register   Sign In
Repopulating Form being displayed through Jquery UI tabs interface
#18

[eluser]Basketcasesoftware[/eluser]
LOL. Oh. Ok. That makes sense. I have no idea what time zone you are in. It's 2 am here. And I understand you being uncomfortable sharing your code. I'll try to see if I can get your code fragments to work, but I'm not sure what kind of data or table structure to use or anything. I may just try building from scratch but right now my own projects are getting even further behind. I'm self-employed.

Conversion is mostly moving your application out of the system folder, prefixing all your CI objects with "CI_" (like Controller becomes CI_Controller), and changing your object constructors into the PHP 5.0 format.
So
Code:
class Myclass extends Controller
{
function Myclass($args)
{
  parent::Controller();
  // Your initialization code
}
}
becomes
Code:
class Myclass extends CI_Controller
{
  function __construct($args)
{
  parent::__construct();
  // Your initialization code
}

}

That tends to be about the sum of it. The 2.0 User Guide goes into more detail. It's usually that simple.


Messages In This Thread
Repopulating Form being displayed through Jquery UI tabs interface - by El Forum - 02-18-2011, 02:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB