Rating
Controls Suite 4.5 |
 | Overview |
 | Features |
 | Reference Book |
 | Live Demos |
|  | Segments |
|  | Orientation |
|  | Direction |
|  | Skins |
|  | Precise Customization |
|  | Template |
|  | Setting a value |
|  | Client-side event |
|  | CallBack (AJAX) |
|  | PostBack |
|  | Application scenarios |
| |  | Rate an article |
| |  | Progress Bar |
|
The Rating control supports use of templates. By default you have two ways the control is oriented on the page: horizontal or vertical. Templates give additional flexibility in the disposition for segments.
A Template is a regular text file (HTML file) with standard elements: tables, images, controls, etc. By using templates you can place segments (images) into the separate DIVs, table cells, anywhere inside the Template. To insert a segment into the template you use a special variable. Available variables:
- $SegmentID_ABC$ - displays the segment with ID="ABC".
- $SegmentIndex_4$ - displays the segment with index=4.
- $SkinFolder$ - displays the path to SkinFolder.
- ~ (tilde) - displays the path to the home directory of web application.
This code displays two segments in DIVs with individual absolute position:
<div style="position:absolute;left:100px;top:100px;">$SegmentIndex_0$</div>
<div style="position:absolute;left:200px;top:200px;">$SegmentIndex_1$</div>
To link the control with Template, use the Template property:
<APNSoft:APNSoftRating id="myRating" runat="server"
Template = "~/Templates/Numpad.html" />
|