Re: [web2py] Re: BUG Reset password link Spanish

2019-03-05 Thread Yann Dulondel
Thank for your help, work fine now. Yann Le mar. 5 mars 2019 à 13:03, Leonel Câmara a écrit : > Hola, > > I made a fix you can apply, basically it's just doing it the same way > web2py already did and the compat in pydal was doing differently. > > https://github.com/web2py/pydal/pull/559 > > --

[web2py] BUG Reset password link Spanish

2019-03-05 Thread Yann Dulondel
2.18.2-stable+timestamp.2019.02.26.06.11.06 (Running on Microsoft-IIS/7.5, Python 2.7.15) Hi all, I force the application to display in Spanish by using the T.force('es-es'). When i use the link to reset 'Forgot yout password' , i have the error below. Understand that Spanish can't be ascii.

[web2py] Re: Microsoft edge login failed

2019-03-04 Thread Yann Dulondel
Found it was a cookie issue on my IE Le lundi 4 mars 2019 17:45:20 UTC+1, Yann Dulondel a écrit : > > Hi all, > I have an issue with MS edge, when i try to log on , i'm redirected on > login page. > I don't have this with firefox or chrome. > Did someone have this issue ? >

[web2py] Microsoft edge login failed

2019-03-04 Thread Yann Dulondel
Hi all, I have an issue with MS edge, when i try to log on , i'm redirected on login page. I don't have this with firefox or chrome. Did someone have this issue ? Best regards Yann -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Search using search widget return not autorized

