Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2018-05-21 Thread thomaskappeler731
Hi Tim,

thank you for answering. I found out that if you use 
for key, value in request.post_vars.items():
instead of
for key, value in request.post_vars.iteritems():
and of course correct the typo (missing ' in Field('is_happy','boolean))
you can still make that code work.
So I'm still very grateful for that code.

Thanks,
Thomas

Am Montag, 21. Mai 2018 02:37:16 UTC+2 schrieb Tim Richardson:
>
> That approach was close to a hack. I don't know why it's not working and I 
> don't use this code any longer. I think, unfortunately perhaps, a rich 
> client approach has won the debate, so you'll probably need to find a 
> JavaScript approach, but web2py power users may have other advice. 
>
>
> On Mon, 21 May 2018, 05:40 , > wrote:
>
>> Hi Tim,
>>
>> I tried your example from the link to the slice below, but I received the 
>> error 'NoneType' object is not callable:
>>
>> 1.
>> 2.
>> 3.
>> 4.
>> 5.
>> 6.
>> 7.
>> 8.
>> 9.
>> 10.
>>
>> Traceback (most recent call last):
>>   File 
>> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/restricted.py",
>>  line 219, in restricted
>> exec(ccode, environment)
>>   File 
>> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
>>  
>> ,
>>  line 104, in 
>>   File 
>> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/globals.py",
>>  line 419, in 
>> self._caller = lambda f: f()
>>   File 
>> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
>>  
>> ,
>>  line 77, in editable_grid
>> for key, value in request.vars.iteritems():
>> TypeError: 'NoneType' object is not callable
>>
>> Version info: web2py™
>>
>> Version 2.16.1
>>
>> Python: Python 3.6.4
>>
>> Do you have any explanation for this? Has there been a change in web2py 
>> that makes this obsolete?
>>
>> Thanks,
>> Thomas
>>
>>
>> Am Freitag, 13. Februar 2015 20:36:32 UTC+1 schrieb Tim Richardson:
>>>
>>> there is this approach as well, which makes the existing SQLGRID.grid 
>>> widget editable.
>>>
>>>
>>> http://www.web2pyslices.com/slice/show/1928/basic-inline-editing-in-sqlformgrid-no-plugin-no-javascript
>>>
>>>
>>>
>>> On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:

 Hello,

 Thanks all for the support and suggestions. 
 I was able to get the slice using Jqgrid working (
 http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
  
 But I will take a look at the Massimo and Michael suggestions.

 Thanks again,

 Clara


 On Feb 11, 2015 1:25 PM, "Massimo Di Pierro"  
 wrote:

> I have used both and I think handsontable is much superior and 
> customizable.
>
> On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>>
>> I've started using http://www.datatables.net/ primarily for the 
>> great search and responsive behavior.  I've read about the inline 
>> support 
>> but haven't tried it yet but it looks very good.
>>
>> The other option that looks very good is http://handsontable.com/ 
>> but I've only read through the documentation.
>>
>> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>>>
>>> Hello,
>>>
>>> I know this has been asked before, there are Web2py Slices (some of 
>>> which seem to be outdated), questions posted here on the subject but 
>>> somehow it is not clear to me which path I should take to implement a 
>>> grid 
>>> with inline editable fields, appendable/deletable records. I am looking 
>>> to 
>>> some "compact" solution which I am not sure it exist that would have 
>>> the 
>>> functionality of current *SQLFORM.smartgrid*  but in addition to 
>>> it: inline editable fields and deletable/appendable records.
>>>
>>> I will greatly appreciate any input on this. 
>>>
>>> Best regards,
>>>
>>> Clara
>>>
>>>
>>>
>>>
>>>
>>>  
>>>
>> -- 
> 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 a topic in the 
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> web2py+un...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
 -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/bo

Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2018-05-20 Thread Tim Richardson
That approach was close to a hack. I don't know why it's not working and I
don't use this code any longer. I think, unfortunately perhaps, a rich
client approach has won the debate, so you'll probably need to find a
JavaScript approach, but web2py power users may have other advice.


On Mon, 21 May 2018, 05:40 ,  wrote:

> Hi Tim,
>
> I tried your example from the link to the slice below, but I received the
> error 'NoneType' object is not callable:
>
> 1.
> 2.
> 3.
> 4.
> 5.
> 6.
> 7.
> 8.
> 9.
> 10.
>
> Traceback (most recent call last):
>   File 
> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/restricted.py",
>  line 219, in restricted
> exec(ccode, environment)
>   File 
> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
>  
> ,
>  line 104, in 
>   File 
> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/globals.py",
>  line 419, in 
> self._caller = lambda f: f()
>   File 
> "/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
>  
> ,
>  line 77, in editable_grid
> for key, value in request.vars.iteritems():
> TypeError: 'NoneType' object is not callable
>
> Version info: web2py™
>
> Version 2.16.1
>
> Python: Python 3.6.4
>
> Do you have any explanation for this? Has there been a change in web2py
> that makes this obsolete?
>
> Thanks,
> Thomas
>
>
> Am Freitag, 13. Februar 2015 20:36:32 UTC+1 schrieb Tim Richardson:
>>
>> there is this approach as well, which makes the existing SQLGRID.grid
>> widget editable.
>>
>>
>> http://www.web2pyslices.com/slice/show/1928/basic-inline-editing-in-sqlformgrid-no-plugin-no-javascript
>>
>>
>>
>> On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:
>>>
>>> Hello,
>>>
>>> Thanks all for the support and suggestions.
>>> I was able to get the slice using Jqgrid working (
>>> http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
>>> But I will take a look at the Massimo and Michael suggestions.
>>>
>>> Thanks again,
>>>
>>> Clara
>>>
>>>
>>> On Feb 11, 2015 1:25 PM, "Massimo Di Pierro" 
>>> wrote:
>>>
 I have used both and I think handsontable is much superior and
 customizable.

 On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>
> I've started using http://www.datatables.net/ primarily for the great
> search and responsive behavior.  I've read about the inline support but
> haven't tried it yet but it looks very good.
>
> The other option that looks very good is http://handsontable.com/ but
> I've only read through the documentation.
>
> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>>
>> Hello,
>>
>> I know this has been asked before, there are Web2py Slices (some of
>> which seem to be outdated), questions posted here on the subject but
>> somehow it is not clear to me which path I should take to implement a 
>> grid
>> with inline editable fields, appendable/deletable records. I am looking 
>> to
>> some "compact" solution which I am not sure it exist that would have the
>> functionality of current *SQLFORM.smartgrid*  but in addition to it:
>> inline editable fields and deletable/appendable records.
>>
>> I will greatly appreciate any input on this.
>>
>> Best regards,
>>
>> Clara
>>
>>
>>
>>
>>
>>
>>
> --
 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 a topic in the
 Google Groups "web2py-users" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 web2py+un...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentati

Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2018-05-20 Thread thomaskappeler731
Hi Tim,

I tried your example from the link to the slice below, but I received the 
error 'NoneType' object is not callable:

1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

Traceback (most recent call last):
  File 
"/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/restricted.py",
 line 219, in restricted
exec(ccode, environment)
  File 
"/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
 , 
line 104, in 
  File 
"/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/gluon/globals.py",
 line 419, in 
self._caller = lambda f: f()
  File 
"/Users/thomas_kappeler/Desktop/CAS-BigDATA_ML/MT-Abschlussarbeit/web2py/applications/sample_grid/controllers/default.py"
 , 
line 77, in editable_grid
for key, value in request.vars.iteritems():
TypeError: 'NoneType' object is not callable

Version info: web2py™

Version 2.16.1

Python: Python 3.6.4

Do you have any explanation for this? Has there been a change in web2py 
that makes this obsolete?

Thanks,
Thomas


Am Freitag, 13. Februar 2015 20:36:32 UTC+1 schrieb Tim Richardson:
>
> there is this approach as well, which makes the existing SQLGRID.grid 
> widget editable.
>
>
> http://www.web2pyslices.com/slice/show/1928/basic-inline-editing-in-sqlformgrid-no-plugin-no-javascript
>
>
>
> On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:
>>
>> Hello,
>>
>> Thanks all for the support and suggestions. 
>> I was able to get the slice using Jqgrid working (
>> http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
>>  
>> But I will take a look at the Massimo and Michael suggestions.
>>
>> Thanks again,
>>
>> Clara
>>
>>
>> On Feb 11, 2015 1:25 PM, "Massimo Di Pierro"  
>> wrote:
>>
>>> I have used both and I think handsontable is much superior and 
>>> customizable.
>>>
>>> On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:

 I've started using http://www.datatables.net/ primarily for the great 
 search and responsive behavior.  I've read about the inline support but 
 haven't tried it yet but it looks very good.

 The other option that looks very good is http://handsontable.com/ but 
 I've only read through the documentation.

 On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>
> Hello,
>
> I know this has been asked before, there are Web2py Slices (some of 
> which seem to be outdated), questions posted here on the subject but 
> somehow it is not clear to me which path I should take to implement a 
> grid 
> with inline editable fields, appendable/deletable records. I am looking 
> to 
> some "compact" solution which I am not sure it exist that would have the 
> functionality of current *SQLFORM.smartgrid*  but in addition to it: 
> inline editable fields and deletable/appendable records.
>
> I will greatly appreciate any input on this. 
>
> Best regards,
>
> Clara
>
>
>
>
>
>  
>
 -- 
>>> 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 a topic in the 
>>> Google Groups "web2py-users" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to 
>>> web2py+un...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2016-08-29 Thread Henk huisman
Hi Clara,
I have been looking for a powerful grid component too. Started using 
jqGrid.  It's really nice and very powerful; I recommend it.
Depends a bit on what license you looking for. For non-commercial 
organisations it's free.

Henk




 

>
>  
>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2016-08-29 Thread Tim Richardson
I wonder if in that case you are better making lots of individual forms.
That's what I would do.

On 24 August 2016 at 07:08, WeiI Wang  wrote:

> Hi Tim,
>
> I tried the inline edit for sqlform grid.
> The problem I have is there is only one submit button and whenever I edit
> something and submit, all the records' update time becomes the same.
> Is it possible to have one submit button for each row?
>
>
> On Friday, February 13, 2015 at 11:36:32 AM UTC-8, Tim Richardson wrote:
>>
>> there is this approach as well, which makes the existing SQLGRID.grid
>> widget editable.
>>
>> http://www.web2pyslices.com/slice/show/1928/basic-inline-edi
>> ting-in-sqlformgrid-no-plugin-no-javascript
>>
>>
>>
>> On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:
>>>
>>> Hello,
>>>
>>> Thanks all for the support and suggestions.
>>> I was able to get the slice using Jqgrid working (
>>> http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-
>>> and-updating-data). But I will take a look at the Massimo and Michael
>>> suggestions.
>>>
>>> Thanks again,
>>>
>>> Clara
>>>
>>>
>>> On Feb 11, 2015 1:25 PM, "Massimo Di Pierro" 
>>> wrote:
>>>
 I have used both and I think handsontable is much superior and
 customizable.

 On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>
> I've started using http://www.datatables.net/ primarily for the great
> search and responsive behavior.  I've read about the inline support but
> haven't tried it yet but it looks very good.
>
> The other option that looks very good is http://handsontable.com/ but
> I've only read through the documentation.
>
> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>>
>> Hello,
>>
>> I know this has been asked before, there are Web2py Slices (some of
>> which seem to be outdated), questions posted here on the subject but
>> somehow it is not clear to me which path I should take to implement a 
>> grid
>> with inline editable fields, appendable/deletable records. I am looking 
>> to
>> some "compact" solution which I am not sure it exist that would have the
>> functionality of current *SQLFORM.smartgrid*  but in addition to it:
>> inline editable fields and deletable/appendable records.
>>
>> I will greatly appreciate any input on this.
>>
>> Best regards,
>>
>> Clara
>>
>>
>>
>>
>>
>>
>>
> --
 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 a topic in the
 Google Groups "web2py-users" group.
 To unsubscribe from this topic, visit https://groups.google.com/d/to
 pic/web2py/ZFG0Z3-oQSg/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 web2py+un...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/web2py/ZFG0Z3-oQSg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Tim Richardson

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2016-08-28 Thread WeiI Wang
Hi Tim,

I tried the inline edit for sqlform grid.
The problem I have is there is only one submit button and whenever I edit 
something and submit, all the records' update time becomes the same.
Is it possible to have one submit button for each row?

On Friday, February 13, 2015 at 11:36:32 AM UTC-8, Tim Richardson wrote:
>
> there is this approach as well, which makes the existing SQLGRID.grid 
> widget editable.
>
>
> http://www.web2pyslices.com/slice/show/1928/basic-inline-editing-in-sqlformgrid-no-plugin-no-javascript
>
>
>
> On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:
>>
>> Hello,
>>
>> Thanks all for the support and suggestions. 
>> I was able to get the slice using Jqgrid working (
>> http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
>>  
>> But I will take a look at the Massimo and Michael suggestions.
>>
>> Thanks again,
>>
>> Clara
>>
>>
>> On Feb 11, 2015 1:25 PM, "Massimo Di Pierro"  
>> wrote:
>>
>>> I have used both and I think handsontable is much superior and 
>>> customizable.
>>>
>>> On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:

 I've started using http://www.datatables.net/ primarily for the great 
 search and responsive behavior.  I've read about the inline support but 
 haven't tried it yet but it looks very good.

 The other option that looks very good is http://handsontable.com/ but 
 I've only read through the documentation.

 On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>
> Hello,
>
> I know this has been asked before, there are Web2py Slices (some of 
> which seem to be outdated), questions posted here on the subject but 
> somehow it is not clear to me which path I should take to implement a 
> grid 
> with inline editable fields, appendable/deletable records. I am looking 
> to 
> some "compact" solution which I am not sure it exist that would have the 
> functionality of current *SQLFORM.smartgrid*  but in addition to it: 
> inline editable fields and deletable/appendable records.
>
> I will greatly appreciate any input on this. 
>
> Best regards,
>
> Clara
>
>
>
>
>
>  
>
 -- 
>>> 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 a topic in the 
>>> Google Groups "web2py-users" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to 
>>> web2py+un...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2015-02-13 Thread Tim Richardson
there is this approach as well, which makes the existing SQLGRID.grid 
widget editable.

http://www.web2pyslices.com/slice/show/1928/basic-inline-editing-in-sqlformgrid-no-plugin-no-javascript



On Friday, 13 February 2015 22:36:48 UTC+11, clara wrote:
>
> Hello,
>
> Thanks all for the support and suggestions. 
> I was able to get the slice using Jqgrid working (
> http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
>  
> But I will take a look at the Massimo and Michael suggestions.
>
> Thanks again,
>
> Clara
>
>
> On Feb 11, 2015 1:25 PM, "Massimo Di Pierro"  > wrote:
>
>> I have used both and I think handsontable is much superior and 
>> customizable.
>>
>> On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>>>
>>> I've started using http://www.datatables.net/ primarily for the great 
>>> search and responsive behavior.  I've read about the inline support but 
>>> haven't tried it yet but it looks very good.
>>>
>>> The other option that looks very good is http://handsontable.com/ but 
>>> I've only read through the documentation.
>>>
>>> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:

 Hello,

 I know this has been asked before, there are Web2py Slices (some of 
 which seem to be outdated), questions posted here on the subject but 
 somehow it is not clear to me which path I should take to implement a grid 
 with inline editable fields, appendable/deletable records. I am looking to 
 some "compact" solution which I am not sure it exist that would have the 
 functionality of current *SQLFORM.smartgrid*  but in addition to it: 
 inline editable fields and deletable/appendable records.

 I will greatly appreciate any input on this. 

 Best regards,

 Clara





  

>>>  -- 
>> 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 a topic in the 
>> Google Groups "web2py-users" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> web2py+un...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>  

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2015-02-13 Thread Clara Ferrando
Hello,

Thanks all for the support and suggestions.
I was able to get the slice using Jqgrid working (
http://www.web2pyslices.com/slice/show/1714/jqgrid-viewing-and-updating-data).
But I will take a look at the Massimo and Michael suggestions.

Thanks again,

Clara


On Feb 11, 2015 1:25 PM, "Massimo Di Pierro" 
wrote:

> I have used both and I think handsontable is much superior and
> customizable.
>
> On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>>
>> I've started using http://www.datatables.net/ primarily for the great
>> search and responsive behavior.  I've read about the inline support but
>> haven't tried it yet but it looks very good.
>>
>> The other option that looks very good is http://handsontable.com/ but
>> I've only read through the documentation.
>>
>> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>>>
>>> Hello,
>>>
>>> I know this has been asked before, there are Web2py Slices (some of
>>> which seem to be outdated), questions posted here on the subject but
>>> somehow it is not clear to me which path I should take to implement a grid
>>> with inline editable fields, appendable/deletable records. I am looking to
>>> some "compact" solution which I am not sure it exist that would have the
>>> functionality of current *SQLFORM.smartgrid*  but in addition to it:
>>> inline editable fields and deletable/appendable records.
>>>
>>> I will greatly appreciate any input on this.
>>>
>>> Best regards,
>>>
>>> Clara
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>  --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/web2py/ZFG0Z3-oQSg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2015-02-11 Thread Massimo Di Pierro
I have used both and I think handsontable is much superior and customizable.

On Monday, 9 February 2015 20:50:00 UTC-6, Michael Beller wrote:
>
> I've started using http://www.datatables.net/ primarily for the great 
> search and responsive behavior.  I've read about the inline support but 
> haven't tried it yet but it looks very good.
>
> The other option that looks very good is http://handsontable.com/ but 
> I've only read through the documentation.
>
> On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>>
>> Hello,
>>
>> I know this has been asked before, there are Web2py Slices (some of which 
>> seem to be outdated), questions posted here on the subject but somehow it 
>> is not clear to me which path I should take to implement a grid with inline 
>> editable fields, appendable/deletable records. I am looking to some 
>> "compact" solution which I am not sure it exist that would have the 
>> functionality of current *SQLFORM.smartgrid*  but in addition to it: 
>> inline editable fields and deletable/appendable records.
>>
>> I will greatly appreciate any input on this. 
>>
>> Best regards,
>>
>> Clara
>>
>>
>>
>>
>>
>>  
>>
>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Best and simpler approach to Inline editing / deleting / appending (jqGrid, Jeditable,etc)

2015-02-09 Thread Michael Beller
I've started using http://www.datatables.net/ primarily for the great 
search and responsive behavior.  I've read about the inline support but 
haven't tried it yet but it looks very good.

The other option that looks very good is http://handsontable.com/ but I've 
only read through the documentation.

On Saturday, February 7, 2015 at 11:00:45 PM UTC-5, clara wrote:
>
> Hello,
>
> I know this has been asked before, there are Web2py Slices (some of which 
> seem to be outdated), questions posted here on the subject but somehow it 
> is not clear to me which path I should take to implement a grid with inline 
> editable fields, appendable/deletable records. I am looking to some 
> "compact" solution which I am not sure it exist that would have the 
> functionality of current *SQLFORM.smartgrid*  but in addition to it: 
> inline editable fields and deletable/appendable records.
>
> I will greatly appreciate any input on this. 
>
> Best regards,
>
> Clara
>
>
>
>
>
>  
>

-- 
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 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.