Maiku Mori
|
Registered User
|
|
2d |
comment |
When NOT to use AJAX in web application development? You can actually use docs.jquery.com/Events/… . Javascript code in onClick is harder to manage. |
|
2d |
revised |
PHP CASE statement not working with ZERO values. added 161 characters in body; added 8 characters in body |
|
2d |
answered | PHP CASE statement not working with ZERO values. |
|
Nov 24 |
comment |
Firefox not respecting line-height Your comment inspired me to write this small user script for Chrome which turns accept question images into smaller greyed out peaces of cake and accepted answer image into this tinyurl.com/ycf3m43 Many cakes++ for you =) |
|
Nov 24 |
accepted | call a php controller with ajax (how to disable layout) |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) It could be because you use exit(0); |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) It should be something along the lines of what I wrote into that pastebin. |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) Here, try this: pastebin.com/f66481a6e |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) Actually I'm wrong, you will have to "hack" baseController to allow you to disable layout. |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) I dug into WEB2BB framework (the documentation is horrible =( ). It seems that all you need to do is get FrontController instance in your action and then $fc->setBody($JSONString); where JSON string is your JSON data. |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) Maybe tell us which php framework you're using. Some of them have their own custom functions to send out headers. But it's seems that the headers is just a minor problem for you. As far as I can understand you're not getting the right content either (you get full page instead of JSON). That means that you have error in the detection or you're sending out layout + JSON. There is a way to disable layouts for some actions, maybe that's what you're looking for. For example if you're using Zend PHP Framework then the function to disable layout is: $this->_helper->layout->disableLayout(); |
|
Nov 24 |
revised |
call a php controller with ajax (how to disable layout) added 264 characters in body |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) Well the headers should be different, maybe your AJAX detection isn't working. I'm going to add a screenshot of valid Ajax request + Response. |
|
Nov 24 |
revised |
call a php controller with ajax (how to disable layout) added 355 characters in body |
|
Nov 24 |
revised |
call a php controller with ajax (how to disable layout) added 404 characters in body; deleted 5 characters in body |
|
Nov 24 |
answered | call a php controller with ajax (how to disable layout) |
|
Nov 24 |
comment |
call a php controller with ajax (how to disable layout) Add some code where you make the request. It's not clear which part you do not understand and need help with. |
|
Nov 15 |
revised |
How Can I Make This Python Code More Usable And Readable? deleted 1 characters in body |
|
Nov 15 |
revised |
How Can I Make This Python Code More Usable And Readable? edited body; added 44 characters in body; added 22 characters in body |
|
Nov 15 |
comment |
How Can I Make This Python Code More Usable And Readable? Oh yeah, you could also write it using recursion (probably more pythonic). |
|
Nov 15 |
comment |
How Can I Make This Python Code More Usable And Readable? I've updated with some code, sorry for delay something came up. |
|
Nov 15 |
revised |
How Can I Make This Python Code More Usable And Readable? added 2005 characters in body; deleted 1 characters in body; edited body |
|
Nov 15 |
answered | How Can I Make This Python Code More Usable And Readable? |
|
Nov 14 |
revised |
Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript? added 2 characters in body |
|
Nov 13 |
revised |
Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework? edited tags |
|
Nov 13 |
comment |
Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework? The funny thing is that it isn't fully optimized. There are even places with for (i = 0; i < some_array.length;i++). Maybe not that important, but I did expect that Google would optimize everything down to very last bit, especially since they have used it internally for years. But the whole package overall looks quite nice, especially the way it's structured. |
|
Nov 10 |
accepted | google closure compile jQuery Plugin |
|
Nov 10 |
revised |
Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript? added 271 characters in body |
|
Nov 10 |
answered | Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript? |
|
Nov 10 |
answered | google closure compile jQuery Plugin |
|
Nov 10 |
answered | Google closure compiler error “Variable COMPILED first declared in {SyntheticVarsDeclar}” |
|
Nov 10 |
comment |
Google closure compiler error “Variable COMPILED first declared in {SyntheticVarsDeclar}” Could you provide the 2 lines where COMPILED is used/declard? |
|
Nov 9 |
revised |
JavaScript: How to select “Cancel” by default in confirm box? added 3 characters in body |
|
Nov 9 |
answered | JavaScript: How to select “Cancel” by default in confirm box? |
|
Nov 8 |
answered | Keep database information secure |
|
Nov 8 |
revised |
Google’s Closure library comparing to Yahoo’s YUI edited tags |
|
Nov 8 |
revised |
What are the best features of the Google Closure Library Tag google-closure could mean either the library, the compiler or template system therefore I suggest splitting it up. |
|
Nov 4 |
comment |
Google Chrome breaks network connection when JavaScript errors bdonlan, yes. Still haven't finished my morning coffee =( |
|
Nov 4 |
comment |
Google Chrome breaks network connection when JavaScript errors An application could damage network driver on purpose and it would still remain damaged after the application is closed, but it's clearly not the case here. |
|
Nov 4 |
answered | Google Chrome breaks network connection when JavaScript errors |
|
Oct 25 |
answered | [HTML/CSS]: Is there anyway to hide a column in a Table. |
|
Oct 24 |
comment |
regular expression in python In the given sting there's a dot at the end. So it should be score = s.split(':')[1].strip()[:-1] |
|
Oct 19 |
comment |
Why are JS scripts usually place in the header of a document? I'll make a test soon. |
|
Oct 19 |
comment |
Why are JS scripts usually place in the header of a document? Yeah, but the browser should query the script file only after he has done with most of the images because it's last in the queue, shouldn't it? If that's so then DOM has been build ages ago and browser already has most of the images at the time when the script is being parsed and executed. |
|
Oct 19 |
comment |
Why are JS scripts usually place in the header of a document? I know, read my full answer again. The thing is that in theory it should act the same as onLoad if it's used in a script file which is included at the end of page. Since bowser should load DOM and all images first before even requesting the script from web-server. And my question is if this assumption is actually correct. |
|
Oct 19 |
revised |
Why are JS scripts usually place in the header of a document? added 412 characters in body; added 45 characters in body |
|
Oct 19 |
comment |
Why are JS scripts usually place in the header of a document? I believe the answer you selected isn't fully correct and definitely not the best one. |
|
Oct 19 |
comment |
Why are JS scripts usually place in the header of a document? It's not just a convention, there's a difference. |
|
Oct 19 |
revised |
Why are JS scripts usually place in the header of a document? added 171 characters in body; added 1 characters in body; added 3 characters in body |
|
Oct 19 |
revised |
Why are JS scripts usually place in the header of a document? added 461 characters in body |
