How I can over ride default tooltips of data source filter, I need to show the tooltip based on value available in drop-down
For example from attached image in place of field drop-down "price ", in place of operator "is greater than or equal to" has to show in tooltip.
Can u please suggest a way to achieve the above query.
Hi,
Is there a way to show the scheduler view starting from a visible date range? I tried specifying the date attribute data-date="2014-02-16T05:00:00.000Z" but it doesn't seem to start at the correct date range.
https://dojo.telerik.com/@slim@revindex.com/UgIxiPAh
Hi,
I am using the workweek view in the Kendo Scheduler. I would like to know how the Kendo reads the weekend in workweek view. Is it always Saturday and Sunday or do you consider the regional settings. (Example for Saudi Arab weekend is Thursday and Friday)
Hi Telerik,
When resize the container after add new using SetOptions(), sometimes it will trigger error message "Uncaught TypeError: Cannot read property '0' of undefined".
Kindly share the solution for this issue.
Dear all,
I'm using Kendo UI for JQuery and would like to bind the following querystring (generated by default from the grid widget):
skip=0&page=1&filter[filters][0][value]=Rare Diseases&filter[filters][0][operator]=eq&filter[filters][0][field]=keyword1.keywordValue&filter[logic]=or
to this model of an ASP.NET Core 3.1 webapp:
public
class
FSP
{
[JsonProperty(
"take"
)]
public
int
Take {
get
;
set
; }
[JsonProperty(
"skip"
)]
public
int
Skip {
get
;
set
; }
[JsonProperty(
"page"
)]
public
int
Page {
get
;
set
; }
[JsonProperty(
"pageSize"
)]
public
int
PageSize {
get
;
set
; }
[JsonProperty(
"filter"
)]
public
Dictionary<
string
,IEnumerable<Dictionary<
string
,
string
>>> Filter {
get
;
set
; }
}
All parameters of querystring are correctly mapped, except filter. Furthermore, I would like to avoid changing the querystring using the function transport.parameterMap.
Could you help me to find the error?
Thank you in advance.
Filippo
I noticed that if I take control of the grid view through the views.grid object of the FileManager and I enable filtering in the grid, there appear to be some issues
1. All filtering options seem to default to the text/string format instead of the format that should be defined in the model. The date created column for example, does not show a date picker.
2. The operators are missing.
Here is a link to an example I set up in the dojo: https://dojo.telerik.com/ACiDOsAs
Is this a bug or as intended, and am I missing anything to get filtering working?
Thanks.