2019-01-10 Thread Yann Dulondel
Hi, I want to pass a value to a function for using it in a query I made links with this code in the calling grid links = [lambda row: A(T('View flexi list'),_href=URL(show_flexlist,args=[row.id,0],user_signature=True)),lambda row: A(T('View flexi

[web2py] Re: On validation question

2019-01-10 Thread Yann Dulondel
gt; > Anthony > > On Tuesday, January 8, 2019 at 11:19:14 AM UTC-5, Yann Dulondel wrote: >> >> Hello , >> Is there a way to diplays error message without stopping the database >> update. >> There is an algorythm for shipping line container, but for container r

[web2py] On validation question

2019-01-08 Thread Yann Dulondel
Hello , Is there a way to diplays error message without stopping the database update. There is an algorythm for shipping line container, but for container rent this doesn't apply [image: 2019-01-08_16h32_54.png] So i need to alert the user but must record the value Does something like that

[web2py] Re: SQL NOT IN issue(belong)

2019-01-03 Thread Yann Dulondel
s) > but you're trying to feed it with field-object > > > > > On Thursday, January 3, 2019 at 11:39:34 AM UTC+3, Yann Dulondel wrote: >> >> >> >> Le mercredi 2 janvier 2019 16:55:54 UTC+1, Yann Dulondel a écrit : >>> >>> Hi All >>> Happy n

[web2py] Re: SQL NOT IN issue(belong)

2019-01-03 Thread Yann Dulondel
Le mercredi 2 janvier 2019 16:55:54 UTC+1, Yann Dulondel a écrit : > > Hi All > Happy new year 2019. > > I have an issue with SQL NOT IN > I tried to get a heater pad list(dropdown) in a form. > The heater must be related to user depot and not been used. > If they are u

[web2py] SQL NOT IN issue(belong)

2019-01-02 Thread Yann Dulondel
Hi All Happy new year 2019. I have an issue with SQL NOT IN I tried to get a heater pad list(dropdown) in a form. The heater must be related to user depot and not been used. If they are used the heater id is set up in table articles

[web2py] Order with items

2018-12-18 Thread Yann Dulondel
Hi My project change from removing an item from stock to making on order. In my container, i can have items with serial number and items with no serial number (only quantity). So I have a list of order (missing new for now) [image: 2018-12-18_11h04_02.png] And a detail of the order I try to

[web2py] Re: Changing color of a cell function of another cell value

2018-11-26 Thread Yann Dulondel
field. Thank a lot all for your help. Yann Le mercredi 21 novembre 2018 10:51:16 UTC+1, Yann Dulondel a écrit : > > Hi all, > I have a container number and a function that check the number is valid. > The result of the function is store in field cntnumok (boolean). > I found tha

[web2py] Re: Changing color of a cell function of another cell value

2018-11-26 Thread Yann Dulondel
Le mercredi 21 novembre 2018 10:51:16 UTC+1, Yann Dulondel a écrit : > > Hi all, > I have a container number and a function that check the number is valid. > The result of the function is store in field cntnumok (boolean). > I found that we can change the color with "

[web2py] Re: Changing color of a cell function of another cell value

2018-11-23 Thread Yann Dulondel
Thank Javier, I tried but not working. The variable cntnumok contain the number of the container number not the state of the container number Code generate (replace the css class by the value of variable) HASU1484890 Le mercredi 21 novembre 2018 10:51:16 UTC+1, Yann Dulondel a écrit : > >

[web2py] Re: Changing color of a cell function of another cell value

2018-11-21 Thread Yann Dulondel
Le mercredi 21 novembre 2018 10:51:16 UTC+1, Yann Dulondel a écrit : > > Hi all, > I have a container number and a function that check the number is valid. > The result of the function is store in field cntnumok (boolean). > I found that we can change the color with "

[web2py] Changing color of a cell function of another cell value

2018-11-21 Thread Yann Dulondel
Hi all, I have a container number and a function that check the number is valid. The result of the function is store in field cntnumok (boolean). I found that we can change the color with "represent" and found an example in webgroup. db.articles.conteneur.represent = lambda v, row: SPAN(v,

[web2py] Re: Column order in SQLFORM

2018-11-14 Thread Yann Dulondel
tie, db.articles.conteneur,db.articles.cod_ref] thank a lot Yann Le vendredi 9 novembre 2018 16:51:44 UTC+1, Yann Dulondel a écrit : > > Hi all > I have a strange behaviors from view model. > The columns are not in the same order when reloading page.See the bulk_id > column > I beli

[web2py] Re: Column order in SQLFORM

2018-11-13 Thread Yann Dulondel
'%(name)s %(id)s')I was believing that was the way to link the display name to the id record Once again thank, the web2py is great but the document is not detail enough.But i know that it's take time to provide documentation yann Le vendredi 9 novembre 2018 16:51:44 UTC+1, Yann Dulondel a écri

[web2py] Re: Column order in SQLFORM

2018-11-12 Thread Yann Dulondel
ot_id.readable=False db.articles.user_id.writable=db.articles.user_id.readable=False Le vendredi 9 novembre 2018 16:51:44 UTC+1, Yann Dulondel a écrit : > > Hi all > I have a strange behaviors from view model. > The columns are not in the same order when reloading page.See the bulk

[web2py] Re: Column order in SQLFORM

2018-11-09 Thread Yann Dulondel
Seem to be in the header had put bulk_id instead of articles.bulk_id. But i still have two issues - First when i click on header column bulk_id the order the column change - In the list is displayed the name of the record and his id Le vendredi 9 novembre 2018 16:51:44 UTC+1, Yann

[web2py] Column order in SQLFORM

2018-11-09 Thread Yann Dulondel
Hi all I have a strange behaviors from view model. The columns are not in the same order when reloading page.See the bulk_id column I believe that i understood how columns order was setup: inverse order of creation in contoller

[web2py] Re: Form string display mask

2018-11-09 Thread Yann Dulondel
Sorry Mr Di Pierro for answering so late, i was very busy on other project. Thank for your time. Yann Le vendredi 14 septembre 2018 15:05:22 UTC+2, Yann Dulondel a écrit : > > Hello, > My user have to enter container number. > The container number is a string of lenght 11 cha

[web2py] Form string display mask

2018-09-14 Thread Yann Dulondel
Hello, My user have to enter container number. The container number is a string of lenght 11 char The data for example is FCIU5808141 that must be display as FCIU 580 814/1 In my c/s application i just have to specify a display mask as ' @@@ @@@/@' Does exists something like that. I use the

[web2py] Re: Spreadsheet.py documentation and status

2018-09-06 Thread Yann Dulondel
Hi I had a look on w2ui and look good but don't have any idea on how to use it with w2py. I'm a client-server dev. This a new world for me. If you have any clue, it would be really good Thanks Yann -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: Calling a SQLFORM.grid from SQLFORM.grid return to the index page can't figure why

2018-09-05 Thread Yann Dulondel
août 2018 16:44:57 UTC+2, Anthony a écrit : > > Is this the *exact *code? I see args=[row.id], but the query involves a > join, so I would expect row.id to throw an exception, as it should be > row.type_article.id. > > Anthony > > On Tuesday, August 21, 2018 at 9:10:39 AM UT

[web2py] Calling a SQLFORM.grid from SQLFORM.grid return to the index page can't figure why

2018-08-21 Thread Yann Dulondel
Hello, web2py world. I'm new to web2py and web development. The index page displays a list of equipment type and has a link to a list of equipment of this type. The index works fine but using the link redirect to the index page. There is no error message. When I replace the index code by the