Forum Replies Created
-
Author
-
January 23, 2015 at 12:53 pm in reply to: How do Jqxgrid Save the state of the grid? How do Jqxgrid Save the state of the grid? #65917
Peter,
Even If we do manual savestate method, If we load state, the same problem arises when grid state is saved when one of the columns is sorted.
Hi Dimitar,
Thank you very much. You made my day.
November 28, 2014 at 5:34 am in reply to: autoloadstate: true and server side filtering autoloadstate: true and server side filtering #63491jqWidgets v 3.5
I think the issue is not yet resolved. May I know the status of this issue.November 27, 2014 at 11:03 am in reply to: Check All checkbox in column header of check box column Check All checkbox in column header of check box column #63451Hi Dimitar,
Can you provide a sample where virtualmode:true (onDemand Data) This example is not working for me.
May 26, 2014 at 10:20 am in reply to: Row- and Cell-Selection combined Row- and Cell-Selection combined #54908Hi Peter,
Suggest any alternative which can make sure of using check box selection mode as well as selecting the cell individually.
May 19, 2014 at 11:27 am in reply to: Checkbox Editor in PHP and Virtual Mode Checkbox Editor in PHP and Virtual Mode #54636Peter,
Version:2.8.0
DB: mysqlvirtual mode: true
If we sort one column and then go to next page. If we click check box, all the checkboxes in the checkbox column disappears. Is that fixed in the current release? Please reply ASAP.
Hi Dimitar,
I have done the same earlier(2.8 version) manually because in jqxpager.js there is no support for first and last buttons. Now in 3.03 version there is support for first and last buttons and also they have css defined( icon-first.png and icon-last.png were added). Do we need to add code in pagerrenderer function for this version also?
How do I display utf characters(chinese/japanese) in jqxGrid?
May 14, 2013 at 9:36 am in reply to: Drag drop in listbox checkboxes bug Drag drop in listbox checkboxes bug #21122When check boxes are present, clicking of item shouldn’t check the item(only clicking of checkboxes should do) at least on drag and drop.
April 30, 2013 at 10:37 am in reply to: dropdown/combobox resizable property dropdown/combobox resizable property #20341It is breaking for all the combobox, dropdownlist which is not having static data. I am checking in version 2.8.1. Could you please confirm whether it is working in 2.8.3 so that I will update my version.
April 30, 2013 at 10:27 am in reply to: dropdown/combobox resizable property dropdown/combobox resizable property #20334Thanks Peter,
But It is breaking when I used 100% for remote search example in combobox
April 19, 2013 at 12:43 pm in reply to: Feature request: saveState() and loadState() Feature request: saveState() and loadState() #19657Peter,
It is modified from phpdemos- server_side_grid_paging
It is not working, hence the code snippet has been posted above. How can we address the problem with this feature. I have tried testing in 2.8.1 version also, still the result is same. Is it a work item for you in the next release?The same kind of situation is happening if we use autosavestate and autoloadstate also as I have mentioned in the previous posts in this thread. I am not able to reproduce that behaviour in sample program because those features are not at all working in phpdemos.
April 19, 2013 at 12:00 pm in reply to: Feature request: saveState() and loadState() Feature request: saveState() and loadState() #19643I have tried in different way. Check the the below example even that is breaking.
<!DOCTYPE html><html lang="en"><head> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.classic.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdropdownlist.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.pager.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.selection.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script> <script type="text/javascript"> $(document).ready(function () { // prepare the data var theme = 'classic'; var saved_pagenum = $.jqx.cookie.cookie("jqxGrid_pagenum"); if (undefined == saved_pagenum) saved_pagenum = 0; var saved_pagesize = $.jqx.cookie.cookie("jqxGrid_pagesize"); if (undefined == saved_pagesize) saved_pagesize = 10; var source = { datatype: "json", datafields: [ { name: 'CompanyName'}, { name: 'ContactName'}, { name: 'ContactTitle'}, { name: 'Address'}, { name: 'City'}, { name: 'Country'} ], url: 'data.php', root: 'Rows', pagenum: saved_pagenum, pagesize: saved_pagesize, beforeprocessing: function(data) { source.totalrecords = data[0].TotalRows; } }; var dataadapter = new $.jqx.dataAdapter(source); // initialize jqxGrid $("#jqxgrid").jqxGrid( { width: 600, source: dataadapter, theme: theme, autoheight: true, pageable: true, virtualmode: true, rendergridrows: function() { return dataadapter.records; }, columns: [ { text: 'Company Name', datafield: 'CompanyName', width: 250 }, { text: 'Contact Name', datafield: 'ContactName', width: 200 }, { text: 'Contact Title', datafield: 'ContactTitle', width: 200 }, { text: 'Address', datafield: 'Address', width: 180 }, { text: 'City', datafield: 'City', width: 100 }, { text: 'Country', datafield: 'Country', width: 140 } ] }); $("#jqxgrid").on("pagechanged", function (event) { $.jqx.cookie.cookie("jqxGrid_pagenum", event.args.pagenum); }); $("#jqxgrid").on("pagesizechanged", function (event) { $.jqx.cookie.cookie("jqxGrid_pagesize", event.args.pagesize); }); }); </script></head><body class='default'> <div id='jqxWidget'"> <div id="jqxgrid"></div> </div></body></html>
April 18, 2013 at 10:15 am in reply to: Disable Horizontal ScrollBar In ListBox Disable Horizontal ScrollBar In ListBox #19524<!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"><head> <meta name="keywords" content="jQuery DropDownList, List, ListBox, Popup List, jqxDropDownList, jqxListBox, List Widget, ListBox Widget, DropDownList Widget" /> <meta name="description" content="The jqxListBox can display checkboxes next to its items. You can enable this feature by setting the 'checkboxes' property to true."/> <title id='Description'>The jqxListBox can display checkboxes next to its items. You can enable this feature by setting the 'checkboxes' property to true. </title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/gettheme.js"></script> <script type="text/javascript" src="../../scripts/jquery-1.8.3.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script></head><body> <div id='content'> <script type="text/javascript"> $(document).ready(function () { var theme = getDemoTheme(); var source = [ "Affogatogre g grgrege", "Americano", "Bicerin grgreger", "Breve", "Café Bombón gregregerger", "Café mélange", "Coffee milk grgregregre", "Cafe mocha", "Cappuccino", "Carajillo", "Cortado", "Cuban espressog gregregre regreger", "Espresso", "Eiskaffee", "The Flat White", "Frappuccino", "Galao", "Greek frappé coffee gregreg regr", "Iced Coffee", "Indian filter coffee", "Instant coffee", "Irish coffee", "Liqueur coffee" ]; // Create a jqxListBox $("#listbox").jqxListBox({ source: source, checkboxes: true, width: 150, height: 200, autoItemsHeight: true,theme: theme }); // Check several items. }); </script> <div id='jqxWidget'> <div id="listbox"></div> </div> </div></body></html>
Please check how list box UI becomes awful when longer texts are present
April 12, 2013 at 1:09 pm in reply to: Disable Horizontal ScrollBar In ListBox Disable Horizontal ScrollBar In ListBox #19116Peter,
If I use check boxes. This property is not working properly.
-
AuthorPosts