Farshad Mohajeri
Template Typography
Headings
All HTML headings, <h1> through <h6> are available.
h1. Heading 1
h2. Heading 2
h3. Heading 3
h4. Heading 4
h5. Heading 5
h6. Heading 6
Built with Less
The typographic scale is based on two LESS variables in variables.less: @baseFontSize and @baseLineHeight. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.
Body copy
Bootstrap's global default font-size is 14px, with a line-height of 1.7em. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their line-height (9px by default).
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.
<p>...</p>
Lead body copy
Make a paragraph stand out by adding .lead.
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
<p class="lead">...</p>
Emphasis
Make use of HTML's default emphasis tags with lightweight styles.
<em>
For emphasizing a snippet of text with stress
The following snippet of text is rendered as italicized text.
<em>rendered as italicized text</em>
<strong>
For emphasizing a snippet of text with important
The following snippet of text is rendered as bold text.
<strong>rendered as bold text</strong>
<small>
For de-emphasizing inline or blocks of text, use the small tag.
This line of text is meant to be treated as fine print.
<p> <small>This line of text is meant to be treated as fine print.</small> </p>
Note: Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.
Notice Styles
Use the <p> tag with .success, .warning, .info or .error classes.
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
<p class="success">...</p>
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
<p class="info">...</p>
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
<p class="warning">...</p>
Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
<p class="error">...</p>
Abbreviations
Stylized implementation of HTML's <abbr> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.
<abbr>
For expanded text on long hover of an abbreviation, include the title attribute.
An abbreviation of the word attribute is attr.
<abbr title="attribute">attr</abbr>
<abbr class="initialism">
Add .initialism to an abbreviation for a slightly smaller font-size.
HTML is the best thing since sliced bread.
<abbr title="attribute" class="initialism">attr</abbr>
Addresses
Stylized implementation of HTML's element to present contact information for the nearest ancestor or the entire body of work.
<address>
Preserve formatting by ending all lines with <br>.
795 Folsom Ave, Suite 600
San Francisco, CA 94107
P: (123) 456-7890 Full Name
This email address is being protected from spambots. You need JavaScript enabled to view it.
<address> <strong>Twitter, Inc.</strong><br> 795 Folsom Ave, Suite 600<br> San Francisco, CA 94107<br> <abbr title="Phone">P:</abbr> (123) 456-7890 </address> <address> <strong>Full Name</strong><br> <a href="mailto:#">first.last@gmail.com</a> </address>
Blockquotes
For quoting blocks of content from another source within your document.
Default blockqoute
Wrap <blockquote> around any HTML as the quote. For straight quotes we recommend a <p>.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
<blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> </blockquote>
Blockquote options
Style and content changes for simple variations on a standard blockquote.Naming a source
Add <small> tag for identifying the source. Wrap the name of the source work in <cite>.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
Someone famous in Source Title
<blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <small>Someone famous <cite title="Source Title">Source Title</cite></small> </blockquote>
Alternate displays
Use .pull-right for a floated, right-aligned blockquote.
<blockquote class="pull-right"> ... </blockquote>
Lists
Unordered
This will display a list of items in which the order does not explicitly matter.
- Lorem ipsum dolor sit amet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Faucibus porta lacus fringilla vel
- Eget porttitor lorem
<ul> <li>...</li> </ul>
Ordered
This will display a list of items in which the order does explicitly matter (numbered list).
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
<ol> <li>...</li> </ol>
Unstyled
This will display a list of items with no list-style or additional left padding.
- Lorem ipsum dolor sit amet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Faucibus porta lacus fringilla vel
- Eget porttitor lorem
<ul class="unstyled"> <li>...</li> </ul>
Description
A list of terms with their associated descriptions.
- Description lists
- A description list is perfect for defining terms.
- Euismod
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
- Donec id elit non mi porta gravida at eget metus.
- Malesuada porta
- Etiam porta sem malesuada magna mollis euismod.
<dl> <dt>...</dt> <dd>...</dd> </dl>
Note:
Horizontal description lists will truncate terms that are too long to fit in the left column fix text-overflow. In narrower viewports, they will change to the default stacked layout.
Horizontal description
Make terms and descriptions in <dl> line up side-by-side.
- Description lists
- A description list is perfect for defining terms.
- Euismod
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
- Donec id elit non mi porta gravida at eget metus.
- Malesuada porta
- Etiam porta sem malesuada magna mollis euismod.
- Felis euismod semper eget lacinia
- Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
<dl class="dl-horizontal"> <dt>...</dt> <dd>...</dd> </dl>
Code
Inline
Wrap inline snippets of code with <code>.
<section> should be wrapped as inline.
For example, <code><section></code> should be wrapped as inline.
Note: Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.
You may optionally add the .pre-scrollable class which will set a max-height of 350px and provide a y-axis scrollbar.
Basic block
Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.
<p>Sample text here...</p>
<pre> <p>Sample text here...</p> </pre>
Prettify
To add colored syntax highlight to the <pre> tag, then use the .prettyprint class or the .prettyprint linenums class.
<?php /** Begin Debug **/ if ($gantry->countModules('debug')) : ?>
<div id="rt-debug">
<div class="rt-container">
<?php echo $gantry->displayModules('debug','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** End Debug **/ endif; ?>
<pre class="prettyprint linenums"><?php /** Begin Debug **/ if ($gantry->countModules('debug')) : ?>
<div id="rt-debug">
<div class="rt-container">
<?php echo $gantry->displayModules('debug','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** End Debug **/ endif; ?></pre>
Tables
Default styles
For basic styling—light padding and only horizontal dividers—add the base class .table to any <table>.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry | the Bird |
<table class="table"> … </table>
Optional classes
Add any of the follow classes to the .table base class.
.table-striped
Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not available in IE7-IE8).
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry | the Bird |
<table class="table table-striped"> … </table>
.table-hover
Enable a hover state on table rows within a <tbody>.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-hover"> … </table>
.table-bordered
Add borders and rounded corners to the table.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| Mark | Otto | @TwBootstrap | |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-bordered"> … </table>
.table-condensed
Makes tables more compact by cutting cell padding in half.
| # | First Name | Last Name | Username |
|---|---|---|---|
| 1 | Mark | Otto | @mdo |
| 2 | Jacob | Thornton | @fat |
| 3 | Larry the Bird | ||
<table class="table table-condensed"> … </table>
Optional row classes
Use contextual classes to color table rows.
| Class | Description |
|---|---|
.success
|
Indicates a successful or positive action. |
.error
|
Indicates a dangerous or potentially negative action. |
.warning
|
Indicates a warning that might need attention. |
.info
|
Used as an alternative to the default styles. |
| # | Product | Payment Taken | Status |
|---|---|---|---|
| 1 | TB - Monthly | 01/04/2012 | Approved |
| 2 | TB - Monthly | 02/04/2012 | Declined |
| 3 | TB - Monthly | 03/04/2012 | Pending |
| 4 | TB - Monthly | 04/04/2012 | Call in to confirm |
...
<tr class="success">
<td>1</td>
<td>TB - Monthly</td>
<td>01/04/2012</td>
<td>Approved</td>
</tr>
...
Supported table markup
List of supported table HTML elements and how they should be used.
| Tag | Description |
|---|---|
<table>
|
Wrapping element for displaying data in a tabular format |
<thead>
|
Container element for table header rows (<tr>) to label table columns
|
<tbody>
|
Container element for table rows (<tr>) in the body of the table
|
<tr>
|
Container element for a set of table cells (<td> or <th>) that appears on a single row
|
<td>
|
Default table cell |
<th>
|
Special table cell for column (or row, depending on scope and placement) labels Must be used within a <thead>
|
<caption>
|
Description or summary of what the table holds, especially useful for screen readers |
<table>
<caption>...</caption>
<thead>
<tr>
<th>...</th>
<th>...</th>
</tr>
</thead>
<tbody>
<tr>
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>
Forms
Default styles
Individual form controls receive styling, but without any required base class on the <form> or large changes in markup. Results in stacked, left-aligned labels on top of form controls.
<form>
<legend>Legend</legend>
<label>Label name</label>
<input type="text" placeholder="Type something…">
<span class="help-block">Example block-level help text here.</span>
<label class="checkbox">
<input type="checkbox"> Check me out
</label>
<button type="submit" class="btn">Submit</button>
</form>Optional layouts
Included with Bootstrap are three optional form layouts for common use cases.
Search form
Add .form-search to the form and .search-query to the <input> for an extra-rounded text input.
<form class="form-search"> <input type="text" class="input-medium search-query"> <button type="submit" class="btn">Search</button> </form>
Inline form
Add .form-inline for left-aligned labels and inline-block controls for a compact layout.
<form class="form-inline">
<input type="text" class="input-small" placeholder="Email">
<input type="password" class="input-small" placeholder="Password">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</form>
Horizontal form
Right align labels and float them to the left to make them appear on the same line as controls. Requires the most markup changes from a default form:
- Add
.form-horizontalto the form - Wrap labels and controls in
.control-group - Add
.control-labelto the label - Wrap any associated controls in
.controlsfor proper alignment
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="inputEmail">Email</label>
<div class="controls">
<input type="text" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputPassword">Password</label>
<div class="controls">
<input type="password" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</div>
</div>
</form>
Supported form controls
Examples of standard form controls supported in an example form layout.
Inputs
Most common form control, text-based input fields. Includes support for all HTML5 types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color.
Requires the use of a specified type at all times.
<input type="text" placeholder="Text input">
Textarea
Form control which supports multiple lines of text. Change row attribute as necessary.
<textarea rows="3"></textarea>
Checkboxes and radios
Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.
Default (stacked)
<label class="checkbox"> <input type="checkbox" value=""> Option one is this and that—be sure to include why it's great </label> <label class="radio"> <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> Option one is this and that—be sure to include why it's great </label> <label class="radio"> <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> Option two can be something else and selecting it will deselect option one </label>
Inline checkboxes
Add the .inline class to a series of checkboxes or radios for controls appear on the same line.
<label class="checkbox inline"> <input type="checkbox" id="inlineCheckbox1" value="option1"> 1 </label> <label class="checkbox inline"> <input type="checkbox" id="inlineCheckbox2" value="option2"> 2 </label> <label class="checkbox inline"> <input type="checkbox" id="inlineCheckbox3" value="option3"> 3 </label>
Selects
Use the default option or specify a multiple="multiple" to show multiple options at once.
<select> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <select multiple="multiple"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select>
Extending form controls
Adding on top of existing browser controls, Bootstrap includes other useful form components.
Prepended and appended inputs
Add text or buttons before or after any text-based input. Do note thatselect elements are not supported here.Default options
Wrap an .add-on and an input with one of two classes to prepend or append text to an input.
<div class="input-prepend"> <span class="add-on">@</span><input class="span2" id="prependedInput" size="16" type="text" placeholder="Username"> </div> <div class="input-append"> <input class="span2" id="appendedInput" size="16" type="text"><span class="add-on">.00</span> </div>
Search form
<form class="form-search">
<div class="input-append">
<input type="text" class="span2 search-query">
<button type="submit" class="btn">Search</button>
</div>
<div class="input-prepend">
<button type="submit" class="btn">Search</button>
<input type="text" class="span2 search-query">
</div>
</form>
Combined
Use both classes and two instances of .add-on to prepend and append an input.
<div class="input-prepend input-append"> <span class="add-on">$</span><input class="span2" id="appendedPrependedInput" size="16" type="text"><span class="add-on">.00</span> </div>
Buttons instead of text
Instead of a <span> with text, use a .btn to attach a button (or two) to an input.
<div class="input-append"> <input class="span2" id="appendedInputButton" size="16" type="text"><button class="btn" type="button">Go!</button> </div> <div class="input-append"> <input class="span2" id="appendedInputButtons" size="16" type="text"><button class="btn" type="button">Search</button><button class="btn" type="button">Options</button> </div>
Form actions
End a form with a group of actions (buttons). When placed within a .form-horizontal, the buttons will automatically indent to line up with the form controls.
<div class="form-actions"> <button type="submit" class="btn btn-primary">Save changes</button> <button type="button" class="btn">Cancel</button> </div>
Help text
Inline and block level support for help text that appears around form controls.
Inline help
<input type="text"><span class="help-inline">Inline help text</span>
Block help
<input type="text"><span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
Control sizing
Use relative sizing classes like .input-large or match your inputs to the grid column sizes using .span* classes.
Relative sizing
<input class="input-mini" type="text" placeholder=".input-mini"> <input class="input-small" type="text" placeholder=".input-small"> <input class="input-medium" type="text" placeholder=".input-medium"> <input class="input-large" type="text" placeholder=".input-large"> <input class="input-xlarge" type="text" placeholder=".input-xlarge"> <input class="input-xxlarge" type="text" placeholder=".input-xxlarge">
Note: In future versions, we'll be altering the use of these relative input classes to match our button sizes. For example, .input-large will increase the padding and font-size of an input.
Uneditable inputs
Present data in a form that's not editable without using actual form markup.
<span class="input-xlarge uneditable-input">Some value here</span>
Form control states
Provide feedback to users or visitors with basic feedback states on form controls and labels.
Input focus
We remove the default outline styles on some form controls and apply a box-shadow in its place for :focus.
<input class="input-xlarge" id="focusedInput" type="text" value="This is focused...">
Disabled inputs
Add the disabled attribute on an input to prevent user input and trigger a slightly different look.
<input class="input-xlarge" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
Validation states
Bootstrap includes validation styles for error, warning, and success messages. To use, add the appropriate class to the surrounding .control-group.
<div class="control-group warning">
<label class="control-label" for="inputWarning">Input with warning</label>
<div class="controls">
<input type="text" id="inputWarning">
<span class="help-inline">Something may have gone wrong</span>
</div>
</div>
<div class="control-group error">
<label class="control-label" for="inputError">Input with error</label>
<div class="controls">
<input type="text" id="inputError">
<span class="help-inline">Please correct the error</span>
</div>
</div>
<div class="control-group info">
<label class="control-label" for="inputError">Input with info</label>
<div class="controls">
<input type="text" id="inputError">
<span class="help-inline">Username is taken</span>
</div>
</div>
<div class="control-group success">
<label class="control-label" for="inputSuccess">Input with success</label>
<div class="controls">
<input type="text" id="inputSuccess">
<span class="help-inline">Woohoo!</span>
</div>
</div>
Icons
Font Awesome
Font Awesome is a pictographic language of web-related actions which delivers over 300 icons. The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0 and you can find the full examples of usage at Font Awesome - http://fortawesome.github.com/Font-Awesome
Add .icon-CLASS_NAME to any element, best used with a <span>.
Web Application Icons
- icon-adjust
- icon-anchor
- icon-archive
- icon-asterisk
- icon-ban-circle
- icon-bar-chart
- icon-barcode
- icon-beaker
- icon-beer
- icon-bell
- icon-bell-alt
- icon-bolt
- icon-book
- icon-bookmark
- icon-bookmark-empty
- icon-briefcase
- icon-bug
- icon-building
- icon-bullhorn
- icon-bullseye
- icon-calendar
- icon-calendar-empty
- icon-camera
- icon-camera-retro
- icon-certificate
- icon-check
- icon-check-empty
- icon-check-minus
- icon-check-sign
- icon-circle
- icon-circle-blank
- icon-cloud
- icon-cloud-download
- icon-cloud-upload
- icon-code
- icon-code-fork
- icon-coffee
- icon-cog
- icon-cogs
- icon-collapse
- icon-collapse-alt
- icon-collapse-top
- icon-comment
- icon-comment-alt
- icon-comments
- icon-comments-alt
- icon-compass
- icon-credit-card
- icon-crop
- icon-dashboard
- icon-desktop
- icon-download
- icon-download-alt
- icon-edit
- icon-edit-sign
- icon-ellipsis-horizontal
- icon-ellipsis-vertical
- icon-envelope
- icon-envelope-alt
- icon-eraser
- icon-exchange
- icon-exclamation
- icon-exclamation-sign
- icon-expand
- icon-expand-alt
- icon-external-link
- icon-external-link-sign
- icon-eye-close
- icon-eye-open
- icon-facetime-video
- icon-female
- icon-fighter-jet
- icon-film
- icon-filter
- icon-fire
- icon-fire-extinguisher
- icon-flag
- icon-flag-alt
- icon-flag-checkered
- icon-folder-close
- icon-folder-close-alt
- icon-folder-open
- icon-folder-open-alt
- icon-food
- icon-frown
- icon-gamepad
- icon-gear
- icon-gears
- icon-gift
- icon-glass
- icon-globe
- icon-group
- icon-hdd
- icon-headphones
- icon-heart
- icon-heart-empty
- icon-home
- icon-inbox
- icon-info
- icon-info-sign
- icon-key
- icon-keyboard
- icon-laptop
- icon-leaf
- icon-legal
- icon-lemon
- icon-level-down
- icon-level-up
- icon-lightbulb
- icon-location-arrow
- icon-lock
- icon-magic
- icon-magnet
- icon-mail-forward
- icon-mail-reply-all
- icon-male
- icon-map-marker
- icon-meh
- icon-microphone
- icon-microphone-off
- icon-minus
- icon-minus-sign
- icon-minus-sign-alt
- icon-mobile-phone
- icon-money
- icon-moon
- icon-move
- icon-music
- icon-off
- icon-ok
- icon-ok-circle
- icon-ok-sign
- icon-pencil
- icon-phone
- icon-phone-sign
- icon-picture
- icon-plane
- icon-plus
- icon-plus-sign
- icon-plus-sign-alt
- icon-power-off
- icon-print
- icon-pushpin
- icon-puzzle-piece
- icon-qrcode
- icon-question
- icon-question-sign
- icon-quote-left
- icon-quote-right
- icon-random
- icon-refresh
- icon-remove
- icon-remove-circle
- icon-remove-sign
- icon-reorder
- icon-reply
- icon-reply-all
- icon-resize-horizontal
- icon-resize-vertical
- icon-retweet
- icon-road
- icon-rocket
- icon-rss
- icon-rss-sign
- icon-screenshot
- icon-search
- icon-share
- icon-share-alt
- icon-share-sign
- icon-shield
- icon-mail-reply
- icon-shopping-cart
- icon-sign-blank
- icon-signal
- icon-signin
- icon-signout
- icon-sitemap
- icon-smile
- icon-sort
- icon-sort-by-alphabet
- icon-sort-by-alphabet-alt
- icon-sort-by-attributes
- icon-sort-by-attributes-alt
- icon-sort-by-order
- icon-sort-by-order-alt
- icon-sort-down
- icon-sort-up
- icon-spinner
- icon-star
- icon-star-empty
- icon-star-half
- icon-star-half-empty
- icon-star-half-full
- icon-subscript
- icon-suitcase
- icon-sun
- icon-superscript
- icon-tablet
- icon-tag
- icon-tags
- icon-tasks
- icon-terminal
- icon-thumbs-down
- icon-thumbs-down-alt
- icon-thumbs-up
- icon-thumbs-up-alt
- icon-ticket
- icon-time
- icon-tint
- icon-trash
- icon-trophy
- icon-truck
- icon-umbrella
- icon-unchecked
- icon-unlock
- icon-unlock-alt
- icon-upload
- icon-upload-alt
- icon-user
- icon-volume-down
- icon-volume-off
- icon-volume-up
- icon-warning-sign
- icon-wrench
- icon-zoom-in
- icon-zoom-out
Currency Icons
- icon-bitcoin
- icon-btc
- icon-cny
- icon-dollar
- icon-eur
- icon-euro
- icon-gbp
- icon-inr
- icon-jpy
- icon-krw
- icon-renminbi
- icon-rupee
- icon-usd
- icon-won
- icon-yen
Text Editor Icons
- icon-align-center
- icon-align-justify
- icon-align-left
- icon-align-right
- icon-bold
- icon-columns
- icon-copy
- icon-cut
- icon-eraser
- icon-file
- icon-file-alt
- icon-file-text
- icon-file-text-alt
- icon-font
- icon-indent-left
- icon-indent-right
- icon-italic
- icon-link
- icon-list
- icon-list-alt
- icon-list-ol
- icon-list-ul
- icon-paper-clip
- icon-paperclip
- icon-paste
- icon-repeat
- icon-rotate-left
- icon-rotate-right
- icon-save
- icon-strikethrough
- icon-table
- icon-text-height
- icon-text-width
- icon-th
- icon-th-large
- icon-th-list
- icon-underline
- icon-undo
- icon-unlink
Directional Icons
- icon-angle-down
- icon-angle-left
- icon-angle-right
- icon-angle-up
- icon-arrow-down
- icon-arrow-left
- icon-arrow-right
- icon-arrow-up
- icon-caret-down
- icon-caret-left
- icon-caret-right
- icon-caret-up
- icon-chevron-down
- icon-chevron-left
- icon-chevron-right
- icon-chevron-sign-down
- icon-chevron-sign-left
- icon-chevron-sign-right
- icon-chevron-sign-up
- icon-chevron-up
- icon-circle-arrow-down
- icon-circle-arrow-left
- icon-circle-arrow-right
- icon-circle-arrow-up
- icon-double-angle-down
- icon-double-angle-left
- icon-double-angle-right
- icon-double-angle-up
- icon-hand-down
- icon-hand-left
- icon-hand-right
- icon-hand-up
- icon-long-arrow-down
- icon-long-arrow-left
- icon-long-arrow-right
- icon-long-arrow-up
Video Player Icons
- icon-backward
- icon-eject
- icon-fast-backward
- icon-fast-forward
- icon-forward
- icon-fullscreen
- icon-pause
- icon-play
- icon-play-circle
- icon-play-sign
- icon-resize-full
- icon-resize-small
- icon-step-backward
- icon-step-forward
- icon-stop
- icon-youtube-play
Brand Icons
- icon-adn
- icon-android
- icon-apple
- icon-bitbucket
- icon-bitbucket-sign
- icon-bitcoin
- icon-btc
- icon-css3
- icon-dribbble
- icon-dropbox
- icon-facebook
- icon-facebook-sign
- icon-flickr
- icon-foursquare
- icon-github
- icon-github-alt
- icon-github-sign
- icon-gittip
- icon-google-plus
- icon-google-plus-sign
- icon-html5
- icon-instagram
- icon-linkedin
- icon-linkedin-sign
- icon-linux
- icon-maxcdn
- icon-pinterest
- icon-pinterest-sign
- icon-renren
- icon-skype
- icon-stackexchange
- icon-trello
- icon-tumblr
- icon-tumblr-sign
- icon-twitter
- icon-twitter-sign
- icon-vk
- icon-weibo
- icon-windows
- icon-xing
- icon-xing-sign
- icon-youtube
- icon-youtube-play
- icon-youtube-sign
Medical Icons
- icon-ambulance
- icon-h-sign
- icon-hospital
- icon-medkit
- icon-plus-sign-alt
- icon-stethoscope
- icon-user-md
<span class="icon-CLASS_NAME"> ... </span> <span class="icon-download"> ... </span>
Module Variations
There are 8 stylistic module class suffixes which provide a unique style variation to the module: title1-4 and box1-4. There are also various additional structural suffixes, these affect the layout and metrics of the module.
Furthermore, you can also add FontAwesome icons into the Module Class Suffix. You will get a medium sized icon to the left of the title. Suffixes are in the icon-NAME format such as icon-star, as shown on the Typography page.
Template Features
Inside Epsilon Template
The next generation layout and structure compliments the beautiful and intricate design of the template in conjunction with its many features and integrated extensions
Interested? Want to try Epsilon?
DownloaduniGUI comes out of beta
It was almost seven years ago since my first blog posted in this site. Yes, uniGUI has been in beta stage for seven years. It may look like a long time. Indeed, it is a long time for a beta period. We can mention several reasons for this.
The most important reason is that uniGUI initially started as a product for both VCL and web platforms. Many of you may still remember this feature. It allowed developers to create both VCL and web applications using a single source base. However, after a while, we realized that it is too hard to keep the same level of quality and richness for VCL. The Ext JS framework was growing steadily, adding new features with each new edition, and many of those features were difficult to implement for VCL. In time, the VCL part of the framework turned into an outdated and incomplete version of the web interface. This fact was unacceptable, and we decided to drop support for VCL and continue with a web-only framework. Our decision was supported by the majority of our community, and after that, we left the VCL mode behind and accelerated web only development. This was the first major architectural change in uniGUI framework.
Another major architectural change happened because we were not happy with the component hierarchy built in the initial versions of uniGUI. It was complicated and difficult to maintain. In the new architecture, the design-time code and the run-time code are fully separated. Also, the run-time code was divided into two libraries named Core and Components. The component hierarchy was also recreated and reorganized. This architecture of uniGUI is still used today. Obviously, we were not in a rush to release version 1.00. uniGUI was developed in the form of a community project, with quality and stability as the highest priority. Of course, uniGUI could not be free because from the first day it was intended to become a commercial product. The included Ext JS library is also a commercial product which can not be deployed without an OEM license. In the year 2014, we started selling uniGUI Beta licenses. The main reason for this was that uniGUI could not continue distributing fully functional beta builds without including an OEM Ext JS license, so it became inevitable to make an OEM agreement with Sencha Inc. After that date, all uniGUI beta builds could only be obtained by purchasing a beta license from us.
According to our community our beta builds were stable enough to be used in production. Indeed many developers are using uniGUI in production for many years. Again, we decided to continue in beta mode until we are fully confident that uniGUI can be labeled as version 1.00. Fortunately we are happy to announce that uniGUI has finally came out of beta mode. Yes, eventually we have removed the phrase beta and build 1404 is our first official non-beta build. From our point of view build 1404 is just yet another build in or long chain of builds. We are aware of all imperfections and lackings. Documentation is still not complete and component reference manual must be finished. Our highest priority is documents for now and with each new build we will continue improving uniGUI documents.
By ending the beta phase, we can say that a new era started for uniGUI. There is still much to do. Among the high priority tasks, we can count porting uniGUI to Ext JS 6.5, implementing our load balancing server and adding support for the Linux operating system. We will be busy with these tasks and continue improving uniGUI. At this point, let me express my sincere gratitude to all developers who have supported us during the beta stage by buying beta licenses. uniGUI could not thrive without your support.
uniGUI Trial Edition updated to build 1393
We are happy to announce that a new build for Trial Edition of uniGUI is available. It contains many bug fixes, new features and improvements. It can be downloaded from here.
Changelog Build 1393:
1.00RC
+----------------------------------------------------------------------------------------
Example
[UNG-2005] - ChartDemo - SaveImage
[UNG-2006] - ChartDemo - DB
[UNG-2007] - FastReport - Dynamic
[UNG-2008] - Revised: FastReport - MultiReport
[UNG-2009] - Revised: FastReport
[UNG-2045] - Grid - DBTreeGrid
[UNG-2046] - ClientEvents-HtmlToAjax
[UNG-2047] - Grid - DBVerticalTreeGrid
[UNG-2049] - Grid - DBVerticalGrid
[UNG-2062] - DBLookupComboBox - GridMode
[UNG-2068] - PDFView (Mobile)
[UNG-2078] - PDFViewer - UniPDFFrame
Improvement
[UNG-1962] - Theme and Runtime should install as separate products
[UNG-1965] - UniTreeNode: GetPrev and GetPrevSibling methods.
[UNG-1969] - TUniFormattedNumberEdit: Ability to set FormattedInput parameters at runtime.
[UNG-1971] - TUniChart.Axes: Min ans Max properties
[UNG-1975] - UniMainModule: New ExtLocale property
[UNG-1976] - UniMainModule: New ServerMessages property
[UNG-1977] - UniServerModule: UnavailableErrMsg property moved to TUniServerMessages class
[UNG-1978] - UniServerModule: LoadingMessage property moved to TUniServerMessages class
[UNG-1983] - Improved error message when a blocking modal is called in OnShow/OnCreate
[UNG-1984] - TUniFileUpload: New ExecuteN procedure
[UNG-1991] - New TUniLibraryFileOption set "upoDefer" member.
[UNG-1992] - TUniTreeNode: GetNext & GetNextSibling methods
[UNG-1993] - TUniStatusBar: SimpleText property
[UNG-1998] - TUniTreeNode: New TopItem property.
[UNG-1999] - TUniTrackBar: New LineSize property.
[UNG-2000] - TUniTrackBar: New UseTips property.
[UNG-2003] - Prevent calling unsafe methods ProcessMessages & HandleMessages in DLL mode.
[UNG-2004] - Prevent calling unsafe methods AllocateHWnd & DeallocateHWnd in DLL mode.
[UNG-2012] - Support for full links in ServerModule.CustomFiles.
[UNG-2014] - Corrected member visibility for TUniCustomLayoutAttribs and TUniCustomLayoutConfig classes
[UNG-2020] - DBLookup controls: New ListFecthAll property.
[UNG-2035] - TUniTreeView: New ShowIcon property.
[UNG-2040] - UniServerModule: New PatchVCL option.
[UNG-2056] - Application Icon creation logic changed.
[UNG-2058] - New MainModule.BrowserOptions member boDisableChromeRefresh
[UNG-2065] - UniDBGrid: Allow editor in memo field.
[UNG-2071] - TUniFileUpload: New Width Property
[UNG-2072] - UniNativeImageList: Improved IDE design editor.
[UNG-2083] - All DBGrids: New EmptyText property.
[UNG-2095] - TUniControl: New JSId property.
[UNG-2096] - TUniFormControl: New FormControlJSId Property.
Task
[UNG-1954] - TUniSpeedButton should publish TabStop and TabOrder
[UNG-1955] - Fix all compile warning messages.
[UNG-2036] - TUniImageList marked as deprecated. (Use TUniNativeImageList instead)
[UNG-2039] - Kaspersky virus warning for installer
[UNG-2059] - Sessions must be freed before ServerModule.OnDestroy event.
[UNG-2063] - Delphi 10.2 Tokyo support
[UNG-2085] - OpenSSL dlls updated to version 1.0.2k
New Feature
[UNG-1963] - New Documentation installer
[UNG-1973] - New methods: ShowMessageN & ShowModalN.
[UNG-1981] - TUniFormControl: New FieldLabelFont property
[UNG-1986] - TUniChart: New AutoRefresh property
[UNG-1987] - TUniChart: New RefreshData method
[UNG-1988] - TUniChartSeries: New DataSource property
[UNG-1989] - TUniChartSeries: New YValues & XLabelsSource property
[UNG-1990] - TUniDBGridColumn: New Flex property
[UNG-1994] - TUniDBGrid: New ForceFit property
[UNG-1995] - TUniChart: New OnChartImage event
[UNG-1996] - TUniChart: New SaveImage method.
[UNG-2001] - TUniCalendarDialog: New Execute (Blocking) function and ExecuteN methods.
[UNG-2002] - UniMainModule: OnNewComponent event
[UNG-2015] - TUniDBGrid: New dgColumnMove option.
[UNG-2016] - Capability to specify worker thread stack size for ISAPI modules
[UNG-2017] - UniServerModule: ISAPIOptions.ThreadStackSize property
[UNG-2023] - UniServerModule: New soWipeShadowSessions option.
[UNG-2029] - UnimMemo, UnimDBMemo: New MaxRows property
[UNG-2042] - New Component: TUniDBTreeGrid
[UNG-2043] - New Component: TUniDBVerticalGrid
[UNG-2044] - New Component: TUniDBVerticalTreeGrid
[UNG-2052] - Functions uniGUIApplication.FmtSettings and uniGUIApplication.PFmtSettings.
[UNG-2055] - New Server Monitor statistic: Handles
[UNG-2060] - ServerModule: New OnBeforeShutdown event.
[UNG-2061] - UniDBLookupCombo: New GridMode property
[UNG-2066] - New Component: TUniPDFFrame
[UNG-2067] - New Component: TUnimPDFFrame
[UNG-2077] - New Component: TUniSyntaxEditEx based on CodeMirror 5.25
[UNG-2080] - ServerModule: New soControlNameAsId option.
[UNG-2094] - TUniStringGrid: New Objects property.
Bug
[UNG-1952] - UniThreadTimer: Changing Enabled or Interval in Timer event causes high CPU usage
[UNG-1953] - UniDBGrid: Could not convert variant of type (UnicodeString) into type (Date)
[UNG-1956] - Bug when login background image is blank.
[UNG-1957] - Incoming requests may overflow when an event handler is busy for a long time
[UNG-1958] - Unnecessary lock is performed when processing requests.
[UNG-1959] - Design time Font.Style is wrong when ParentFont is false.
[UNG-1960] - EmptyText can not be set at runtime
[UNG-1961] - UniNumberEdit: OnChangeValue is not called.
[UNG-1964] - UniTreeNode: AbsoluteIndex returns wrong value.
[UNG-1966] - CoInitialize is not called in worker thread.
[UNG-1967] - UniTabControl: Tabs.AddObject doesn't create new tab.
[UNG-1968] - UniTabControl: Tabs.Insert() doesn't insert tab at correct postion.
[UNG-1970] - Stored cookies are cleared if a new cookie is set at session startup.
[UNG-1972] - Broken MessageDlg functionality.
[UNG-1974] - Issue when a non-RTL control is inside a RTL parent.
[UNG-1979] - Issue when editor KeyUp event has a handler.
[UNG-1980] - Issue with TUniDateTimePicker and layout management when Kind = tUniDateTime
[UNG-1982] - Issue when EurekaLog is active and there are blocking modals
[UNG-1985] - Issue when ComboBox items contain trailing spaces.
[UNG-1997] - Inherited grid wrongly saves properties in DFM file.
[UNG-2010] - Tab navigation suspends when form has a UniRadioGroup
[UNG-2011] - TUniTreeView: Change event is executed in wrong order.
[UNG-2018] - Async request handling issue on ISAPI startup
[UNG-2019] - UniCharInSet(): Char is casted to AnsiChar causing unicode chars to truncate.
[UNG-2021] - TUniEdit: FormattedEdit: DecimalSeparator & DecimalPrecision can't be changed at runtime.
[UNG-2022] - In OnSessionTimeout event timeout can not be extended beyond SessionTimeout interval.
[UNG-2024] - TUniTreeView: AbsoluteIndex bug.
[UNG-2025] - RefreshCurrentRow doesn't work when DataSet.RecordCount returns 0.
[UNG-2027] - Issue with TActionList in Service/ISAPI mode.
[UNG-2028] - Issue with UnimMemo Height and Client mode alignment
[UNG-2030] - UniDBGrid: OnCellClick event is not fired if a CheckBox editor is directly clicked.
[UNG-2031] - UniDBGrid: Incorrect selection list in CellClick event.
[UNG-2032] - UniDBGrid: Null value is ignored for date field in a row editor.
[UNG-2033] - Issue when TUniDateTimePicker is created dynamically
[UNG-2034] - Component initialization order problem when components are dynamically added in OnShow event
[UNG-2037] - setFieldStyle is not a function error in mobile session
[UNG-2038] - BDS2006 Package install issue
[UNG-2041] - UniDBGrid: Column move index bug.
[UNG-2048] - TUniContainer client height issue when menu is attached.
[UNG-2050] - UniDBGrid: Issue when TField returns NAN
[UNG-2051] - Issue when Panel has docked children
[UNG-2053] - Ajax Error issue in build 1381
[UNG-2054] - TUniFrame.ClientEvents not implemented correctly.
[UNG-2057] - TUniListBox: Bug when Selected Item is deleted.
[UNG-2064] - In grid date editor fails to show after columns are reconfigured.
[UNG-2069] - UniDBGrid: Focus is lost when tabbing through grid editors.
[UNG-2070] - Workaround for Delphi x64 code generation bug
[UNG-2073] - TUniDBVerticalGrid and TUniDBVerticalTreeGrid : Fields column is not shown when record count is zero.
[UNG-2074] - TUniDBVerticalGrid and TUniDBVerticalTreeGrid : Grid doesn't start from current db row.
[UNG-2075] - Service app freezes on stop.
[UNG-2076] - In DLL mode variable ARequestInfo.CommandType returns hcUnknown.
[UNG-2079] - Locale format conversion issue in UniDBGrid
[UNG-2081] - TUniDBVerticalTreeGrid : Fields column can not be ordered according DBColumns order.
[UNG-2082] - TUniDBVerticalGrid: Grid data is loaded twice.
[UNG-2084] - UniDBGrid: Issue when RowEditor is active and row has a checkbox column.
[UNG-2086] - TUniDBVerticalTreeGrid: Fields order issue.
[UNG-2087] - TUniMenuItem does not execute ActionLink when an Action is associated.
[UNG-2088] - Issue when CheckColumn field is in a DBTreeGrid.
[UNG-2089] - SSL files can not be loaded in Windows Service project.
[UNG-2090] - UniDBGrid: Value is not shown when OnGetText returns a non-numeric value for a numeric field.
[UNG-2091] - UniDBGrid: CheckBox column issue with row select.
[UNG-2092] - UniDBGrid: Various issues with CheckBox columns.
[UNG-2093] - C++ Builder: New project with a blank form can not compile
[UNG-2097] - Various persistent classes do not implement AssignTo().
[UNG-2098] - OnChange event doesn't encode values.
[UNG-2099] - UniDBGrid: View does not scroll to focused row.
uniGUI Trial Edition updated to build 1384
We are happy to announce that a new build for Trial Edition of uniGUI is available. It contains many bug fixes, new features and improvements. It can be downloaded from here.
Changelog:
1.00RC
+----------------------------------------------------------------------------------------
Example
[UNG-2005] - ChartDemo - SaveImage
[UNG-2006] - ChartDemo - DB
[UNG-2007] - FastReport - Dynamic
[UNG-2008] - Revised: FastReport - MultiReport
[UNG-2009] - Revised: FastReport
[UNG-2045] - Grid - DBTreeGrid
[UNG-2046] - ClientEvents-HtmlToAjax
[UNG-2047] - Grid - DBVerticalTreeGrid
[UNG-2049] - Grid - DBVerticalGrid
[UNG-2062] - DBLookupComboBox - GridMode
Improvement
[UNG-1962] - Theme and Runtime should install as separate products
[UNG-1965] - UniTreeNode: GetPrev and GetPrevSibling methods.
[UNG-1969] - TUniFormattedNumberEdit: Ability to set FormattedInput parameters at runtime.
[UNG-1971] - TUniChart.Axes: Min ans Max properties
[UNG-1975] - UniMainModule: New ExtLocale property
[UNG-1976] - UniMainModule: New ServerMessages property
[UNG-1977] - UniServerModule: UnavailableErrMsg property moved to TUniServerMessages class
[UNG-1978] - UniServerModule: LoadingMessage property moved to TUniServerMessages class
[UNG-1983] - Improved error message when a blocking modal is called in OnShow/OnCreate
[UNG-1984] - TUniFileUpload: New ExecuteN procedure
[UNG-1991] - New TUniLibraryFileOption set "upoDefer" member.
[UNG-1992] - TUniTreeNode: GetNext & GetNextSibling methods
[UNG-1993] - TUniStatusBar: SimpleText property
[UNG-1998] - TUniTreeNode: New TopItem property.
[UNG-1999] - TUniTrackBar: New LineSize property.
[UNG-2000] - TUniTrackBar: New UseTips property.
[UNG-2003] - Prevent calling unsafe methods ProcessMessages & HandleMessages in DLL mode.
[UNG-2004] - Prevent calling unsafe methods AllocateHWnd & DeallocateHWnd in DLL mode.
[UNG-2012] - Support for full links in ServerModule.CustomFiles.
[UNG-2014] - Corrected member visibility for TUniCustomLayoutAttribs and TUniCustomLayoutConfig classes
[UNG-2020] - DBLookup controls: New ListFecthAll property.
[UNG-2035] - TUniTreeView: New ShowIcon property.
[UNG-2040] - UniServerModule: New PatchVCL option.
[UNG-2056] - Application Icon creation logic changed.
[UNG-2058] - New MainModule.BrowserOptions member boDisableChromeRefresh
Task
[UNG-1954] - TUniSpeedButton should publish TabStop and TabOrder
[UNG-1955] - Fix all compile warning messages.
[UNG-2036] - TUniImageList marked as deprecated. (Use TUniNativeImageList instead)
[UNG-2039] - Kaspersky virus warning for installer
[UNG-2059] - Sessions must be freed before ServerModule.OnDestroy event.
[UNG-2063] - Delphi 10.2 Tokyo support
New Feature
[UNG-1963] - New Documentation installer
[UNG-1973] - New methods: ShowMessageN & ShowModalN.
[UNG-1981] - TUniFormControl: New FieldLabelFont property
[UNG-1986] - TUniChart: New AutoRefresh property
[UNG-1987] - TUniChart: New RefreshData method
[UNG-1988] - TUniChartSeries: New DataSource property
[UNG-1989] - TUniChartSeries: New YValues & XLabelsSource property
[UNG-1990] - TUniDBGridColumn: New Flex property
[UNG-1994] - TUniDBGrid: New ForceFit property
[UNG-1995] - TUniChart: New OnChartImage event
[UNG-1996] - TUniChart: New SaveImage method.
[UNG-2001] - TUniCalendarDialog: New Execute (Blocking) function and ExecuteN methods.
[UNG-2002] - UniMainModule: OnNewComponent event
[UNG-2015] - TUniDBGrid: New dgColumnMove option.
[UNG-2016] - Capability to specify worker thread stack size for ISAPI modules
[UNG-2017] - UniServerModule: ISAPIOptions.ThreadStackSize property
[UNG-2023] - UniServerModule: New soWipeShadowSessions option.
[UNG-2029] - UnimMemo, UnimDBMemo: New MaxRows property
[UNG-2042] - New Component: TUniDBTreeGrid
[UNG-2043] - New Component: TUniDBVerticalGrid
[UNG-2044] - New Component: TUniDBVerticalTreeGrid
[UNG-2052] - Functions uniGUIApplication.FmtSettings and uniGUIApplication.PFmtSettings.
[UNG-2055] - New Server Monitor statistic: Handles
[UNG-2060] - ServerModule: New OnBeforeShutdown event.
[UNG-2061] - UniDBLookupCombo: New GridMode property
Bug
[UNG-1952] - UniThreadTimer: Changing Enabled or Interval in Timer event causes high CPU usage
[UNG-1953] - UniDBGrid: Could not convert variant of type (UnicodeString) into type (Date)
[UNG-1956] - Bug when login background image is blank.
[UNG-1957] - Incoming requests may overflow when an event handler is busy for a long time
[UNG-1958] - Unnecessary lock is performed when processing requests.
[UNG-1959] - Design time Font.Style is wrong when ParentFont is false.
[UNG-1960] - EmptyText can not be set at runtime
[UNG-1961] - UniNumberEdit: OnChangeValue is not called.
[UNG-1964] - UniTreeNode: AbsoluteIndex returns wrong value.
[UNG-1966] - CoInitialize is not called in worker thread.
[UNG-1967] - UniTabControl: Tabs.AddObject doesn't create new tab.
[UNG-1968] - UniTabControl: Tabs.Insert() doesn't insert tab at correct postion.
[UNG-1970] - Stored cookies are cleared if a new cookie is set at session startup.
[UNG-1972] - Broken MessageDlg functionality.
[UNG-1974] - Issue when a non-RTL control is inside a RTL parent.
[UNG-1979] - Issue when editor KeyUp event has a handler.
[UNG-1980] - Issue with TUniDateTimePicker and layout management when Kind = tUniDateTime
[UNG-1982] - Issue when EurekaLog is active and there are blocking modals
[UNG-1985] - Issue when ComboBox items contain trailing spaces.
[UNG-1997] - Inherited grid wrongly saves properties in DFM file.
[UNG-2010] - Tab navigation suspends when form has a UniRadioGroup
[UNG-2011] - TUniTreeView: Change event is executed in wrong order.
[UNG-2018] - Async request handling issue on ISAPI startup
[UNG-2019] - UniCharInSet(): Char is casted to AnsiChar causing unicode chars to truncate.
[UNG-2021] - TUniEdit: FormattedEdit: DecimalSeparator & DecimalPrecision can't be changed at runtime.
[UNG-2022] - In OnSessionTimeout event timeout can not be extended beyond SessionTimeout interval.
[UNG-2024] - TUniTreeView: AbsoluteIndex bug.
[UNG-2025] - RefreshCurrentRow doesn't work when DataSet.RecordCount returns 0.
[UNG-2027] - Issue with TActionList in Service/ISAPI mode.
[UNG-2028] - Issue with UnimMemo Height and Client mode alignment
[UNG-2030] - UniDBGrid: OnCellClick event is not fired if a CheckBox editor is directly clicked.
[UNG-2031] - UniDBGrid: Incorrect selection list in CellClick event.
[UNG-2032] - UniDBGrid: Null value is ignored for date field in a row editor.
[UNG-2033] - Issue when TUniDateTimePicker is created dynamically
[UNG-2034] - Component initialization order problem when components are dynamically added in OnShow event
[UNG-2037] - setFieldStyle is not a function error in mobile session
[UNG-2038] - BDS2006 Package install issue
[UNG-2041] - UniDBGrid: Column move index bug.
[UNG-2048] - TUniContainer client height issue when menu is attached.
[UNG-2050] - UniDBGrid: Issue when TField returns NAN
[UNG-2051] - Issue when Panel has docked children
[UNG-2053] - Ajax Error issue in build 1381
[UNG-2054] - TUniFrame.ClientEvents not implemented correctly.
[UNG-2057] - TUniListBox: Bug when Selected Item is deleted.
uniGUI Release Candidate is here!
We are happy to announce that uniGUI has switch from beta to RC stage. Finally, we have a Release Candidate for uniGUI!
The new RC build is available for all editions including uniGUI Trial edition.
It contains many bug fixes, new features and improvements.
Changelog:
1.00RC
+----------------------------------------------------------------------------------------
Improvement
[UNG-1962] - Theme and Runtime should install as separate products
[UNG-1965] - UniTreeNode: GetPrev and GetPrevSibling methods.
[UNG-1969] - TUniFormattedNumberEdit: Abbility to set FormattedInput parameters at runtime.
[UNG-1971] - TUniChart.Axes: Min ans Max properties
Task
[UNG-1954] - TUniSpeedButton should publish TabStop and TabOrder
[UNG-1955] - Fix all compile warning messages.
New Feature
[UNG-1963] - New Documentation installer
[UNG-1973] - New methods: ShowMessageN & ShowModalN.
Bug
[UNG-1952] - UniThreadTimer: Changing Enabled or Interval in Timer event causes high CPU usage
[UNG-1953] - UniDBGrid: Could not convert variant of type (UnicodeString) into type (Date)
[UNG-1956] - Bug when login background image is blank.
[UNG-1957] - Incoming requests may overflow when an event handler is busy for a long time
[UNG-1958] - Unnecessary lock is performed when processing requests.
[UNG-1959] - Design time Font.Style is wrong when ParentFont is false.
[UNG-1960] - EmptyText can not be set at runtime
[UNG-1961] - UniNumberEdit: OnChangeValue is not called.
[UNG-1964] - UniTreeNode: AbsoluteIndex returns wrong value.
[UNG-1966] - CoInitialize is not called in worker thread.
[UNG-1967] - UniTabControl: Tabs.AddObject doesn't create new tab.
[UNG-1968] - UniTabControl: Tabs.Insert() doesn't insert tab at correct postion.
[UNG-1970] - Stored cookies are cleared if a new cookie is set at session startup.
[UNG-1972] - Broken MessageDlg functionality.
uniGUI Trial edition upgraded to version 0.99.96 build 1346
We are happy to announce that a new build for Trial Edition of uniGUI is available. It contains many bug fixes, new features and improvements.
Changelog:
0.99.96
+----------------------------------------------------------------------------------------
Example
[UNG-1838] - BlockingModals
[UNG-1839] - SyncClientUpdate - 1
[UNG-1840] - SyncClientUpdate - 2
[UNG-1841] - SyncClientUpdate - 3
[UNG-1885] - FileUpload - Filter
[UNG-1888] - SyncClientUpdate - 4 - ShowMask
[UNG-1893] - SyncClientUpdate - 5
[UNG-1910] - DBGridImages
[UNG-1911] - DBLookupComboBox - Custom Remote Query
[UNG-1914] - DBLookupComboBox - Custom Remote Query (CDS)
[UNG-1922] - Grid - DragDrop - Custom Handler
[UNG-1926] - GridCellStyle
Improvement
[UNG-1855] - TUnimDBListGrid: Column.Alignment implemented.
[UNG-1858] - Server Monitor session should be created even if current session > MaxSessions
[UNG-1871] - Hacking Preventation: Avoid processing events from controls that are disabled or hidden.
[UNG-1881] - SendFile should disable browser cache
[UNG-1884] - TUniFileUpload: Filter property implemented
[UNG-1887] - UniSession.Synchronize() method no longer needs Timer events to operate.
[UNG-1889] - UniDBGrid: Grouping can be disabled/enabled at runtime
[UNG-1895] - Grid row selection improvement for custom uniGUI themes
[UNG-1898] - Session should create restart url based on HTTP Referer.
[UNG-1901] - New TUniChart, TUnimChart Axes property
[UNG-1912] - All Combo boxes: New RemoteQueryRetainResult property.
[UNG-1915] - Issue when a blocking modal is called during MainForm initialization
[UNG-1917] - TUnimEdit: CharCase property implemented.
Task
[UNG-1011] - Integrate SynEdit in framework with different unit names
[UNG-1843] - Indy version upgraded to 10.6.2
[UNG-1844] - OpenSSL dlls updated to version 1.0.2
[UNG-1846] - Now jQuery is included for mobile platform by default.
New Feature
[UNG-1835] - Ability to show blocking modal dialogs
[UNG-1836] - UniMainModule: New EnableSynchronousOperations property
[UNG-1837] - New functions: ShowModal, Prompt and MessageDlg
[UNG-1850] - TUniForm: OnAfterShow event
[UNG-1853] - UniFileUpload: Execute method now is a function.
[UNG-1879] - UniDBNavigator: New BeforeAction event.
[UNG-1880] - Methods NewCacheFileUrl() & NewCacheFile(): "AvoidBrowserCache" parameter added.
[UNG-1890] - TUniControl/Form/Frame new ShowMask / HideMask methods
[UNG-1897] - ServerModule.UrlReferer property
[UNG-1899] - UniSession.UrlReferer property
[UNG-1907] - New OnChangeValue event for form controls
[UNG-1908] - UnimDBGrid: ImageOptions property
[UNG-1909] - UnimDBGrid: OnFieldImage, OnFieldImageURL events
[UNG-1925] - ServerModule: New UniPackagesRoot property
[UNG-1927] - Class TUniCellAttribs: New Style property
[UNG-1930] - TUniDBRadioGroup: New Values property
Bug
[UNG-1746] - UnimDBDatePicker: null date issue (ShowBlankDate property does not work)
[UNG-1831] - Column.Alignment is not set to Field's default value
[UNG-1832] - UniContainerPanel contents are not clipped at borders.
[UNG-1833] - Session is terminated when exception occurs during form creation
[UNG-1834] - UniTimer does not stop when ChainMode is True
[UNG-1842] - TUniDateTimePicker bug when using property - FieldLabelAlign
[UNG-1845] - TUnimHTMLFrame: Scripts are not executed.
[UNG-1847] - UniPanel doesn't start as collapsed if Collapsed property is True.
[UNG-1848] - Top most nested blocking uniForm can not be closed.
[UNG-1849] - When EnableSynchronousOperations = true, UniForm with Callback can not be closed
[UNG-1851] - MSVCR120.dll dependency in the installer
[UNG-1852] - Bug in ShowModal when Form is blocking
[UNG-1854] - TUnimDBGrid: Columns width are incorrect when columns are automatically created
[UNG-1856] - Grid filter and editor fields are destroyed manually when owner is destroying
[UNG-1857] - Screen size is not sent to the server when MainForm mode is uniAlignmentClient
[UNG-1859] - Editor ClearButton doesn't work in RTL mode.
[UNG-1860] - Initial UniTrackBar position is always 0
[UNG-1861] - UniDBGrid: Summary, SummaryTotal background issue
[UNG-1862] - TUniGroupBox Align/Anchor issue
[UNG-1863] - MenuItem events are not removed when destroyed dynamically.
[UNG-1864] - Synchronization issue when multiple requests hit same session
[UNG-1865] - UniDBGrid: Grouping display error when ShowCaption and ShowValue are False
[UNG-1866] - TUniFrame: Wrong declaration of Prompt and MessageDlg functions
[UNG-1867] - Form parameters are not handled in correct order
[UNG-1868] - UniPageControl: TabBar is not set to Visible when a new Tab is added.
[UNG-1869] - JS events are not released when removed on server side
[UNG-1870] - TUniGroupBox: Client area is not positioned correctly.
[UNG-1872] - Recent issue in build 1326: Synchronization problem when multiple requests hit same session
[UNG-1873] - TUniEdit: Setting MaxLength at runtime
[UNG-1874] - Issues related to AlwaysOnTop and menus.
[UNG-1875] - Issues related to AlwaysOnTop and MessageBox.
[UNG-1876] - Issue in build 1328 related to disabled controls
[UNG-1877] - CalendarPanel and Brazilian Daylight Saving issue
[UNG-1878] - uniUrlFrame : Console error "Uncaught ReferenceError : iframe_loadUniUrl"
[UNG-1883] - TabSheet is not closable.
[UNG-1891] - DateTimePicker is always placed at bottom when parent is a FieldSet
[UNG-1892] - UniEdit.InputMask is not filtered correctly when text contains mask characters.
[UNG-1894] - In DBGrid # sign in DisplayFormat is ignored.
[UNG-1896] - Dynamically created controls are not aligned correctly if Align is set after setting Parent
[UNG-1900] - RadioGroup runtime font issue
[UNG-1902] - UniApplicatiopn.Parameters are not set correctly if url contains a ServerModule.UrlPath
[UNG-1903] - UniGUIFrame initialization order issue
[UNG-1904] - TUniChart: chart data is not inited if prepared in Form.OnShow event.
[UNG-1905] - Mobile Form Show method call order is wrong.
[UNG-1906] - Issue when a Mobile form containing TabPanel is closed.
[UNG-1913] - UniDBLookupCombo: Issue with custom queries when RemoteQuery is enabled.
[UNG-1916] - Missing ";" in CSS code of uniGUI visual themes.
[UNG-1918] - Firefox 49 and Mobile display issues
[UNG-1919] - In mobile Firefox browser phone platform is not recognized.
[UNG-1920] - Putting a UniListBox on a disabled Panel throws a JS error.
[UNG-1921] - Designer bug when deleting a UniTabSheet
[UNG-1923] - UniPanel: Collapse / Expand events should not be fired when client side alignment is active
[UNG-1924] - UniNativeImageList: Bug when used in an inherited Frame/Form
[UNG-1928] - UniDBNumberEdit error when field has a DisplayFormat.
[UNG-1929] - DBLookup controls sometimes doesn't fetch all records.
Trial edition is upgraded to version 0.99.96 build 1321
We are happy to announce that a new version for Trial Edition of uniGUI is available.
This new version contains an exciting new feature which enables modal forms and windows to be shown in a true modal state.
It means that modal forms will execute code execution until user closes the modal form. This will simplifies code migration between legacy VCL apps to uniGUI web apps.
Changelog:
0.99.96
+----------------------------------------------------------------------------------------
Example
[UNG-1838] - BlockingModals
[UNG-1839] - SyncClientUpdate - 1
[UNG-1840] - SyncClientUpdate - 2
[UNG-1841] - SyncClientUpdate - 3
Task
[UNG-1011] - Integrate SynEdit in framework with different unit names
[UNG-1843] - Indy version upgraded to 10.6.2
[UNG-1844] - OpenSSL dlls updated to version 1.0.2
[UNG-1846] - Now jQuery is included for mobile platform by default.
New Feature
[UNG-1835] - Ability to show blocking modal dialogs
[UNG-1836] - UniMainModule: New EnableSynchronousOperations property
[UNG-1837] - New functions: ShowModal, Prompt and MessageDlg
[UNG-1850] - TUniForm: OnAfterShow event
[UNG-1853] - UniFileUpload: Execute method now is a function.
Bug
[UNG-1831] - Column.Alignment is not set to Field's default value
[UNG-1832] - UniContainerPanel contents are not clipped at borders.
[UNG-1833] - Session is terminated when exception occurs during form creation
[UNG-1834] - UniTimer does not stop when ChainMode is True
[UNG-1842] - TUniDateTimePicker bug when using property - FieldLabelAlign
[UNG-1845] - TUnimHTMLFrame: Scripts are not executed.
[UNG-1847] - UniPanel doesn't start as collapsed if Collapsed property is True.
[UNG-1848] - Top most nested blocking uniForm can not be closed.
[UNG-1849] - When EnableSynchronousOperations = true, UniForm with Callback can not be closed
[UNG-1851] - MSVCR120.dll dependency in the installer
[UNG-1852] - Bug in ShowModal when Form is blocking
uniGUI Trial Edition updated to build 1308
We have updated trial edition to the most recent version. This update will fix an issue which prevented trial editions from creating new ISAPI DLL applications. This build fixes this issue, so you will be able to evaluate ISAPI DLL in uniGUI Trial Edition.
As always trial edition can be downloaded from our download page.
