Vertical and Horizontal Line to geraldo report

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class VLine(Line):
    def __getattribute__(self, name):
        if name == 'right':
            return self.left
        return super(VLine, self).__getattribute__(name)


class HLine(Line):
    def __getattribute__(self, name):
        if name == 'bottom':
            return self.top
        return super(HLine, self).__getattribute__(name)

More like this

  1. Widget for DateTime values on Geraldo Reports by marinho 4 years, 1 month ago
  2. Widget for Money values on Geraldo Reports by marinho 4 years, 1 month ago
  3. Unit Test Profiling by justquick 4 years, 3 months ago
  4. Allow editing of the selected object of the filter_vertical/filter_horizontal widget with jquery by jpic 4 years, 7 months ago
  5. Group sequence into rows and columns for a TABLE by davidwtbuxton 2 years, 3 months ago

Comments

(Forgotten your password?)