This is nice. Would you make a web2pyslice?
On Oct 19, 11:25 am, zahar <[email protected]> wrote:
> I have created a simple controller as follows:
>
> def index():
> return dict()
>
> def display():
> return dict()
>
> with the display.html based on the jqgrid 3.5 installation and
> example but
> the output is just a blank screen.I have installed all the necessary
> file of jqgrid and jquery-ui in the appropriate directory. How can I
> locate the error ? Pls help ...
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
> xml:lang="{{=T.accepted_language or 'en'}}">
> <head>
> <title>{{=response.title or 'response.title'}}</title>
>
> <link
> href="{{=URL(r=request,c='static',f='themes/redmond/jquery-
> ui-1.7.2.custom.css')}}" rel="stylesheet" type="text/css"
> media="screen" />
>
> <link
> href="{{=URL(r=request,c='static',f='ui.jqgrid.css')}}"
> rel="stylesheet" type="text/css" media="screen" />
>
> <script
> src="{{=URL(r=request,c='static',f='js/i18n/grid.locale-en.js')}}"
> type="text/javascript"></script>
>
> <script
> src="{{=URL(r=request,c='static',f='js/jquery.jqGrid.min.js')}}"
> type="text/javascript"></script>
>
> <script type="text/javascript">
> $(document).ready(function(){
> $("#list4").jqGrid({
> datatype: "local",
> height: 250,
> colNames:['Inv No','Date', 'Client',
> 'Amount','Tax','Total','Notes'],
> colModel:[
> {name:'id',index:'id', width:60, sorttype:"int"},
> {name:'invdate',index:'invdate', width:90, sorttype:"date"},
> {name:'name',index:'name', width:100},
> {name:'amount',index:'amount', width:80,
> align:"right",sorttype:"float"},
> {name:'tax',index:'tax', width:80,
> align:"right",sorttype:"float"},
> {name:'total',index:'total', width:
> 80,align:"right",sorttype:"float"},
> {name:'note',index:'note', width:150, sortable:false}
> ],
> imgpath:'/{{=request.application}}/static/themes/redmond/images',
> multiselect: true,
> caption: "Manipulating Array Data"
>
> });
> });
>
> var mydata = [
>
> {id:"1",invdate:"2007-10-01",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"},
>
> {id:"2",invdate:"2007-10-02",name:"test2",note:"note2",amount:"300.00",tax:"20.00",total:"320.00"},
>
> {id:"3",invdate:"2007-09-01",name:"test3",note:"note3",amount:"400.00",tax:"30.00",total:"430.00"},
>
> {id:"4",invdate:"2007-10-04",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"},
>
> {id:"5",invdate:"2007-10-05",name:"test2",note:"note2",amount:"300.00",tax:"20.00",total:"320.00"},
>
> {id:"6",invdate:"2007-09-06",name:"test3",note:"note3",amount:"400.00",tax:"30.00",total:"430.00"},
>
> {id:"7",invdate:"2007-10-04",name:"test",note:"note",amount:"200.00",tax:"10.00",total:"210.00"},
>
> {id:"8",invdate:"2007-10-03",name:"test2",note:"note2",amount:"300.00",tax:"20.00",total:"320.00"},
>
> {id:"9",invdate:"2007-09-01",name:"test3",note:"note3",amount:"400.00",tax:"30.00",total:"430.00"}
> ];
>
> for(var i=0;i<=mydata.length;i++)
> $("#list4").addRowData(i+1,mydata[i]
>
> </script>
>
> </head>
> <body>
>
> <table id="list4" class="scroll" cellpadding="0" cellspacing="0"></
> table>
>
> </body>
> </html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---