Telerik Forums
Kendo UI for jQuery Forum
1 answer
236 views

Hello,

I'm doing some research on behalf of my team and have been looking for documentation that discusses linking functionality from notification pop-ups. This may be an easy thing to do but I am not a programmer (sorry!).  Can anyone confirm that it is possible to embed links in the notifications? 

For example: Worker A completes work that automatically is assigned to Worker B.  When Worker A completes their work the system auto-generates a notification to Worker B letting them know work has been assigned to them.  Worker B can either hit the X to dismiss or click the body of the notification to link them to the application page that requires their attention. 

Any help on this is much appreciated!

Cheers

Stoyan
Telerik team
 answered on 26 Feb 2021
1 answer
208 views

You can insert data from google docs in kendo editor ? 

Please tell me what to do about this user data source.

Martin
Telerik team
 answered on 26 Feb 2021
6 answers
592 views
I have a kendo window with an editor that I open and close with an editor on it. I want to destory the editor when I close the window. They command executes without error, but the editor stays in place and the next time I get a second editor. I was worried it was the window, but added a second editor on my main page and got the same results. Each time the window is open another editor appears, when I close and reopen it just stacks another one in.

I am running: kendo.web.min.js v2012.3.1121

HTML: (This is the test Text Area and is not in the window div.)
        <div style="padding-top: 5px;">
            <asp:Label ID="Label4" class="filterCheckboxHeader" runat="server" Text="Email Body Test:"></asp:Label>
            <div>
                <textarea id="Textarea1" rows="10" cols="30" style="width:500px;height:300px">
                </textarea>
            </div>
        </div>

Window Open:

function labelEmail(trackingNumber) {
    var kendoWindow = $("#emailWindow").data("kendoWindow");
    kendoWindow.open();
    kendoWindow.center();
    kendoWindow.toFront();
    // This is the real one, in the window div
    $("#txtLabelEmail_Body").kendoEditor({
        width: "300px",
        height: "150px"
    });
    // This is the extra test one, not in the window div, they both behave the same.
    $("#Textarea1").kendoEditor({ 
        width: "300px",
        height: "150px"
    });
};

Window Close:
function labelEmail_Cancel() {
var kendoEditor = $("#txtLabelEmail_Body").data("kendoEditor");
kendoEditor.destroy();

var Textarea1 = $("#Textarea1").data("kendoEditor");
Textarea1.destroy();

var kendoWindow = $("#emailWindow").data("kendoWindow");
kendoWindow.close();
}

Thanks for the help.
Randy Miller

Dimo
Telerik team
 answered on 26 Feb 2021
1 answer
126 views
Kedno UI Filemanager custom delete command treeview folder not deleted from node and treeview datasource not refreshing.
Martin
Telerik team
 answered on 26 Feb 2021
1 answer
275 views

Hello,

we have just switched to this editor from Tiny MCE but it doesn't seem to offer the ability to create same page hyperlink anchor tags via the interface and our users are not confident to create them through the HTML code.

Am I correct that this functionality does not exist or am I missing something?

Thanks

Petar
Telerik team
 answered on 26 Feb 2021
2 answers
486 views

Dear Telerik-kendo team,

I need a help for a particular functionality I am trying to achieve using kendo UI for jquery - spreadsheet. Currently I am facing two problems while trying to do drag down and copy cell values.

Here are the steps I was doing:

1. sheet.range("C1:C" + totalRowsCount).wrap(true);

2. Insert a really long text inside a C column's cell. The text wraps well as I wanted.

3. Hold the bottom right point of the cell and drag down.

4. Now the other cells got the upper cell's text, but text is not auto wrapped. (problem 1)

5. As encountering with problem 1, I tried a solution, that I tried to get the selection from range and set the selected cell's rowHeight onChange event. But in the selection() method, I am only able to access the top cell's information, not those cell's whose row height needs to be adjusted.(problem 2)

Iffat
Top achievements
Rank 1
Veteran
 answered on 25 Feb 2021
1 answer
615 views
Hello
Is it possible to highlight the programmatically set date range ?
Here is demo:
https://demos.telerik.com/kendo-ui/daterangepicker/api
If u click 'Set Value' and after that click the Range Date Picker itself - these dates are not highlighted in the control.
Thank you
Mihaela
Telerik team
 answered on 25 Feb 2021
1 answer
215 views

I want to achieve the following output for Scheduler monthly view:

- Do not display individual event marks on day cells (I want day number to stay)
- Instead that display event count for that day (e.g. 150, 35)
- Change background color of grid cell based on the number of events per that day (e.g. green for < 30, yellow for > 30 and < 100 and red for > 100)

Does anyone know any example with above functionality - custom month view? Any tips?


Dimitar
Telerik team
 answered on 25 Feb 2021
4 answers
293 views

Hi,

 I would like to remove "Never" and "Yearly" from the recurrenceRule(Repeat) DropDown options.

 How can i do that?

 (I"m using angularJS)

 

Thanks,

 

Ido

Aleksandar
Telerik team
 answered on 25 Feb 2021
3 answers
1.6K+ views

I have an MVC page that is displaying certain data via a series of observable variables (or actually properties since it's an viewModel object).  All simple stuff as it relates to MVVM really.  Everything works really well.  Change the value of the variable, and the data in the appropriate spans within the page updates automagically.  Love it.

However, now I'm adding a Kendo Window, initially not visible when the page loads.  When the user presses a button, I want the window to open with a form for editing the data.  I've added the appropriate html inputs, and also added the data binding on the control to the same MVVM variables used to display on the page, but when I open the dialog, the data isn't populated with the MVVM variables that are otherwise displaying a-ok on the screen.

Sure, upon the opening of the window, I could use jQuery to populate the form, but I wanted to use the bound MVVM variables.

So is there a trick to this?  I'm no stranger to the concept of MVVM having used Knockout for a long while before switching to the Telerik MVVM.  I've been using it for close to a year, but always just to display data updates on a screen via an ajax call.  (after an AJAX call, setting the appropriate viewModel properties, and they update on the bound spans within the page).

Ianko
Telerik team
 answered on 25 Feb 2021
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
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?