CodeIgniter Forums
CodeExtinguisher 2.0 Public Beta (RC10) - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: CodeExtinguisher 2.0 Public Beta (RC10) (/showthread.php?tid=6065)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]timj[/eluser]
/* I am enjoying tinkering with this. How do you integrate the rest of CI functionality into a controller? I am trying to put in a profiler but can't get it to work. Is there a special syntax?

$this->output->enable_profiler(TRUE); */

Never mind. Got it working.


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]Majd Taby[/eluser]
CE controllers are just CI controllers, so adding $this->output->enable_profiler(TRUE); at the end of your controllers works fine (I just tried it)


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]PedroGrilo[/eluser]
Hey, jTaby the new preview looks great!


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]abmcr[/eluser]
The new layout (i have see the demo) is very beautiful and the new features are great! Thank you


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]Majd Taby[/eluser]
thanks guys, glad you're enjoying it.


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-28-2008

[eluser]timj[/eluser]
Great advancements. I see you have revised the dbdropdown plugin to include a 'key' param. Very handy, but I don't see that it has been released yet. Is it possible to get this new release? I realize it is still beta, but so is the app I'm tinkering with in Codex.


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-29-2008

[eluser]Sean Downey[/eluser]
Hi jTaby

The <button> issue seems to remain for IE - do you have plans to resolve that?


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-29-2008

[eluser]Majd Taby[/eluser]
Yes, It'll be fixed by the time of the release.


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 02-29-2008

[eluser]timj[/eluser]
I'm appreciative of your work. Would you mind releasing your sandbox controller and view files? You're doing unusual things there that are different from your download release that I would like to get my head around. Many thanks!


CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-01-2008

[eluser]Majd Taby[/eluser]
Hey guys, just wanted to let you know that I updated the live preview. On face-value, the only change is the FieldSet in 'Example'. But I did work on the core libraries to add support for nested forms. The best way to show you what I mean is with an example:

Here's the YAML that makes the FieldSet plugin work its magic:
Code:
general_information:
    class: FieldSet
    params:
        form:
            textbox_test:
                class: TextBox
            checkbox_test:
                class: CheckBox
                params:
                    display_name: Hello there
            date_test:
                class: Date
            password_test:
                class: Password
            radiogroup_test:
                class: RadioGroup
                params:
                    list:
                        1: One
                        2: Two
                        3: Three
            sessiondata_test:
                class: SessionData
                params:
                    item: user_name
            textarea_test:
                class: TextArea
                attributes:
                    rows:5
                    cols:50
            time_test:
                class: Time
                params:
                    -on_update

I will soon release the live preview as RC8...

p.s. my Parallels installation went bust, so if you guys could test it in IE for me, I'd be appreciative Smile