When selected weekly like the picture,
If didn't checked any day of the week can't that the event save and need to alert a message
Hi,
I'm using AngularJS and with the Kendo MultiSelect control.
I am setting the placeholder via the selectOptions like the following
$scope.selectOptions = {
placeholder: "Search for workitem by reference or property",
dataTextField: "title",
dataValueField: "reference",
valuePrimitive: true,
However, I would like the placeholder value to be responsive. i.e.
if @media (min-width: 480px) then text is "Search for workitem by reference or property"
if @media (max-width: 480px) then text is "Search for workitem"
What would be the correct way of achieving this?
Hi,
Right now, I'm struggling to implement a custom dropdown filter for a column which displays numerical data. The dropdown doesn't end up getting populated with any of the data from that column. I modified a dojo to demonstrate what I'm talking about. In this dojo, no data displays in the dropdown filter for "Freight". I'm struggling to figure out why this is not working.
http://dojo.telerik.com/ewesa
Thanks for your help!
Hi.
I have a treeview of menus in my application. But in the other way I have a kendoMobileScrollView because my tree of menus also can be edited in visual mode.
When I change to visual way getting the datasource from my treeview it works well. But my actual problem is when I reorder the dataSource(reordering the indexs) and then try to apply the changes like this: "$("#tree").getKendoTreeView().setDataSource.data($("#tree").getKendoTreeView().dataSource.data())", it reorders but childs don't open.
Any solutions?
Hello,
Currently, I am centering the content of the diagram using:
diagram.bringIntoView(diagram.shapes);
However, I would like the shapes to be vertically aligned to the top. So horizontally centered, but vertically aligned at the top.
How would I achieve this?
Thanks.
Hi guys I need help trying to figure out how to relate scale to marker locations.
Here is an example of what is required.
From a center point place a distinct marker defining the center marker. Allow a search radius in miles from that center point. A good example is "You are Here" and within a 50 mile radius there are x number of markers. As the radius becomes larger the default zoom scale zoom: 10 for instance.
It would be ideal if there were a way to auto adjust the scale to display zoom scale based on markers that are not visible under the current scale.
So if a user had previously entered in a 50 mile radius search and then they performed a 150 mile radius search the map's zoom scale would auto adjust so that the markers at 150 miles all show on the map. The user of course would then have the ability to zoom in or zoom out accordingly but the max zoom allowed would cover all markers in the 150 mile radius. In other words I would not want the user to be able to zoom out and see the entire US or World if the search radius didn't encompass the entire US in miles.
Any help you could provide would be greatly appreciated.
Hi,
I'm not sure whether or not this has been asked but I'll ask the question nonetheless. I have a button to which I have tied a contextmenu. I would like the contextmenu to be align at the bottom of the button with the top right corner aligned to the bottom right of the button. As far as I can tell this behavior is not supported by the contextmenu API. I have managed to get a workaround working:
http://dojo.telerik.com/aSUlI/10
This workaround is not ideal since the repositioning of the contextmenu wrapper is done in the open event and you can see the contextmenu move from the original position to the adjusted position. Is there a better way to this?
Greetings,
Ron
Hello,
I am using the range slider via MVVM. I noticed that when i define the width via inline style on the div that sets the range slider, the tick marks disappear. However, if the width is removed, the tick marks appear. Please advise?
Edit: My range slider is sitting within a kendo template. I have attached a snippet of my code
<
script
type
=
"text/x-kendo-template"
id
=
"filterAgeTemplate"
>
<
div
class
=
"item--agerange"
>
<
div
class
=
"agerange-wrap"
>
<
div
data-role
=
"rangeslider"
data-small-step
=
"1"
data-large-step
=
"10"
data-min
=
"1"
data-max
=
"100"
data-bind
=
"value: ageRange, events: { change: vm_onAgeSelectorChange }"
id
=
"panel-filter__agerange"
style
=
"width:160px"
>
<
input
/>
<
input
/>
</
div
>
<
div
class
=
"agerange-title"
>Age Range</
div
>
</
div
>
<
div
class
=
"agerange-btns "
>
<
button
class
=
"button button__gray-outline"
><
span
>Reset</
span
></
button
>
</
div
>
</
div
>
</
script
>