[web2py] Grid: case insensitive sort

2022-11-03 Thread Vincent Borghi
Hello, I have a simple SQLFORM.grid that shows the rows of my simple SQLite database. In the grid, when I click on, say, the "vendorname" column header, this performs a kind of alphabetical sort, but the sort is case sensitive, so for example "AXE" comes before "Abc". How can I make the grid ac

[web2py] How to escape double curly brackets in views

2021-12-16 Thread Vincent Borghi
Hello, I have a view which contains "normal" placeholders like {{=myvariable}}. My problem is that the view must sometimes includes double curly brackets, {{ and }}, that are to be ignored by the web2py view renderer. So how to escape them? What is the mean to have both "normal" and escaped do

[web2py] Re: How to determine the distinct values of a given grid column for the current selection

2017-11-14 Thread Vincent Borghi
nt grid selection... Thanks On Tuesday, November 14, 2017 at 8:42:53 AM UTC+1, Dave S wrote: > > > > On Monday, November 13, 2017 at 9:57:25 PM UTC-8, Vincent Borghi wrote: >> >> Hello, >> >> I have a "normal' web2py grid with columns (including a colum

[web2py] How to determine the distinct values of a given grid column for the current selection

2017-11-13 Thread Vincent Borghi
Hello, I have a "normal' web2py grid with columns (including a column named "country"), thru which the users can query the db to select the lines they are interested in. Once the users have performed their selection, I need to be able to determine the distinct values of (e.g.) the "country" c

[web2py] Re: problem with ldap authentication

2017-03-20 Thread Vincent Borghi
#27713355 Vincent Borghi -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "w

[web2py] Looking for advice for implementing a form to order multiple items

2013-11-13 Thread Vincent Borghi
Hello, I'm thinking about implementing a form for ordering parts, and before starting this work I'd like to have some advice. Here is the base functionality wanted: - The form would include multiple similar lines made of 3 fields, to hold a "part_reference", a "part_description" and a "quanti

Re: [web2py] web2py wizard (alpha) is here

2010-10-21 Thread Vincent Borghi
This looks great! May I suggest a feature request: You could offer to the user a variant that would automatically create appropriate tables, field definitions and populate the tables, just by loading /analysing the contents of a .user-chosen csv file (typically generated from an excel file). This

[web2py] Troubleticketing application?

2010-10-06 Thread Vincent Borghi
Hello, Is there a web2py application available somewhere that could be used as a trouble ticketing (issue tracking) system, or could serve as a basis to build on for implementing such a system? Thanks

Re: [web2py] Re: Feature request: xlstoweb2py [was: Where do you use web2py?]

2010-03-16 Thread Vincent Borghi
x27;s not only very easy to use, but since it's VERY easy to export >> from excel, it shouldn't be much of a burden on the users. In a second >> iteration, if the license matches, you could do an import from xls >> format. >> >> On Mar 16, 8:03 am, mdipierro

[web2py] Re: Relase of the first HL7 based on web2py framework

2010-03-16 Thread Vincent Borghi
On Mon, Mar 8, 2010 at 3:52 AM, Thadeus Burgess wrote: > Says registration requires verification and I never received an email. I have found the verification email in my "Spam" mailbox of my gmail account... If the same happens to you, search for a "spam"-classified mail whose subject is "email

[web2py] Feature request: xlstoweb2py [was: Where do you use web2py?]

2010-03-16 Thread Vincent Borghi
e user, to let him manage/share his data thru the web. Regards Vincent Borghi PS: thanks to web2py developers for theit great work! -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googleg

[web2py:36674] How to simply remove duplicate data from sqlite table

2009-12-07 Thread Vincent Borghi
Hi, just simple advice needed: I have a web2py application whose data is made of an sqlite table (that I have obtained by importing in web2py an excel-generated CSV file). Now I see that in fact the original CSV data included many duplicate lines, so my sqlite table has the same duplicate lines t

[web2py:33634] Re: Looking for a simple reservation system

2009-10-24 Thread Vincent Borghi
e appropriate. A kind of time picker where the user selects the start time and the end time? Or the start time and duration? We can begin with something simple to implement, and in subsequent releases propose something more attractive with ajax feeback etc. Thanks & Regards On Oct 24, 1

[web2py:33617] Re: Looking for a simple reservation system

2009-10-24 Thread Vincent Borghi
12) To be continued. The above is just for your reflexion Keywords are suimplicity, ligntness, code customisability... Yanks and regards >> On Oct 24, 3:49 am, Vincent Borghi wrote: >> > Hello >> > >> > I am looking for a simple and light system that would

[web2py:33566] Looking for a simple reservation system

2009-10-24 Thread Vincent Borghi
Hello I am looking for a simple and light system that would allow to manage the reservation by users of various shared resources, such as rooms or misc. equipments. Simple and basic features are sufficient, just manage/check time slots to reserve, some resources and some users... The application

[web2py:22734] Re: Behavior of Enter key in an "ajaxified" input field

2009-05-27 Thread Vincent Borghi
Thanks, the workaround you suggest works! On Wed, May 27, 2009 at 2:19 PM, Horst Herb wrote: > Had the same problem, this worked for me: > >  Search for: http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---

[web2py:22724] Re: Behavior of Enter key in an "ajaxified" input field

2009-05-27 Thread Vincent Borghi
t;), without passing parameters... Other idea? > > On May 27, 4:03 am, Vincent Borghi wrote: >> Hello, >> >> In the following form (essentially taken from web2py examples), >> the "Enter" key does not work as expected, I am obliged >> to click on the

[web2py:22719] Behavior of Enter key in an "ajaxified" input field

2009-05-27 Thread Vincent Borghi
Hello, In the following form (essentially taken from web2py examples), the "Enter" key does not work as expected, I am obliged to click on the submit button. === test1/views/default/searchform.html === {{extend 'layout.html'}} Type something and press the button. === test1/controllers/def