jQWidgets Forums
Forum Replies Created
-
Author
-
Hello,
I, also, just started experiencing similar behavior, using your server installation, when trying to export from a grid. I am being redirected to http://jquerygrid.net/export_server/save-file.php, which displays documentation for “jqxGrid – modern HTML5 data grid built with jQuery.” This is for a very small data set. I was wondering if this is a configuration change, or if I need to upgrade to a newer version. If this is something that may be resolved soon, please let me know. If not, I will start working on configuring a local IIS environment to serve up the PHP file.
Thank you,
MikeApril 9, 2016 at 5:20 pm in reply to: TreeGrid with drag and drop functionality? TreeGrid with drag and drop functionality? #83309Another vote for the Tree Grid drag and drop feature.
August 10, 2014 at 1:04 pm in reply to: Filtered Grid Checkboxes removed from DOM Filtered Grid Checkboxes removed from DOM #58188For those interested, removing the binding on sort and filter, resolved my issue.
var billingSource = {
datatype: “json”,
dataFields: [
{ name: ‘Checked’, type: ‘bool’ },
{ name: ‘Group’, type: ‘string’ },
{ name: ‘Lab’, type: ‘string’ },
…
{ name: ‘SequenceId’, type: ‘number’ }
],
id: ‘TaskId’,
url: url,
// Causes vanishing checkboxes when grid is filtered and checkbox is clicked with mouse
//////filter: function () {
////// grid.jqxGrid(‘updatebounddata’, ‘filter’);
//////},
//////sort: function () {
////// grid.jqxGrid(‘updatebounddata’, ‘sort’);
//////},
root: ‘Rows’,
beforeprocessing: function (data) {
billingSource.totalrecords = data.TotalRows;
}
};var billingDataAdapter = new $.jqx.dataAdapter(billingSource, {
loadError: function (xhr, status, error) {
metAlert(‘Error’, error, _theme);
}
});August 2, 2014 at 1:21 pm in reply to: JQXGrid with Grouping Keyboard navigation does not work JQXGrid with Grouping Keyboard navigation does not work #57960Hello,
Is there an example available with keyboard navigation for a grid with grouping enabled?
Thank you,
Mike DolsApril 29, 2014 at 5:45 pm in reply to: Grid row Inline Edit – data read issue Grid row Inline Edit – data read issue #53738Peter,
I am implementing dynamic, computed columns in a grid and would like to update dependent row columns when the selected index is changed in a column with a dropdownlist without having to change focus. Is there any way to fire the endcelledit event when the selected index is changed on the column’s dropdownlist or can you suggest an alternate approach?
Thanks in advance,
MikeJanuary 30, 2014 at 5:39 pm in reply to: jqxDropDownList Add Class on Focus jqxDropDownList Add Class on Focus #48705Please disregard, .jqx-fill-state-focus satisfies the requirement. Thank you, Mike
-
AuthorPosts