-
IE6: Invalid Argument Error
If you are using ExtJS and getting an “Invalid Argument” Javascript error in IE6, make sure to check your CSS for example, i get them when dynamically setting “Width” on an element. If the value is not conventionally expressed in pixels. IE will choke on it while Firefox will still accept it. Make sure then…
-
Maven WAR plugin: Copying resources to another folder
For the purpose of building an exploded war for my application I am using the maven-war-plugin. There is a common set of UI files that are used by the applications i am working so they’ve been exported to their own SVN folder and the build process copies this folder to the final WAR or exploded…
-
ExtJS: ComboBox display issues
I was trying to set up a couple of comboBoxes for a custom ExtJS triple input (Month/Day/Year) datefield and the comboxes would display but be cropped to 17px. No matter what the width i set on the control, the boxes would not display right. I tried a few things and finally realized that i had…
-
Disappearing Ext JS RadioGroup and CheckboxGroup inputs in IE6
I ran into an issue in IE6 with a bunch of my controls not showing up when the page loaded. It was specially with the RadioGroup control in ExtJS. The radio buttons would display fine in Firefox but not appear at all in IE6 even though the HTML was present. I thought it was a…
-
Using the CakePHP 1.2 Email component
I was following the documentation at http://book.cakephp.org/view/269/Sending-a-basic-message about sending an email with CakePHP using the Email component, used the sample code they provided but could not get my application to send email. A little bit of googling helped me figure out what was going on. I have CakePHP setup within my XAMPP htdocs directory and…
-
Validating a checkbox in CakePHP 1.2
I was looking for a good way to validate a checkbox for a site i was working on, and came upon this link that pointed me in the right direction: http://teknoid.wordpress.com/2008/06/10/validating-a-checkbox-in-cakephp-12/ I followed the instruction, mainly: But for some reason, it would not work for me no matter what i tried, my checkbox still failed…