Forum Replies Created

Viewing 15 posts - 1 through 15 (of 37 total)
  • Author
    Posts

  • kuberasamrat
    Participant

    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.

    in reply to: Generic Custom Pager Generic Custom Pager #65672

    kuberasamrat
    Participant

    Hi Dimitar,

    Thank you very much. You made my day.


    kuberasamrat
    Participant

    jqWidgets v 3.5
    I think the issue is not yet resolved. May I know the status of this issue.


    kuberasamrat
    Participant

    Hi Dimitar,

    Can you provide a sample where virtualmode:true (onDemand Data) This example is not working for me.


    kuberasamrat
    Participant

    Hi Peter,

    Suggest any alternative which can make sure of using check box selection mode as well as selecting the cell individually.


    kuberasamrat
    Participant

    Peter,

    Version:2.8.0
    DB: mysql

    virtual 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.

    in reply to: jqxgrid pager buttons jqxgrid pager buttons #31163

    kuberasamrat
    Participant

    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?

    in reply to: how Localization ? how Localization ? #22276

    kuberasamrat
    Participant

    How do I display utf characters(chinese/japanese) in jqxGrid?


    kuberasamrat
    Participant

    When check boxes are present, clicking of item shouldn’t check the item(only clicking of checkboxes should do) at least on drag and drop.


    kuberasamrat
    Participant

    It 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.


    kuberasamrat
    Participant

    Thanks Peter,

    But It is breaking when I used 100% for remote search example in combobox


    kuberasamrat
    Participant

    Peter,

    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.


    kuberasamrat
    Participant

    I 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>

    kuberasamrat
    Participant
    <!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


    kuberasamrat
    Participant

    Peter,

    If I use check boxes. This property is not working properly.

Viewing 15 posts - 1 through 15 (of 37 total)