src/ztfy/utils/browser/templates/color_input.pt
branchZTK-1.1
changeset 202 00845ce1f3b4
parent 201 783dcf82b3dc
child 203 7cb9e4f51936
--- a/src/ztfy/utils/browser/templates/color_input.pt	Fri Mar 01 17:54:40 2013 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-<div class="colorSelector"
-	 tal:attributes="id string:${view/id}_selector">
-	<input type="hidden"
-		   tal:attributes="id view/id;
-						   name view/name;
-						   lang view/lang;
-						   value view/value;" />
-	<div></div>
-	<script type="text/javascript" tal:content="string:
-		$$(document).ready(function() {
-			$$('DIV[id=${view/id}_selector] div').css('backgroundColor', '#${view/value}');
-			$$('DIV[id=${view/id}_selector]').ColorPicker({
-				color: '#${view/value}',
-				onShow: function (colpkr) {
-					$$(colpkr).fadeIn(500);
-					return false;
-				},
-				onHide: function (colpkr) {
-					$$(colpkr).fadeOut(500);
-					return false;
-				},
-				onChange: function (hsb, hex, rgb) {
-					$$('DIV[id=${view/id}_selector] div').css('backgroundColor', '#' + hex);
-					$$('INPUT[id=${view/id}]').val(hex);
-				},
-				onSubmit: function() {
-					$$('DIV[id=${view/id}_selector]').ColorPickerHide();
-				}
-			});
-		});
-	"></script>
-</div>
\ No newline at end of file