jQWidgets Forums
jQuery UI Widgets › Forums › Grid › rowdetails help needed
Tagged: grid, jqxgrid, json, rowdetails
This topic contains 2 replies, has 2 voices, and was last updated by ReinSanders 12 years, 1 month ago.
-
Authorrowdetails help needed Posts
-
Hello Peter and all,
I’ve been trying out jqWidgets and im real excited about what i’ve been able to achieve that I previously havent using datatables etc.
Right now i’ve managed to call and filter my requested columns into a nice grid but at the rowdetails part i somehow can’t seem to figure out. I’ve checked out the demo rowdetails.htm but im rather noob, throwing a gazillion attempts after anotherHope you can help me out here or point me in the right direction?
$(document).ready(function () { var theme = getDemoTheme(); var url = "blablabla"; // prepare the data var source = { datatype: "json", datafields: [ { name: 'basic_last_updated', type: 'string' }, { name: 'name', type: 'string' }, { name: '1', type: 'string' }, { name: 'networth', type: 'string' }, { name: 'land', type: 'string' }, { name: 'location', type: 'string' }, { name: '5', type: 'string' }, { name: 'short_name', type: 'string' }, { name: 'mod_defense', type: 'string' }, { name: 'net_defense', type: 'string' }, { name: 'net_offense', type: 'int' }, ], id: 'id', url: url }; var initrowdetails = function (index, parentElement, gridElement, record) { } var dataAdapter = new $.jqx.dataAdapter(source); $("#jqxgrid").jqxGrid( { width: 1230, height: 900, source: dataAdapter, theme: theme, columnsresize: true, rowdetails: true, rowdetailstemplate: { initrowdetails: initrowdetails, rowdetailsheight: 200 }, initrowdetails: true, ready: function () { $("#jqxgrid").jqxGrid({ initrowdetails: initrowdetails}); $("#jqxgrid").jqxGrid('showrowdetails'); }, columns: [ { text: 'Last Update', datafield: 'basic_last_updated', width: 200 }, { text: 'Location', datafield: 'location', width: 60 }, { text: 'Rank', datafield: 'name', width: 80 }, { text: 'Name', datafield: '1', width: 250 }, { text: 'Networth', datafield: 'networth', width: 90 }, { text: 'Land', datafield: 'land', width: 50 }, { text: 'Race', datafield: 'short_name', width: 33 }, { text: 'Personality', datafield: '5', width: 80 }, { text: 'Def on SoT', datafield: 'mod_defense', width: 80 }, { text: 'Def on SoM', datafield: 'net_defense', width: 80 }, { text: 'Off on SoM', datafield: 'net_offense', width: 80 }, ] }); }); </script></head><body class='default'> <div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;"> <div id="jqxgrid"></div> </div></body></html>
how it looks now; http://illegalrendezvous.tk/wordpress3/test.html with the empty row details :<
Hello ReinSanders,
The initrowdetails function is used to populate the row details section of each row. The row details may be as you like – e.g. tabs, as you have seen in the Row Details demo. Here are two other examples – with Nested Grids and navigation bar.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ive seen the demo’s , they didnt help me in the sense they are all static? tabs? so when i try my stuff and merge it I get an explosion of unneccesary information.
-
AuthorPosts
You must be logged in to reply to this topic.