Commit Graph

56 Commits

Author SHA1 Message Date
Xavier Morel ec18460aa3 [ADD] pagination buttons at the bottom of the list view
bzr revid: xmo@openerp.com-20111024084853-kcq2dflsk36r6pby
2011-10-24 10:48:53 +02:00
niv-openerp cdac09e3dc [fix] css problem in database screen when we use a too high resolution
bzr revid: nicolas.vanhoren@openerp.com-20111024084005-et884p0px0l08ge8
2011-10-24 10:40:05 +02:00
Fabien Meghazi 57a4d1feb9 [IMP] change cursor when loading
bzr revid: fme@openerp.com-20111018143300-jcwmbraqyzi41ho1
2011-10-18 16:33:00 +02:00
Christophe Simonis ddb9a16377 [IMP] change cursor when loading
bzr revid: chs@openerp.com-20111013091738-l1vmy572zic3wg7i
2011-10-13 11:17:38 +02:00
Fabien Meghazi ce1f472d57 [FIX] Fixed float menus toggler under firefox
bzr revid: fme@openerp.com-20111011134417-4vsfwtkq2g10b2j7
2011-10-11 15:44:17 +02:00
Fabien Meghazi 027b46bcac [FIX] Fixed buttons overlapping when shrinking firefox windows
bzr revid: fme@openerp.com-20111011133713-6eardsp1qv8subsg
2011-10-11 15:37:13 +02:00
Fabien Meghazi 4c1c848be3 [FIX] Fixed list view's progress bar floating on the next table cell under firefox
bzr revid: fme@openerp.com-20111011133201-wryn9twnf610h4fq
2011-10-11 15:32:01 +02:00
Fabien Meghazi dd4e218028 [FIX] Fix form frame float in firefox
lp bug: https://launchpad.net/bugs/865953 fixed

bzr revid: fme@openerp.com-20111011111852-6he82k62bo90ni9c
2011-10-11 13:18:52 +02:00
Fabien Meghazi ca22a8a745 [IMP] 100% width on application container
bzr revid: fme@openerp.com-20111017120045-kf77xv0tp3cp4vbh
2011-10-17 14:00:45 +02:00
niv-openerp 81d84899a1 [imp] css improvements of the statusbar
bzr revid: nicolas.vanhoren@openerp.com-20111017113859-zlt1zxy15n2c25o7
2011-10-17 13:38:59 +02:00
Fabien Meghazi 9380f9ae30 [FIX] 'Select' button for file upload not working in wizards
lp bug: https://launchpad.net/bugs/860736 fixed

bzr revid: fme@openerp.com-20111006085138-dqezqznktrimhrxm
2011-10-06 10:51:38 +02:00
Fabien Meghazi a33bd2344c [IMP] Improved styling of labels
bzr revid: fme@openerp.com-20111005083521-ofyfzdp8olzpjnbd
2011-10-05 10:35:21 +02:00
niv-openerp 58ece9f856 [fix] error message when login invalid broken
bzr revid: nicolas.vanhoren@openerp.com-20110929151322-zcymbsemo962ky0j
2011-09-29 17:13:22 +02:00
Yogesh (OpenERP) 4d5d330291 [FIX] fix problem of select button on binary field type.
bzr revid: ysa@tinyerp.com-20110929100249-s0sk3pvogwvfud43
2011-09-29 15:32:49 +05:30
Xavier Morel 47094e8adb [ADD] import
bzr revid: xmo@openerp.com-20110926101440-y5j45bgie4xnhmqf
2011-09-26 12:14:40 +02:00
Xavier Morel 51dbb70b8d [FIX] mitigate horrendous performance issues inserting options in Webkit
In some cases, at least with complex-enough views, inserting many
options in a document in a row will get progressively slower.

In import, this issue is hit on trying to import partners: partners
have a humongous number of fields (direct and on their o2m), ~940,
which yields a correspondingly huge number of options in the
selection.

