jQWidgets Forums

Forum Replies Created

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

  • marchip
    Member

    try this

    $(jqxgrid).jqxGrid(‘exportdata’, ‘csv’, ‘jqxgrid’, true,null ,true,’http://192.168.1.10:8242′);

    Marco

    in reply to: Grid export synchronous Grid export synchronous #17148

    marchip
    Member

    this is my call

     $("#grid" + widgetId).jqxGrid('exportdata', ext, widgetTitle,true,null,true, '@Url.ContentLocalized("~/{0}/Dashboard/DownloadTable?ext=")'+ext );
    console.log('after');

    I have a breakpoint on server on method DownloadTable but the console write “after”.

    in reply to: Simulate Click on Menu Item Simulate Click on Menu Item #14153

    marchip
    Member

    I resolved with jquery trigger method!
    Thanks

    in reply to: Simulate Click on Menu Item Simulate Click on Menu Item #14152

    marchip
    Member

    IT’s ok.

    My question are:
    how can i simulate a click done with mouse by a javascript code?

    in reply to: getItemByValue Issue getItemByValue Issue #12165

    marchip
    Member

    var source = new Array();
    var arr = currentSeriesString.split(‘|’);
    for (i = 0; i < arr.length; i++) {
    var itm = {};
    itm["name"] = arr[i];
    source.push(itm);
    }

    $("#series").jqxDropDownList({ source: source, displayMember: 'name', valueMember: 'name', checkboxes: true, width: 200, height: 25, theme: 'classic' });

    Not function.

    in reply to: Grid detail issue v. 2.5.5 Grid detail issue v. 2.5.5 #11950

    marchip
    Member

    I have a grid with rowdetails: true. In the rowdetailstemplate there is a div that represent another grid (gridAlarms).

    In the gridAlarm there is a column with a button. Whe the user click this button the row is deleted.
    With version 2.4.2 and 2.5 this work fine.

    With versione 2.5.5 when i click on the deleteButton of gridAlarms the gridAlarm is resized automatically and the scroll of original grid don’t move up or down. I must refresh the page.

    is more clear my request?

    Thanks

    in reply to: Grid Export Server Grid Export Server #11928

    marchip
    Member

    I solved the problem.
    I’ve update to 2.5.5 version.

    Thanks

    in reply to: Groupable cross page Groupable cross page #11836

    marchip
    Member

    Thanks
    Another question

    When the groupable=true and showfilterrow=true and i select a field to group and write a characters in a first row for filtering when i delete a character the focus on textbox lose and when i press backspace i redirect to previous page. It’s a bug?

    Thanks

    in reply to: Xml Binding Xml Binding #11516

    marchip
    Member

    Could you help me?????

    in reply to: XAxis Label XAxis Label #11269

    marchip
    Member

    With unitInterval=1 i have solved the problem.

    Thanks!

    in reply to: One element in BarColumn One element in BarColumn #11215

    marchip
    Member

    Could you help me, please?

    in reply to: One element in BarColumn One element in BarColumn #11199

    marchip
    Member

    $(xml).find(‘XAxis’).text() = remote_host
    $(xml).find(‘Orientation’).text() = vertical
    $(xml).find(‘YAxis’).text() = avgBytes

    in reply to: One element in BarColumn One element in BarColumn #11196

    marchip
    Member
    var gridData = data;
    var gridSource =
    {
    localdata: gridData,
    datatype: 'json'
    };
    gridDataAdapter = new $.jqx.dataAdapter(gridSource);
    var settings = {
    title: $(xml).find('Title').text(),
    description: $(xml).find('SubTitle').text(),
    showLegend: true,
    // enableAnimations: true,
    // animationDuration:100,
    toolTipShowDelay: 200,
    padding: { left: 20, top: 5, right: 20, bottom: 5 },
    titlePadding: { left: 10, top: 0, right: 0, bottom: 10 },
    source: gridDataAdapter,
    categoryAxis:
    {
    dataField: $(xml).find('XAxis').text(),
    showGridLines: true,
    flip: true,
    formatFunction: function (value) {
    var v = value;
    if (v.indexOf('Date') == -1)
    return value;
    var d = new Date(value.match(/\d+/)[0] * 1);
    var curr_date = d.getDate();
    var curr_month = d.getMonth() + 1;
    var curr_year = d.getFullYear();
    return curr_date + "/" + curr_month + "/" + curr_year;
    },
    },
    colorScheme: $(xml).find('ColorSchemte').text(),
    seriesGroups:
    [
    {
    type: 'column',
    orientation: $(xml).find('Orientation').text(),
    //columnsGapPercent: 100,
    toolTipFormatSettings: { thousandsSeparator: ',' },
    valueAxis:
    {
    minValue: 0,
    axisSize: 'auto',
    flip: false,
    //displayValueAxis: true,
    description: '',
    formatFunction: function (value) {
    return parseInt(value / 1);
    }
    },
    series: [
    { dataField: $(xml).find('YAxis').text(), displayText: '' }
    ]
    }
    ]
    };
    $("#jqxChart_@(Model.WidgetId)").jqxChart(settings);
    in reply to: checkBox Column event checkBox Column event #10799

    marchip
    Member

    Ok. Thanks.
    Another question:
    In a definition of column can i use columntype: ‘checkbox’ and cellsrenderer???
    I must show a checkbox only if a condition is respected. How can i do it?

    in reply to: dragEnd event mistake dragEnd event mistake #10777

    marchip
    Member

    Ok.
    But also event.args.label refer to jqxTreeFunction instead jqxTreeField. It’s normal??
    If is normal I can take the value of element that i have dropped?

    Thanks

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