Forum Replies Created
-
Author
-
April 12, 2017 at 8:29 pm in reply to: Problem with qxWindow and jqxDropDownList with touchmove Problem with qxWindow and jqxDropDownList with touchmove #92911
Here is another screenshot, this time from a real Device, Galaxy S5 Mini!
Same problem here!
April 12, 2017 at 10:39 am in reply to: Problem with qxWindow and jqxDropDownList with touchmove Problem with qxWindow and jqxDropDownList with touchmove #92889You’re right, it works with Iphone-resolution, but try a larger size.
I tested with 1800 x 787 emulated in latest chrome (55)
(jqx should be latest version since this is cdn from your site)December 13, 2016 at 10:32 am in reply to: Special Dates with a For Loop Special Dates with a For Loop #89790I stumpled about this post because I had the same problem, that my page was very slow because of too many “addSpecialDate”-calls.
And there absolutely IS a way to make this faster, by not calling “addSpecialDate” many times, but to collect the data in an array and then call it once
var specialDates = []; while (...) { ... yourclass = ... yourdate= ... yourtooltip= ... specialDates.push( { Class: yourclass, Date: yourdate, Tooltip: yourtooltip}); } $('#jqxCal').jqxCalendar('specialDates', specialDates);
It’s probably to late for the author of the original post, but I may help someone …
This would really be very usefull. Please consider this as a feature to come.
July 28, 2016 at 12:22 pm in reply to: position: fixed in jqxWindow position: fixed in jqxWindow #86125I have a jqxwindow with a large formular, larger than the window so there will be scrollbars.
I want to have the save-button always visible (on top, or on bottom)
On a normal page I would solve this with CSS position:fixed, so the save-container stays on the same position and is always visible regardless of where the user scrolls to.
But in the jqxwindow I cannot use this, because the window might move or open at a different position.
July 15, 2016 at 7:58 am in reply to: Problem with "hideOnClick" in mobile Problem with "hideOnClick" in mobile #85773As I said: it does NOT happen on mobile simulators, only on a real smartphone!
I already did this before did not help.
But I found the solution: you have to add an z-index to the div which contains the content of the docking-element.
Thanks anyway
Awesome
Hello Peter,
I know that there is no time-ruler, but there are indeed times in the column “Time”.
How can I set those to a 24-hour-format?
Thanks,
WitoldNovember 27, 2015 at 3:06 pm in reply to: 24 hour time in timeRuler 24 hour time in timeRuler #78631It’s working now with Version 3.9.1
views: [ { type: 'dayView', timeRuler: { scale: 'hour', formatString: 'HH:mm' }}, { type: 'weekView', timeRuler: { scale: 'hour', formatString: 'HH:mm' }}, { type: 'monthView', timeRuler: { scale: 'hour', formatString: 'HH:mm' }}, ],
November 16, 2015 at 7:59 am in reply to: Filterrow- filteritems with logical OR Filterrow- filteritems with logical OR #78181Thanks, but is it possible to assign this custom-filter to one of the select-options in the filterrow?
November 12, 2015 at 3:14 pm in reply to: How to get children items? How to get children items? #78047var getChildItemsTree = function(selectorTree, item) { var result = []; var allItems = $(selectorTree).jqxTree('getItems'); for (var i in allItems) { if(allItems[i].parentId == item.id) { result.push(allItems[i]); result.push(getChildItemsTree(selectorTree, allItems[i])); } } return result; },
November 10, 2015 at 4:10 pm in reply to: Feature: gridRendered (including all cellrenderes) Feature: gridRendered (including all cellrenderes) #77975So, what is your suggestion how to have a html-element inside a cell which should have some jquery-magic?
Thanks,
WitoldNovember 10, 2015 at 12:28 pm in reply to: Feature: gridRendered (including all cellrenderes) Feature: gridRendered (including all cellrenderes) #77957Well, in this special case I was adding a dropzone for an file-upload into a cell and had to add the behaviour to the html-element, which would not work with cellclick-Event at all.
I helped myself with this:
$("#jqxgridBestand").jqxGrid( { ready: gridReallyRendered }); var gridReallyRendered = function() { if ($('.drop').length < $('#jqxgridBestand').jqxGrid('getrows').length) { setTimeout(function () { gridReallyRendered() }, 200); return; } ... }
I had the same problem. In my case it appeared because I accidentally was reloading the grid twice at the same time.
(I added an jqxwindow-on-close-handler more than once, which reloaded the grid twice)Maybe that helps others having the same problem.
Cheers, Witold
-
AuthorPosts