A basic partner export also has quite high a number of columns (~50
without exporting o2m fields), so this list of 940 options is inserted
50 times in a row (literally too, they're all in the same table row)..

While not all that fast, Firefox 5/6 has no significant issue with
this (~18ms/insertion, where an insertion is a full select with all
its options). Webkit browsers (Chrome and Safari) on the other hand
start out fair (~10ms/insertion), but get slower and slower until they
end up at 3~5 *seconds* for each insertion (3s if inserting a
DocumentFragment, 5s if inserting text via innerHTML). This means the
preview table takes up to *two minutes* to display, even the best
cases (pre-generating everything that can be and optimizing everything
I could think of) take 75 *seconds* for the insertions (the
pregeneration of a given select and its options is ~100ms, the base
template rendering is ~20ms).

rendering divs or inputs does not have this issue, I did not manage to
reduce or fix the issue directly so I replaced the options by
jQuery-ui's autocomplete widget. This is not issues-free: when tabbing
through the fields lists, when reaching the edge of the popup the
browser will automatically scroll the field back into view. However,
this is done *after* autocomplete's popup has opened, and as a result
the popup opens in the wrong place (at the popup's edge, instead of
under the now-moved field).

bzr revid: xmo@openerp.com-20110922085812-3u1esk6czraskm01
2011-09-22 10:58:12 +02:00
niv-openerp 448e0d6968 [fix] but when will those date widgets finally work??
bzr revid: nicolas.vanhoren@openerp.com-20110921124214-i2qe0zp3schxw2o9
2011-09-21 14:42:14 +02:00
niv-openerp ca01681811 [fix] one more problem with css in date widget
bzr revid: nicolas.vanhoren@openerp.com-20110921123858-l2146cjg1qb10bwc
2011-09-21 14:38:58 +02:00
niv-openerp 2898c77f92 [fix] small regression with dates not getting the whole width in forms
bzr revid: nicolas.vanhoren@openerp.com-20110921123327-0d6aqugcs9xtokp9
2011-09-21 14:33:27 +02:00
niv-openerp 1d68e2903e [merge]
bzr revid: nicolas.vanhoren@openerp.com-20110921120434-ds3i74ey8ihc72ml
2011-09-21 14:04:34 +02:00
niv-openerp e281efe866 [imp] used datetime widget in advanced search
bzr revid: nicolas.vanhoren@openerp.com-20110921120347-rx8xhwa4igswtsx7
2011-09-21 14:03:47 +02:00
niv-openerp 7d65aca167 [imp] used datetime widget in search view
bzr revid: nicolas.vanhoren@openerp.com-20110921115054-mgd5ts19sk1olvgu
2011-09-21 13:50:54 +02:00
Fabien Meghazi 8bb26a33c5 [IMP] Thin border for float menu
bzr revid: fme@openerp.com-20110920134244-l15jq9y0c3h767a6
2011-09-20 15:42:44 +02:00
Fabien Meghazi 9a8013e1cf [ADD] Add Menu#reload() method
bzr revid: fme@openerp.com-20110920081008-9ka8p9pr1z6b0w0l
2011-09-20 10:10:08 +02:00
Fabien Meghazi 4b5f671582 [IMP] Improved menu
bzr revid: fme@openerp.com-20110919214904-5vxnkt80rx48shjo
2011-09-19 23:49:04 +02:00
Fabien Meghazi 987e009c69 [IMP] Improved menu, renamed some variables
bzr revid: fme@openerp.com-20110919192307-3r01jt630xw0bl34
2011-09-19 21:23:07 +02:00
Fabien Meghazi ba66935847 [IMP] Improved float menu
bzr revid: fme@openerp.com-20110919160742-rxm7fyajlehk3i1z
2011-09-19 18:07:42 +02:00
Fabien Meghazi 744be5db04 [ADD] Float menu (WIP)
bzr revid: fme@openerp.com-20110919155943-fdx57kbr0q9a2ywe
2011-09-19 17:59:43 +02:00
Fabien Meghazi 3efa2e0a1a [ADD] Menu folding (WIP)
bzr revid: fme@openerp.com-20110919144631-b534cjz9iw598f3j
2011-09-19 16:46:31 +02:00
Fabien Meghazi 6a281e2d3f [IMP] Use unicode font for arrows
bzr revid: fme@openerp.com-20110915210818-15hrzmv24xdimisu
2011-09-15 23:08:18 +02:00
Fabien Meghazi c0936ac657 [IMP] Get rid of jQuery accordion. Improved menu (WIP). Now all levels are working
bzr revid: fme@openerp.com-20110915202209-5rp3ltzz86msaajz
2011-09-15 22:22:09 +02:00
Kunal Chavda (OpenERP) 50567fcb63 [MERGE]Merge with trunk upto revision no 1043.
bzr revid: kch@tinyerp.com-20110915070222-1sw9bpp36s42nvt2
2011-09-15 12:32:22 +05:30
Kunal Chavda (OpenERP) 4eb0672324 [FIX]Fixed code for select same column or imported file has same column its shows message and field will red coloration.
bzr revid: kch@tinyerp.com-20110915064753-mij2danikyv9iouh
2011-09-15 12:17:53 +05:30
Fabien Meghazi 87b23c05d2 [REVERT] Revert revid:fme@openerp.com-20110907074810-17ssgepzpc11u7bd causing problems in search view
bzr revid: fme@openerp.com-20110914160040-1bvgewarlh5x3tsq
2011-09-14 18:00:40 +02:00
Fabien Meghazi b17ae5506b [IMP] Form: date and datetime widgets are correctly formatted/parsed
bzr revid: fme@openerp.com-20110914154610-hlha0bp28197xg1m
2011-09-14 17:46:10 +02:00
Xavier Morel c14d2b82cc [IMP] look of ViewManagerAction header
bzr revid: xmo@openerp.com-20110914125814-r068qnuruiw2j5nf
2011-09-14 14:58:14 +02:00
Xavier Morel 74d0339fb0 [ADD] base res_log display
bzr revid: xmo@openerp.com-20110914121305-mcey8e3t36omkr2k
2011-09-14 14:13:05 +02:00
Xavier Morel e70ebcab8d [ADD] ability to hide menu help, only this or all help sections
bzr revid: xmo@openerp.com-20110914100833-fo4arcaa92zu1361
2011-09-14 12:08:33 +02:00
Xavier Morel 45d13bbe1d [ADD] menu tips on ViewManagerAction
bzr revid: xmo@openerp.com-20110914093409-1hc5skp9mn17ieir
2011-09-14 11:34:09 +02:00
Xavier Morel 7a31d4258b [FIX] application content moving around the content area if the secondary menu is closed
lp bug: https://launchpad.net/bugs/842793 fixed

bzr revid: xmo@openerp.com-20110913073730-caukax89lhgwqpch
2011-09-13 09:37:30 +02:00
Kunal Chavda (OpenERP) df1edc236b [MERGE]Merge with trunk upto revision no 1011.
bzr revid: kch@tinyerp.com-20110913054406-yrjafv0qdzzijizz
2011-09-13 11:14:06 +05:30
niv-openerp 2ac1bee146 [fix] padding correction for statusbar
bzr revid: nicolas.vanhoren@openerp.com-20110909121312-p5smu8m7rrk5wlge
2011-09-09 14:13:12 +02:00
niv-openerp ec24f26ca6 [imp] improved css of status widget
bzr revid: nicolas.vanhoren@openerp.com-20110908160451-gh5josp0nmn3vn7u
2011-09-08 18:04:51 +02:00
niv-openerp 779dd82c5a [imp] improved selection color in status widget
bzr revid: nicolas.vanhoren@openerp.com-20110908152815-kbrt8ibfnb4br7kb
2011-09-08 17:28:15 +02:00
niv-openerp 40d3b9cb49 [imp] added selected indication in status widget
bzr revid: nicolas.vanhoren@openerp.com-20110908152337-6xsfyicntnm6t7mx
2011-09-08 17:23:37 +02:00
niv-openerp fcb62110f9 [imp] improved css for status widget
bzr revid: nicolas.vanhoren@openerp.com-20110908151834-h44bb5tjs8cjb33i
2011-09-08 17:18:34 +02:00
niv-openerp 9cf066a790 [imp] put first example of status field with css
bzr revid: nicolas.vanhoren@openerp.com-20110908151153-7jiqei1abo90q6sx
2011-09-08 17:11:53 +02:00
Kunal Chavda (OpenERP) a8467f7b3c [MERGE]Merge with trunk upto revision no 970.
bzr revid: kch@tinyerp.com-20110908103919-0elkj4hdhhgpvx6o
2011-09-08 16:09:19 +05:30
Fabien Meghazi 0fc1b42aef [IMP] Improved css.
bzr revid: fme@openerp.com-20110907074810-17ssgepzpc11u7bd
2011-09-07 09:48:10 +02:00
Kunal Chavda (OpenERP) a9446c53f9 [MERGE]Merge with trunk upto revision no 931.
bzr revid: kch@tinyerp.com-20110906125440-turixz49exf0po30
2011-09-06 18:24:40 +05:30