Hi,
How to know what is the active page in a scrollview when initialized from HTML ?
Best regards,
Laurent.
Is there an example of using external controls and MVVM grids? Specifically I want a button for 'export to excel' and buttons for sorting that are placed outside the grid on the page.
Something similar to this Jquery example (where there are external buttons for filtering.
http://dojo.telerik.com/EKumEm/2
Hi
It appears that an animation bug has been introduced in 2019 SP1 of kendo ui jquery.
With the latest version, the animation for a context menu does not appear on the first call of .open()
Subsequent calls to .open() render the correct animation.
Dojo #1 shows the animation working first click
http://dojo.telerik.com/UJawAnAH
Dojo #2 shows the animation not working on the first click
http://dojo.telerik.com/oNerIDAQ
Regards
I have the problem that the responsive panel closes again immediately after opening on some mobile devices.
This can be reproduced with Chrome browser on the desktop: Small window widths in desktop mode work nicely, but when I enable Galaxy or iPad emulation I get an immediate close event.
This scenario can also be reproduced with the snippets from the documentation Dojo: https://dojo.telerik.com/Iqozu
Futhermore with a longclick it can be openend, but then it does not close anymore.
Then I have tried to reproduce this issue in Windows Edge with iPad/Nexus emulation and it does not happen here.
Next step was to test another browser on my Galaxy and it did not happen there either.
Therefore in any way it has to be something with chrome browser and mobiles... hmmm
Many thanks for helping out here!
Hello,
The media player does not seem to work when using containers that use display: table. The themes primary color bleeds through the media player and the tool bars don't align. I have attached screen shots, and the URL to the page is at http://gregoryalexander.com/blogCfc/client/index.cfm/2019/1/1/Video-Test
Please advise.
Gregory
I have an issue when using server side validation with the Kendo validator. When the input has focus, the server side validation seems to occur 3-4 times per second hitting the server. This only happens when there is an error, and the server returns false (something was not validated correctly). The server side validation occurs rapidly after that and it seems to slow down the browser, and when the user corrects the value and clicks on the submit button, the browser stops processing and freezes until you hit the submit button again. The browsers performance is degraded as well.
Can I slow down how often I hit the server when there was an error? Any suggestions would be welcome.
The approach that I developed is at http://gregoryalexander.com/blogCfc/client/index.cfm/2019/3/1/Kendo-Server-Side-Validation.
Hit the comment button on this thread, make a mistake on the captcha text, fix it to replicate.
Hello!
We using Batch editing Grid from springdemos and unfortunatelly, after pressing "Save changes" data doesn't insert from jsp to database (if you reload page, it will save, but if you open your database, you can't see any changes).
We find a piece of code (using debug), where we come, when we want to save (commit) changes (it's model "ProductDao"):
@Override
public void saveOrUpdate(List<Product> products) {
Session session = sessionFactory.getCurrentSession();
for (Product product : products) {
session.saveOrUpdate(product);
}
}
So what do we need to write here to commit changes to database?