I tried to export PDF with method in my project(using vue). But , the following error occurred.
ttf.js:50 Uncaught Error: Table loca not found in directory
at Directory.readTable (ttf.js:50:1)
at TTFFont.parse (ttf.js:1210:1)
at new TTFFont (ttf.js:1202:1)
at eval (core.js:267:1)
at req.onload (core.js:246:1)
How can I solve this problem?
Hello,
We are using kendo vue native component Grid.
FilWe do have column filtration. We noticed that when we filter a column with string values from column filter, the search that is being done, is a startsWith. For our business purposes we want to change startsWith to Contains for example.
Is there a clean way of doing this? Do you have any suggestions or examples?
Thanks
After upgrading vue wrapper components from 2022.2.621 to 2023.2.606 and @progress/kendo-ui from 2022.2.621 to 2023.1.425
and our native component from 3.3.3 to 3.11.0 we are getting an error Uncaught ReferenceError: jQuery is not defined
This literary stops us from working.
Is there any solution that we can try? Thanks!
I am wishing to use the Stepper component, where I have a Create and an Edit form (which share the same basic form), but one step is only valid during Edit, and not during Create.
Is there any way to mark a Step as hidden/not in use, without having to have two separate arrays of Steps, one with and one without the step I want to hide?
Hello,
I am using scheduler (kendo-vue-scheduler) and calendar (kendo-vue-dateinputs)
in my project. I am using month view and we have a requirement where I have to set Monday like first day in week. How can I do that?
Thanks & Regards
Daniela
Hi,
Our internal app is very data intensive - lots of forms and/or grids with dozens of fields. Each field can need different validations, such as specific min/max values and whether or not it is required. I currently use Vuelidate for data validations. But as I evaluate Kendo UI, it would be nice to replace Vuelidate with the native tools.
How can I use the native Kendo UI components, such as the NumericTextBox, to do complex custom validations? The documentation examples are falling a little short for me. For example, can I pass each field the spec data (such as min/max values) and then specify what should be validated (such as "between min & max", "allow zero", or "at least greater than min", etc.)?
Thanks.
I have a large project that uses BootstrapVue. It also uses Vuelidate for validation. Why should I consider using Kendo UI instead? What are the major differences or pros/cons of one versus the other? Would Kendo UI be able to completely replace BootstrapVue + Vuelidate?
Thanks.
i got an error like this when using local serve asset on editor image
http://localhost:8904/my-service/assets/img.png
net::ERR_BLOCKED_BY_RESPONSE.NotSameOrigin 200 (OK)
I'm trying to populate a grid with some async data (not in this repro for simplicity) and do the data processing inside a Vue computed function.
However I can't seem to get the expanding/collapsing rows functionality to play along nicely.
Here's my attempt (where I save 'e.collapsedGroups' into a ref and recurse over it inside the computed):
Fkcdqd (forked) - StackBlitz
Basically the only issue that I'm still seeing is that when I collapse product name 'Apple' it will close all 'Apple' rows. You can observe this by going to the repro and collapsing 'Apple' product in the units in stock '2', and then scrolling down to the units in stock '7' and seeing there that the 'Apple' is also collapsed.
My guess is is that there must be a simpler way to implement the expand functionality with a computed, but so far haven't found a way.
I would really appreciate any input to help me along 😁