jQWidgets Forums
Forum Replies Created
-
Author
-
May 28, 2018 at 1:43 pm in reply to: selected/dragEnd event doesn’t fire selected/dragEnd event doesn’t fire #100339
I have a problem when I change the position of the items tab and delete one of the items, the position of the id is not changed through the reorder property, thus causing the deletion of the item that was not selected. Eg I have 3 tabs whose selection sequence is 0.1 and 2. When I drag the item 2 to item 0, the tabs are changed, but when I delete the tab 0, the index in the ‘removed’ , event.args.item, index 2 is returned. How do I change this index when the ‘dragEnd’ event is made?
February 29, 2016 at 1:02 pm in reply to: Grid calendar filter first day of week. Grid calendar filter first day of week. #81922Hello,
I’m doing a date filter and time on the grid using the filtertype ‘range’ for date and time. The filter between dates function correctly, but when performing the filter by time range, for example, this time filter, minute and second is not made the filter on the grid, how can I solve this problem?
When done the filter column date and time through the input date range and team, I note that there is no change in the values when you run the filter event
$ ( “# JqxgridHistorico”). Bind ( “filter” function (event) {
filterinfo var = $ ( “# jqxgridHistorico”) jqxGrid ( ‘getfilterinformation.’);
var info;var filterGroup filterinfo = [0];
var filters filterGroup.filter.getfilters = ();
for (var j = 0; j <filters.length; j ++) {info + = “\ nFilter”;
info + = “\ nValue:” + filters [j] .value;
info + = “\ nCondition:” + filters [j] .condition;
info + = “\ nOperator:” + filters [j] .operator;
}where the values are not changed
Filter:
Value: Mon Feb 15 2016 00:00:00 GMT-0200 (Brazilian Summer Time)
Condition: GREATER_THAN_OR_EQUAL
Operator: 0
Filter:
Value: Mon Feb 15 2016 10:56:00 GMT-0200 (Brazilian Summer Time)
Condition: LESS_THAN_OR_EQUAL ”The value of the start time is not changed, it remains to 00:00:00
only the start time is changed, eg 10:56:00
February 29, 2016 at 12:56 pm in reply to: Grid calendar filter first day of week. Grid calendar filter first day of week. #81921Hello,
I’m doing a date filter and time on the grid using the filtertype ‘range’ for date and time. The filter between dates function correctly, but when performing the filter by time range, for example, this time filter, minute and second is not made the filter on the grid, how can I solve this problem?
-
AuthorPosts