jQWidgets Forums
Forum Replies Created
-
Author
-
April 18, 2013 at 3:23 pm in reply to: Export using local server example Export using local server example #19557
try this
$(jqxgrid).jqxGrid(‘exportdata’, ‘csv’, ‘jqxgrid’, true,null ,true,’http://192.168.1.10:8242′);
Marco
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”.
January 24, 2013 at 10:39 am in reply to: Simulate Click on Menu Item Simulate Click on Menu Item #14153I resolved with jquery trigger method!
ThanksJanuary 24, 2013 at 10:21 am in reply to: Simulate Click on Menu Item Simulate Click on Menu Item #14152IT’s ok.
My question are:
how can i simulate a click done with mouse by a javascript code?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.
December 5, 2012 at 4:40 pm in reply to: Grid detail issue v. 2.5.5 Grid detail issue v. 2.5.5 #11950I 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
I solved the problem.
I’ve update to 2.5.5 version.Thanks
Thanks
Another questionWhen 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
Could you help me?????
With unitInterval=1 i have solved the problem.
Thanks!
Could you help me, please?
$(xml).find(‘XAxis’).text() = remote_host
$(xml).find(‘Orientation’).text() = vertical
$(xml).find(‘YAxis’).text() = avgBytesvar 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);
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?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
-
AuthorPosts