Telerik Forums
Kendo UI for jQuery Forum
1 answer
145 views

I bought this program for this calendar at the bottom

http://www.telerik.com/kendo-ui/calendar

It's so beautiful I have to have it!  But I'm stuck here

 If my product is installed, how do I open it?  How do I use it?  Help?

I'm really very technologically savvy but quite befuddled with this one.

 ​

Vasil Yordanov
Telerik team
 answered on 17 Aug 2015
3 answers
1.7K+ views
Hi,

I have a kendo grid in which i have filtering enabled. I have a check box,and when i uncheck it,i want the filtering to be disabled. And similarly,when i check it i want to enable it. How can i achieve it?

Regards,
Khushali
Dimo
Telerik team
 answered on 17 Aug 2015
3 answers
140 views
Hi,

(I use the following components: Kendo UI Professional, Angular JS, ASP.NET WebAPI with OData)

I have to build a grid that contains rows of articles. It is necessary that I have a autocomplete Box for the article number and the article description. 
The values for the articles(key, number, description) get loaded from an OData API. The challenge is that,
if I select an article number that the description must be selected equivalent. Same the other way round.

Does anyone know a nice workflow for this, from my knowledge this can only be done using JQuery, what I want to avoid as far as I can use Angular.

Thanks!
Vladimir Iliev
Telerik team
 answered on 17 Aug 2015
3 answers
488 views

Hello,

I am having a little problem. I am using the kendo grid widget and i use local array as my datasource. I am using batch editing. Whenever UnitPrice is modified, local array is updated and datasource read function is called to refresh the grid. The problem is the last row seems to have the dirty flag. I dont see any problem with what i am doing. Could you tell me why the last row has dirty flag?

I have created an example snippet in the following location.  I've also attached the file. http://dojo.telerik.com/@bat-erdene/EBego/2

Boyan Dimitrov
Telerik team
 answered on 17 Aug 2015
1 answer
284 views

The Kendo Grid Column MinScreenWidth setting works really well for grids taking up the full screen width (i.e. columns can be dynamically hidden/displayed as the screen width is shrunk/expanded)

However, I'm running a Kendo Grid inside a Kendo Splitter, and I'd like the grid to exhibit the same kind of functionality when the splitter width is varied.

Does anyone know of a way to achieve this?

Regards,

Chris

Kiril Nikolov
Telerik team
 answered on 17 Aug 2015
1 answer
213 views
I try to used Telerik.Web.UI -> RadHtmlChart and RangeBarSeries to implement chart as in attachment.



I have problem with FromField and ToField. This fields have DECIMAL type but i need DATETIME type.
Also i need to create "stacked" chart: all series located in the same column for specific category


If i used kendo i gain what i want (but i need use RadHtmlChart):


<script>
var data = [{
id: 1,
line: "Line1",
from: new Date("2014/01/01 11:30").getTime(),
to: new Date("2014/01/01 14:45").getTime(),
valueColor: "red"
}, {
id: 2,
line: "Line2",
from: new Date("2014/01/01 09:30").getTime(),
to: new Date("2014/01/01 09:45").getTime(),
valueColor: "green"
}, {
id: 3,
line: "Line2",
from: new Date("2014/01/01 09:45").getTime(),
to: new Date("2014/01/01 10:00").getTime(),
valueColor: "blue"
}, {
id: 4,
line: "Line2",
from: new Date("2014/01/01 10:00").getTime(),
to: new Date("2014/01/01 10:15").getTime(),
valueColor: "red"
}, {
id: 5,
line: "Line2",
from: new Date("2014/01/01 10:15").getTime(),
to: new Date("2014/01/01 14:00").getTime(),
valueColor: "green"
}, {
id: 6,
line: "Line2",
from: new Date("2014/01/01 15:15").getTime(),
to: new Date("2014/01/01 15:30").getTime(),
valueColor: "red"
}, {
id: 7,
line: "Line2",
from: new Date("2014/01/01 15:45").getTime(),
to: new Date("2014/01/01 16:00").getTime(),
valueColor: "red"
}];
$("#chart").kendoChart(
{
dataSource:
{
data: SqlDataSource1,
group: {
field: "id",
dir: "desc"
}
},
series:
[{
type: "rangeBar",
gap: 0.1,
fromField: "from",
toField: "to",
categoryField: "line",
spacing: -1,
colorField: "valueColor",
name: "Category: #: group.items[0].field #"
}],
valueAxis:
{
min: new Date("2014/01/01 08:00").getTime(),
max: new Date("2014/01/01 17:00").getTime(),
majorUnit: 60 * 60 * 1000, // 60 minutes in milliseconds
labels: {
template: "#= kendo.toString(new Date(value), 'HH:mm') #"
}
},
legend:
{
visible: true
}
});
</script>
Stamo Gochev
Telerik team
 answered on 17 Aug 2015
1 answer
119 views

When a TabStrip is used with bootstrap theme the widget switches to the first tab for a short period when selecting a tab in IE11.

To reproduce the issue try the basic example in http://demos.telerik.com/kendo-ui/tabstrip/index and select bootstrap theme.

 ​

Iliana Dyankova
Telerik team
 answered on 17 Aug 2015
3 answers
538 views

I am trying to create a page that asks generally when someone would be available during a work week independent of the actual day of year.  I would like to modify the work week schedule view to only have Mon, Tue, Wed, Thu, Fri in the header vs/ Mon M(onth)/D(ay), Tue M/D, ...

 How do I remove the M/D value and only keep the Day of Week abbreviation?

 

Thanks,

 John

Boyan Dimitrov
Telerik team
 answered on 17 Aug 2015
1 answer
143 views

Hi, 

 Is there an example of using the Grid with angular and signalR ? There is a example for Grid w/ angular and Grid w/ signalR but not both. Thanks.

 SJ

T. Tsonev
Telerik team
 answered on 17 Aug 2015
5 answers
584 views

Hello

 I'm using a TreeView that is working fine but I always got an error message when using the findByText function. It took my a good time to find out what the problem is: I am using a template on initializing the TreeView. If I disable/remove the template on initializing the TreeView the findByText function works great. If the template is active I got an error message on using findByText function:

[Error] TypeError: undefined is not an object (evaluating 'o.loaded')         kendo.all.min.js :38:19209 

 

var objectView = $("#treeview").data("kendoTreeView");

objectView.append({ text: "append1" }, $("#treeview .k-item:last"));     // --> Works with and without template

var foo = objectView.findByText("Game");
objectView.append({ text: "append2" }, test);    // --> Works only without template

 

DataSource used in TreeView:

var treeEmpty = [
{text: "Game",id: -1, type: "game", expanded: true, spriteCssClass: "fa fa-globe fa-fw", items: [
//{ text: "Mein Game", id: -2, type: "spot"},
    { text: "Spots", id: -2, type: "spot", spriteCssClass: "fa fa-map-marker fa-fw"},
{ text: "Characters", id: -3, type: "character", spriteCssClass: "fa fa-user fa-fw"},
{ text: "Items", id: -4, type: "item", spriteCssClass: "fa fa-key fa-fw"}
]
}
];

Template used in TreeView:

<script id="treeview-template" type="text/kendo-ui-template">
            #: item.text #
# item.id #
            # if (item.id < 0) { #        
<a class="fa fa-plus-circle fa-fw handpointer"> </a>
            # } #
        </script>

 

I must assume that the usage of a template in a TreeView changes the default structure so certain functions do not work anymore. How else can I append entries/items to TreeView when using a template?

Tayger
Top achievements
Rank 1
Iron
Iron
 answered on 15 Aug 2015
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?