jQWidgets Forums
Forum Replies Created
-
Author
-
June 5, 2017 at 3:10 pm in reply to: Get number of displayed rows (role="row") with grouping Get number of displayed rows (role="row") with grouping #94105
Thank you! I will look into it more
May 2, 2017 at 9:42 pm in reply to: Error when drag/drop. Cannot read property of OriginalItem Error when drag/drop. Cannot read property of OriginalItem #93264I am going to scream!
It wasn’t working because my container ‘.columnListReorder’ was a UL instead of a div.
thanks for your help Hristo!
May 2, 2017 at 1:54 pm in reply to: Error when drag/drop. Cannot read property of OriginalItem Error when drag/drop. Cannot read property of OriginalItem #93253I tried to look through the code base to see what would cause this error, but I couldn’t find anything. If there is something I’m “missing” or doing that would cause the originalItem to disappear that you know of I could help diagnose this issue more. (Or even an alternative).
I’m looking for a list for items that can be rearranged to create an order, and that has the ability to add / remove items from the list.
May 2, 2017 at 1:46 pm in reply to: Error when drag/drop. Cannot read property of OriginalItem Error when drag/drop. Cannot read property of OriginalItem #93251jQuery 2.24
and loading all JS from:
https://jqwidgets.com/public/jqwidgets/jqx-all.jsThis is a private site so I can’t show a URL, but if there is at any way to GTM I would gladly share my screen and code.
April 26, 2017 at 10:10 pm in reply to: Show loading gif when grid methods are run Show loading gif when grid methods are run #93182If I run 10 of them at once they take over 5 seconds! Such as looping through all of the columns and showing / hiding them. I get that it’s async, but shouldn’t it return a “complete?”
April 26, 2017 at 1:51 pm in reply to: Show loading gif when grid methods are run Show loading gif when grid methods are run #93156Thank you. At this point we’re kind of just walking in circles, I really appreciate your help, but it’s not what I’m looking for. I definitely now know how to show a loading gif on the site!
I want to know what event I can watch for that triggers when a Grid method is finished running // all grid methods have completed ( filtering, sorting, adding removing columns, etc )
April 26, 2017 at 1:26 pm in reply to: Show loading gif when grid methods are run Show loading gif when grid methods are run #93150The Grid methods don’t have a callback (that i’m aware of) that will tell me when the method finishes so that I can call
$('#jqxLoader').jqxLoader('close');
I need to know when they finish so I can hide the loader when it’s done!
April 25, 2017 at 5:10 pm in reply to: Show loading gif when grid methods are run Show loading gif when grid methods are run #93129Thank you Stanislav.
You misunderstand my question, however. How do I trigger this loader to show whenever any methods are invoked on the grid?
April 20, 2017 at 2:44 pm in reply to: Grouping – case insensitive Grouping – case insensitive #93027Thank you for the amazingly quick reply! Is it possible to do this without changing the way the values are displayed in general? I would have to determine whether or not to make everything UPPERCASE, lowercase, or Capitalized, which isn’t a problem but might not be what the client wants.
Thanks
JacobApril 5, 2017 at 11:43 pm in reply to: grouping and row details causing group not to take width grouping and row details causing group not to take width #92711I was able to fix this with CSS in the interim. This SHOULD work with most setups, but it’s hard to confirm..
/* target first cell row that isn't pinned */ .jqx-grid-cell-pinned + .jqx-grid-group-cell:not(.jqx-grid-cell-pinned) { border-right:0px; width:100%!important; }
March 29, 2017 at 4:03 am in reply to: Aggregates and Scrollbar causing bottom row to cut off Aggregates and Scrollbar causing bottom row to cut off #92550Thank you. It does fix the problem, but I’d rather it’s cut off a little. I need the grid to expand to unknown heights
March 29, 2017 at 4:01 am in reply to: ready function does not interact with toolbar ready function does not interact with toolbar #92549if I my inquire, why would adding a timeout of 0 make a difference? (it did indeed work). But why?
March 26, 2017 at 5:34 pm in reply to: Aggregates and Scrollbar causing bottom row to cut off Aggregates and Scrollbar causing bottom row to cut off #92477This is not as cut off as it is in the screenshots i Posted below, but in this fiddle, the last row is cut off by a few pixels. (It’s as if there is a css class that gives the last row a smaller bottom padding).
March 22, 2017 at 2:58 pm in reply to: Aggregates and Scrollbar causing bottom row to cut off Aggregates and Scrollbar causing bottom row to cut off #92389I’m using chrome or most of my testing. I will try to create a fiddle with this (bug)! thanks
March 22, 2017 at 4:00 am in reply to: Show Grouping Aggregate Sums directly over column Show Grouping Aggregate Sums directly over column #92367I actually think I just solved this and need to test more and format tomorrow….
Inside groupsrenderer, I take the aggregate value and set it to the column value, inside of the group parent. I have to do an each loop and check to make sure the value isn’t already set.
The below function is inside of my groupsrenderer, prior to the return which sets the group header. I will post my complete code once it’s checked out!
` $(‘.jqx-grid-group-details-cell’).each(function() {
aTarget = $(this).closest(‘div[role=”row”]’).find(‘.amount’);
bTarget = $(this).closest(‘div[role=”row”]’).find(‘.runRateFinal’);if(aTarget.html() == ”) {
aTarget.html(aggregateA);
}if(bTarget.html() == ”) {
bTarget.html(aggregateB);
}});`
-
AuthorPosts