Kenneth G. Franqueiro
Kenneth G. Franqueiro
More things to think about for future refactoring: - Filter's constructor seems pretty convoluted. - Does it really need to accept as many types of arguments as it currently does?...
We created something like this for a customer once - it mainly involved taking advantage of `canEdit`. But if I recall correctly, the implementation may've had limitations (like we weren't...
This is a good catch, and is a bug in the code added to attempt to set heights for CSS transitions. If you're not averse to disabling CSS transitions entirely...
To be honest, I'm not certain that the removal of the `results` property was 100% intentional. Its initial removal from OnDemandList traces to a commit in March 2014 which was...
There is a PR for this in #1221 but I am tempted to hold off until we can ascertain whether this would have an undesirable impact on accessibility (e.g. making...
Another thing I thought of that makes me feel iffy about this: Let's say you have a Keyboard List or Grid that lists records and under it are some buttons...
There are a couple of reasons why it's not quite as simple as you mention (and thus why it's not implemented), mainly centering around items that aren't loaded. Firstly, `this.row(id)`...
This is definitely a general area that I think we haven't given enough attention yet. Out of curiosity, are you using OnDemandGrid or Pagination? I ask since arbitrarily canceling loading...
Is this sort of a new incarnation of #403?
Keep in mind that the total number of results is also unknown until the first query returns, so in reality an initial query needs to be performed anyway, for the...