Forum Replies Created

Viewing 15 posts - 16 through 30 (of 95 total)
  • Author
    Posts
  • in reply to: printing multiple grids printing multiple grids #106707

    arkgroup
    Participant

    Hi,

    I have a problem when do export. My grid column data is dynamically build using cellsrenderer. When I do export all data shown as 12/31/1969.
    Please help.

    Thanks

    in reply to: printing multiple grids printing multiple grids #106700

    arkgroup
    Participant

    Great! Thanks!


    arkgroup
    Participant

    Thank you.


    arkgroup
    Participant

    No, I don’t want to change logged text.
    After double click, I want automatically select next cell for same column using selectcell method.

    Thanks

    in reply to: jqxLoader and grid jqxLoader and grid #106056

    arkgroup
    Participant

    Hi Todor,

    In my case loader appears after data loaded. Maybe because I use ajax async: false for grid.
    I tried your suggestions, but it did not work for me.

    Thanks


    arkgroup
    Participant

    THANKS!!!


    arkgroup
    Participant

    Hi Todor,

    Your example works in google chrome, but does not work in IE11 – popup do not show.
    http://jsfiddle.net/j9w45kfh
    Can you, please help?

    Thanks

    in reply to: ever present row and theme ever present row and theme #105673

    arkgroup
    Participant

    Thank you very much!


    arkgroup
    Participant

    Thanks Todor,
    I think, I figure it out.
    That behavior appeared when I use localhost.
    I move code to web server and it works there.
    Thank you for your help.

    in reply to: ever present row and theme ever present row and theme #105647

    arkgroup
    Participant

    update link is
    https://jsfiddle.net/arkgroup/daf07e5p/9/
    dropdown is not green

    in reply to: ever present row and theme ever present row and theme #105646

    arkgroup
    Participant

    arkgroup
    Participant

    Sorry. I cannot. Just use your demo and add button.
    The only difference I see between your code and demo that you use
    jqx-all.js and demo use all jqwidgets js. Please help.
    Thanks.


    arkgroup
    Participant

    Your example works, but my code above from download demo does not.
    I am using this link:
    \jqwidgets-ver8.0.0\demos\Javascript & JQuery\jqxgrid\everpresentrow.html

    Thanks


    arkgroup
    Participant

    Here is modified demo code from everpresentrow.htm
    After clicking on button, add reset buttons don’t show
    <!DOCTYPE html>
    <html lang=”en”>
    <head>
    <title id=’Description’>This example illustrates the Grid’s Ever Present Row feature.</title>
    <link rel=”stylesheet” href=”../../../jqwidgets/styles/jqx.base.css” type=”text/css” />
    <meta http-equiv=”X-UA-Compatible” content=”IE=edge,chrome=1″ />
    <meta name=”viewport” content=”width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1″ />
    <script type=”text/javascript” src=”../../../scripts/jquery-1.12.4.min.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxcore.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxdata.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/jqxdropdownlist.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxmenu.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.filter.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.sort.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.selection.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.edit.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxgrid.columnsresize.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxpanel.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxcalendar.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxradiobutton.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxdatetimeinput.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/jqxcheckbox.js”></script>
    <script type=”text/javascript” src=”../../../jqwidgets/globalization/globalize.js”></script>
    <script type=”text/javascript” src=”../../../scripts/demos.js”></script>
    <script type=”text/javascript” src=”generatedata.js”></script>
    <script type=”text/javascript”>
    $(document).ready(function () {
    var data = generatedata(10);
    var source =
    {
    localdata: data,
    datafields:
    [
    { name: ‘name’, type: ‘string’ },
    { name: ‘productname’, type: ‘string’ },
    { name: ‘available’, type: ‘bool’ },
    { name: ‘date’, type: ‘date’},
    { name: ‘quantity’, type: ‘number’ }
    ],
    datatype: “array”
    };

    var dataAdapter = new $.jqx.dataAdapter(source);

    $(“#grid”).jqxGrid(
    {
    width: getWidth(‘Grid’),
    filterable: true,
    source: dataAdapter,
    showeverpresentrow: true,
    everpresentrowposition: “top”,
    editable: true,
    selectionmode: ‘multiplecellsadvanced’,
    columns: [
    {
    text: ‘Name’, columntype: ‘textbox’, filtertype: ‘input’, datafield: ‘name’, width: 215
    },
    {
    text: ‘Product’, filtertype: ‘checkedlist’, datafield: ‘productname’, width: 220
    },
    { text: ‘Ship Date’, datafield: ‘date’, filtertype: ‘range’, width: 210, cellsalign: ‘right’, cellsformat: ‘d’ },
    { text: ‘Qty.’, datafield: ‘quantity’, filtertype: ‘number’, cellsalign: ‘right’ }
    ]
    });

    $(“#grid”).jqxGrid(‘everpresentrowactions’, ‘add reset’);

    $(“#jqxButton”).jqxButton({ width: 120, height: 40 });
    $(“#jqxButton”).on(‘click’, function () {
    $(‘#grid’).jqxGrid(‘updatebounddata’);
    });
    });
    </script>
    </head>
    <body>
    <div id=”grid”>
    </div><br />
    <div>
    <input type=”button” value=”Button” id=’jqxButton’ />
    </div>
    </body>
    </html>

    in reply to: addrow with unique id addrow with unique id #105221

    arkgroup
    Participant

    Yes, I did like that. I can solve the problem by using setcellvaluebyid after ajax call, but not with commit.
    I am using ASP.NET. Can you test with ASP.NET?

    Thanks.

Viewing 15 posts - 16 through 30 (of 95 total)