Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

knight

About

Username
knight
Joined
Visits
92
Last Active
Roles
Member

Comments

  • oh it seem like it will auto added to the cronjob, just to confirm this is how it work ?
    in Cronjobs Comment by knight April 2011
  • thanks ... one thing i just wonder is that of doing $CI =& get_instance(); $CI->form_builder-> i can always use $this->form_builder->.... , is there any difference ? best pratice ?
  • thanks Admin. just to share how i did this, must use click, if you use .submit, the checksave will fire first. $(document).ready(function() { $('#submit').click(function(e){ $.removeChecksave(); }); });
  • noted, thanks
  • noted, i have done it by putting the js in the views , if possible can add some how to use the jqx in the user guide with some real case example , i keen to learn but can't make it work for my case ^_^
  • or am i thinking too complicated ? just dump the js function in the view will do ?
  • yup looking fine on iPhone now.
    in uri segment Comment by knight March 2011
  • on a sidenotes , when visit this forum on iphone, it seem like display a "Bonk" error page
    in uri segment Comment by knight March 2011
  • argh find out the problem , i should use _remap() in stead of index() on my controller ...
    in uri segment Comment by knight March 2011
  • ya i have a appt adv module , nope i don't have appt controller , because appt by default is access the standard module feature. i have these in my route to take care of it $user_controllers = array('standard','rating','request'); foreach($user_co…
    in uri segment Comment by knight March 2011
  • hi Cravr, i believe you need create permission for news module and assign the permission to normal user in order to access the news module. another things is you need to load the module with the permission config $config['modules']['news'] = arra…
  • ah my fault, yup save_related is working, guess i put the wrong model name, thanks for the advice of the user module. back to $config['nav'] it seem like only working if you try to overwrite existing nav, example if i try to hide some module for si…
  • http://www.getfuelcms.com/user_guide/modules/tutorial#categories_module
  • hi JavaJunky, I think you can call the form function in your "Support" module to overwrite it. function form_fields($values = array()) { $fields = parent::form_fields($values); $options = array('1'=>'Option1','2'=>'Option2'); //…
  • thanks for the first 2 info, for number 3 in that case i always need to create user first then create blogger ? or i should build a custom controller do insert data to both table at same time ? additional question - the save_related function seem …
  • thanks, understand a bit more now : )