hi,
Need your help.
I have a problem with kendoSortable and tabStrip.
when the direction in the page is right to left it does not work correctly.
I'm using your demo of kendoSortable with tabStrip from:
http://demos.telerik.com/kendo-ui/sortable/integration-tabstrip
just add to the body dir="rtl"
thanks
Hi! I was wondering what would be a more "proper" way of doing this.
I have a set of elements that have a boolean flag inside. What I was thinking is having a kendo window appear as popup, and having each element represented by a button, that can be toggled on or off by clicking it. Now, I don't want each click to issue an update request to the server, rather I'd like having a "batch" update of sorts where I have an "Ok" and "Cancel" button in the popup, much like the default Grid's popup editor.
What I've come up with is using a ListView instance and using the (undocumented?) kendoEditable widget, like this: https://dojo.telerik.com/EnepI
As you can see, it sort of works, but only once per item. The buttons get initialized with the k-state-disabled class if the model is disabled, and the toggle function gets called when you click on them. Now the thing is that the "change" event handler of the model tries to regenerate the HTML of the element, replaces the button for one that doesn't has the data-bind events bound. So further clicks don't call toggle, the k-state-disabled isn't toggled anymore and it doesn't produces notifications either.
I'm not sure I'm going at this from a good angle, any suggestions?
Hi, my Kendo UI version is 2017.3.913, my chrome version is 62.0.3202.94 .
What I want to do is Taiwan Calendar(MSDN: https://msdn.microsoft.com/en-us/library/system.globalization.taiwancalendar(v=vs.110).aspx )
Basically just minus 1911 from common era's year, example: select 2017/11/24, show as 106/11/24.
but still need keep duration as common era, can't use common era as Taiwan calendar ,
example: if input 11/24/106 to demo's date picker , it even doesn't support year before 1900...
Or, how to change actual year after I input/pick date?
Like, if I input 106/11/24, maybe can change it's actual year to 2017,
so user can see Taiwan calendar year, and program also can get common era date 2017/11/24.
Also, if user pick date 2017/11/24, change visible text to 106/11/24, but keep actual date type value as 2017/11/24.
If datepicker can't support this situation, maybe I just hide date picker's input and do a textbox myself,
and do text convert to date, date convert to text process or something...
Hi,
I am using following code to bind my grid, i want to change default date filter to "is before or equal to" instead of "is equal to" and i want to hide all remaining filter options except "is before or equal to" and "is after or equal to"
$(gridid).kendoGrid({
dataSource: {
data: dSource,
schema: {
model: {
fields: {
Title: { type: "string" },
Location: { type: "string" },
Status: { type: "string" },
StartDate: { type: "date" },
Start: { type: "date" }
}
}
},
pageSize: 10
},
pageable: true,
sortable: {
mode: "single"
},
filterable: {
mode: "row",
operators: {
string: {
contains: "Contains"
}
}
},
height: 450,
columns: [
{
field: "Title", title: "Title",
filterable: {
cell: {
operator: "contains"
}
}
},
{
field: "StartDate", title: "Start", template: "#= kendo.toString(Start, 'h:mm tt dd/MM/yy') #", width: "150px",
//filterable: {
// cell: {
// //template: datePicker,
// operator: {
// gte: "After or equal to",
// lte: "Before or equal to",
// eq: "On"
// }
// }
//}
},
]
});
How to get name of column selected.
When i click Germany or Mexico, i'd like to print 'Country'(column name).
onChange:function(e){
//get name of column selected
}
Hello.
I have a question about kendoui autocomplete and angularjs. I need to start the search when the user press enter how can i accomplish that?
Thx for the help.
The numericTextBox control gets the old value, if one inputs a new number directly in the textbox field and then leaves the controls. It works only correctly, if the value is selected by spin buttons. I created a sample:
http://dojo.telerik.com/aTuBI
Am I doing something wrong?