coldfusion custom debug
my own coldBox inspired debug output
coldfusion Debug - josh style
check it out, I'll work on it occasionally
my own coldBox inspired debug output
coldfusion Debug - josh style
check it out, I'll work on it occasionally
reference for the future
Internet Explorer problems with buttons have nothing to do with margins or paddings but with overflow
css:overflow:visible
Apparently you can't have an element with an id of submit in a form and call form.submit()
It will try calling that element as a function rather than invoking the form.submit method
I have started to play around with creating a project on code.google.com and now have a project setup at
http://code.google.com/p/coldfusion-crud-generator/
this Generator will generate DAO, beans, controllers, the edit page, the grid page, along with the folder structure. Check it out to learn more, it still is a work in progress but I think its a good start to just exploring some Coldfusion fun.
mostly so Allison would remember
something along -moz-border-radius:3px 5px 3px 5px,-webkit-border-radius:3px 5px 3px 5px;border-radius:3px 5px 3px 5px, covers the more entertaining browsers
Fieldsets are used to break up forms into sections
Legends are used to title those sections
Labels give focus to the input(helps usability and 508 standards)
Input...I hope everyone knows what an input is
Span helps with other minor areas
Also maybe some list elements for breaking the data up more, I prefer it to tables
so a typical form you would have
<form name="EditUser" id="EditUser" action="controllers/cnt_blah.cfc" method="post">
<fieldset>
<legend><span>Name:</span></legend>
<ul>
<li>
<label for="FirstName" class="required"> First Name: </label>
<input name="FirstName" id="FirstName" type="text" value="ImageTrend" maxlength="100" size="20" />
</li>
<li><span class="radios">Are you human</span></li>
<li>
<label for="humanYes"><input name="human" id="humanYes" value="yes" type="radio">Yes</label>
<label for="humanNo"><input name="human" id="humanNo" value="no" type="radio">No</label>
</li>
<li>etc...</li>
</ul>
</fieldset>
<fieldset>
<legend><span>Work Address:</span></legend>
<ul>
<li>
<label for="Address"> Street Address: </label>
<INPUT type="text" name="Address" id="Address" value="" width="30" maxLength="100" size="30">
</li>
<li>etc...</li>
</ul>
</fieldset>
<div class="buttons">
<input type="submit" name="Submit" class="button submit" value="Submit">
</div>
</form>