[symfony-users] Re: IE7

2007-07-27 Thread Alistair Stead
Firebug lite at www.getfirebug.org On 27/07/07, Eno <[EMAIL PROTECTED]> wrote: > > > Anybody have any experience/advice/tips on how to debug AJAX/ > Javascript problems in IE7? > > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[symfony-users] IE7

2007-07-27 Thread Eno
Anybody have any experience/advice/tips on how to debug AJAX/ Javascript problems in IE7? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@go

[symfony-users] shared validation

2007-07-27 Thread hutchic
There has got to be a way to do this! I wanted shared validation between two applications. I suspect I could call sfValidatorConfigHandler execute using a filter but I just can't get it to work. Had anyone else found a way to share one yaml file between two different applications or even share

[symfony-users] Re: How could I propose modifications at plugins

2007-07-27 Thread Marco Catunda
Ok. You are right. I've done it. But I only change the path of images because it is using absolute URL path (not relative). In my opinion, i think the sample css will not run well in some environment turnning complex configuration. It is a bit detail. But, you are right, using custom css you ca

[symfony-users] sfPropelActAsNestedSets - pulling my hair out

2007-07-27 Thread Gijs Nelissen
We're trying to implement the sfPropelActAsNestedSets plugin in a dynamic category creator. But i am still trying to figure out how it works, it seems like some of the methods result in wrong results (left/right tree values). I am using a single root level (scope_id). I tried to keep the example

[symfony-users] Re: programmatically set the timeout when user login

2007-07-27 Thread Luciano A. Andrade
The sfBasicSecurityUser has a setTimeOut that make a session timeout this is configureb by the setting timeout. Since you whant to change this timeout you could create a filter that changes this value acording the user. Not shure where this filter shuld go. Or you cold overwrite make a new user c

[symfony-users] programmatically set the timeout when user login

2007-07-27 Thread Olivier Mansour
Hello I'm am looking to set the timeout when user with a certain credential login. I need, in this case, to overide the timeout settings. I have also noticed that this settings should be lower than the session.gc_maxlifetime to be taken in account. Am I right ? many thanks Olivier -- Oli

[symfony-users] Re: How could I propose modifications at plugins

2007-07-27 Thread ksn135
You can use your own custom CSS-file per application basis. Add the following lines to your app.yml and customize it to suit your needs: sfSexyButtonPlugin: stylesheet: /path/to/your/css div_class: sexy-button-clear button_class: sexy-button On Jul 26, 4:16 pm, "Marco Catunda" <[E

[symfony-users] Re: Integer defaults to 0 in admin generator - How to change?

2007-07-27 Thread Daniel Staver
I figured it out, it's the set-method of the model class that does the following: if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } If it receives an empty value (int) $v will return 0. I added this and everything works: if ( $v == 0 ) { $v = null; } On Jul 26, 4:33 pm, Kiri