Bivio::UI::HTML::Widget::Integer
# Copyright (c) 2009 bivio Software, Inc. All Rights Reserved.
# $Id$
package Bivio::UI::HTML::Widget::Integer;
use strict;
use Bivio::Base 'HTMLWidget.AmountCell';
sub initialize {
my($self) = @_;
$self->put_unless_exists(decimals => 0);
return shift->SUPER::initialize(@_);
}
1;