can I ask why don't you want to modify application/libraties/Form_Builder.php with my small modification?
Form_builder.php
I just added
public $submit_name = "submit_button"; // submit id and name values
and changed submit button - is really an…
wohooo... after a break, an a few beers - I remembered:
in modules/fuel/config/fuel.php
$config['warn_if_modified'] = FALSE;
Now it won't bother me any more.
P.S. still some Fuel JS need to be fix for jquery 1.8.x
I guess it's because filter d…
hmm - it seems it was a javascript problem, I modified jquery file with a new one - fuel use 1.5.x latest is 1.8 - it seems there are some bugs in Fuel's javascript code.
Re-installed the whole thing - didnt touch fuel assets and not it's all ok.
How about this.
Don't change much from your Form_builder class, but allow one to add submit button with options like any other input field.
I just added 3 lines to Form_builder.php - to allow one to define also "submit" option,
here's a quick examp…
Of course you can - but isn't this simple?
$this->form_builder->submit_value = lang("btn_config");
i've made a patch - if you wish to take a look please
http://inarad.ro/opensource/Form_builder.patch
thank you for this - I just realized how dumb I was - still the documentation is a little bit fuzzy - the module configure example is explained in "simple module" chapter, I didn't even looked there since I wanted to create some "advanced modules"..…
I solve it - It was the db structure.
It seems - on delete confirmation, fuel is looking to read next field
after id or whatever your key field is defined.
If that field is NULL - you get this error - so all I had to do was to change
the field's ord…
strange - I just found out that if I make a search and I try to delete the filtered rows,
the error dissapear, can be a javascript error?
- If I clean the search bar and try to delete - the error appears again.
yes - they are also shown in left bar
<?php
$lang["chp_emails"]="Adrese si grupe";
$lang["chp_campanie"]="Campanie";
$lang["compune"]="Compune e-mail";
...
I solve it - I've seen my error - after putting the code HERE -
parent::__construct(FALSE); => must be TRUE
sorry for this - maybe someone will learn from it - I DID!
It is set on true,
config/massmail.php
...
$config['massmail_authenticate'] = TRUE;
I also removed the If command - to force check login
$this->_check_login();
$this->_validate_user("tools/massmail");
I have same err…
Hmm I solve it somehow, but it's ugly, still - no more error
I added a private global variable in class and filled it with current username value.
class Massmail extends Fuel_base_controller {
private $loggedUserName;
...
function __construct() {
…
massmail_authenticate is true,
1. I took a look at fuel's fuel_header.php it seems I need to declare
$vars["user"]=array("user_name"=>"suw");
How can I get the current logged username? isn't that automatically done by the fuel render? Did I …
after setting $config['fuel_mode'] = 'auto';
go to CMS and define a home page - location must be set as home
If your site does not have a home page - just use 301_redirect template to your default page - this can be also handy if you want a "site …
OK good point - thank you, I did that and it's ok, just that
I really don't know how to call and render the list instead form.
(the //... put your list code here... is my unknown part)
I don't understand how to render the content of list, somehow I…