Export Excel features has been introduced by Telerik Kendo since early of 2015.
There will be a lot of customization if we need to handle the format we want.
To customize the cell value in our preferred format,
We need to make changes at excelExport event.
From here, we just call the saveAsExcel() method to trigger the event and export according to our preferred format for kendo grid data. Drop me a comment if you have question about the method above.
From here, we just call the saveAsExcel() method to trigger the event and export according to our preferred format for kendo grid data. Drop me a comment if you have question about the method above.
If you need to customize the error message in Telerik Report HTML5 Viewer, you are required to do the following tweaking to make it work.
The best recommended way is hide/toggle the message and handle your own error message display according to the situation.
This is related to the reason we want to hide the error message required when parameters are not fulfilled.
There are many ways we can customise the Telerik Report Parameter in HTML5 mode.
Sample of customizing a dropdown list from the parameters
One of my research project requires me to make all the web applications to be authenticated under one single authentication token.
In order to allow them to be authenticated, I have made a finding on this topic and each of the web applications have to implement same Machine Key to make it workable.
You may search through the website via google :- Machine Key Generator. I believed that you will find one of them.
This is one of the Machine Key Generator I found. Machine Key Generator From the link above you will be able to generate the machine key tag. After this, you put this into each of the web application Web.Config, like below:-
In order to allow them to be authenticated, I have made a finding on this topic and each of the web applications have to implement same Machine Key to make it workable.
You may search through the website via google :- Machine Key Generator. I believed that you will find one of them.
This is one of the Machine Key Generator I found. Machine Key Generator From the link above you will be able to generate the machine key tag. After this, you put this into each of the web application Web.Config, like below:-
<system.web> ... <machineKey validationKey="XXXX" decryptionKey="XXXX" validation="SHA1" decryption="AES" /> ... </system.web>
Reference:
Stack Overflow:
http://stackoverflow.com/questions/25361240/asp-net-identity-use-the-same-token-for-different-urls
MSDN Site on Machine Key:
https://msdn.microsoft.com/en-us/library/ff649308.aspx
I have came across the issue about how to remove the default text in the update, edit and delete button in Kendo Grid for ASP.NET MVC.
So, this is the solution I found,
To remove the text in Edit button, we set it to empty text
E.g.
You could also include some additional CSS to remove the default margin of the command icon. E.g.
Meanwhile, for CancelText and UpdateText methods. E.g.
command.Edit().Text(
" "
);
You could also include some additional CSS to remove the default margin of the command icon. E.g.
.k-
icon
.k-edit {
margin-right
:
0
;
}
Meanwhile, for CancelText and UpdateText methods. E.g.
command.Edit().Text(
" "
).CancelText(
" "
).UpdateText(
" "
);
How to set our own font in Kendo Chart?
You can override it with a simple css rule.
.k-chart text,
.k-gauge text {
font
: inherit
!important
;
}
This will override the text in both charts and gauges
Regarding the topic,
I am noted that Kendo UI AutoComplete is not designed to show all items. As mentioned in the following forum topic,
http://www.telerik.com/forums/how-to-display-all-items-in-the-autocomplete-widget
In order to resolve this, we leverage the use of Kendo ComboBox, the different between them is the Kendo ComboBox provides a down-arrow on the right side where you can click on it when you want to find all items.
Below is the link I get from Telerik on the project I working on SignalR Grid.
http://www.telerik.com/support/code-library/binding-to-signalr
By defining '{ collection: ''} at the end of Schema
definition, we can make the MongoDB Object Oriented Collection Name as we
wanted it to be.
For example,
var UserInfo = new Schema({ username : String, password : String }, { collection: 'userinfo' });