Page 157 of 211,240, showing 20 records out of 4,224,800 total, starting on record 3,121, ending on 3,140
# | Username | Text | |
---|---|---|---|
# | Aug 7th 2008, 11:28 | loki_racer | ADmad so there is no way to have an element called from the layout to load js files into the <head>? |
# | Aug 7th 2008, 11:28 | jYeckel | hmm |
# | Aug 7th 2008, 11:28 | jYeckel | one sec |
# | Aug 7th 2008, 11:28 | ADmad | loki_racer: no |
# | Aug 7th 2008, 11:28 | ADmad | loki_racer: afaik |
# | Aug 7th 2008, 11:28 | loki_racer | painful |
# | Aug 7th 2008, 11:29 | ADmad | loki_racer: if an element if being called form layout it means its most likely being called all the times.. so just put the script in head directly... or in an if block |
# | Aug 7th 2008, 11:29 | jYeckel | you rox ADmad :D |
# | Aug 7th 2008, 11:29 | ADmad | *from layout.. damm typos |
# | Aug 7th 2008, 11:30 | ADmad | jYeckel: :) |
# | Aug 7th 2008, 11:30 | loki_racer | Admad: I'm writing a CMS and need to be able to load and unload elements(widgets) on any page in any column on the page |
# | Aug 7th 2008, 11:30 | jYeckel | thanks man i didnt think of renaming the key field |
# | Aug 7th 2008, 11:30 | jYeckel | to include the condition type |
# | Aug 7th 2008, 11:30 | loki_racer | each of those elements has its own js that I only want to load when it is loaded |
# | Aug 7th 2008, 11:30 | jYeckel | i though array('between' => array(1,2)) shoudl work |
# | Aug 7th 2008, 11:32 | ADmad | loki_racer: all i can say is you need to figure out a way to work around this limitation :) |
# | Aug 7th 2008, 11:32 | tesh | hi, I want to display a red border around a form input if validation fails - how would I do that |
# | Aug 7th 2008, 11:32 | loki_racer | haha........i could load the js from the component that is loading the data for each element, but that means our designers would need to touch components and as of right now they only open the /app/view folder |
# | Aug 7th 2008, 11:36 | teknoid | tesh: input.form-error { border: 1px solid red; } |
# | Aug 7th 2008, 11:37 | tesh | teknoid: ah, it gives the input a class already!? I've been trying to work out how to do that for myself!! thanks for that! |