Telerik Forums
Kendo UI for jQuery Forum
1 answer
591 views

Hello Telerik,

I want to do some change in Kendo UI calendar like...Date selection colour, date text colour change and Header /footer / Background colour changes.

Please let me know how can I do this.

Thanks

Iliana Dyankova
Telerik team
 answered on 17 Jun 2016
1 answer
449 views

I am using the "row" mode for my grid filters (http://demos.telerik.com/kendo-ui/grid/filter-row). I have a column that is a boolean and it looks like Kendo places the label before the radio button. Here's an example of what I'm seeing: http://dojo.telerik.com/OJEWU

Is there a way to configure the radio buttons from being on the right side of the label to being on the left side?

Iliana Dyankova
Telerik team
 answered on 17 Jun 2016
3 answers
147 views

Hello,

I would like to report a filtering issue or ask if it is a normal functionality and why it is.
Let's suppose we have a grid with 'persons' data and there is a column age. If we try to filter the grid by age (For instance there are check boxes with the different ages into the grid) and select age 28 and 30. Then all persons with age 28 and 30 will be shown. Now if we try to deselect ages 28 and 30 and click the 'Filter' button then nothing happens(all check boxes are now deselected), the filtered result is still out there. When we just click 'Clear' button then all data is shown again as expected in the previous step. This could be seen in the example here: http://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes with unit price

Thanks!

Stefan
Telerik team
 answered on 17 Jun 2016
3 answers
522 views

Sorry if this is a repeat. What is the best way to set the autocomplete datasource after the page loads in a document.ready function (not waiting for the user to click on the input)?

I'm using mvc/razor.

 

Thanks

Daniel
Telerik team
 answered on 17 Jun 2016
5 answers
455 views
The reason I want an editor is to add rich content BUT not unsustainable content. Because the way we build sites includes skinning things like choosing fonts and colors make content a heavy issue when updating the skin. If the custom colors selected don't match then content conflicts with the new look and feel and thus makes things less sustainable.

My resolution is to use styles instead of colors and/or font selections. Can we put up some nice clarification in the docs on how to modify and work with the toolbar and customize it towards these goals?

Extending the editor... I also want to be able to say drop a template inside the editor. Another thing that would be great is we often work with 960 Grid layouts. It would be great to be able to manage content for those scenarios. I am not asking Kendo to build in all these features but it would be superb if we had an idea how to extend these functionalities. We liked the work by Jay Slavat and his MarkeItUp! editor but he did not have enough support to build it out to that level and retired active development. Certainly I am not after a code editor here but the ability to build some of the extension plugins for the editor would be a WIN WIN.
Ianko
Telerik team
 answered on 17 Jun 2016
3 answers
957 views

Hi,

I am new to Telerik, and we are evaluating the Kendo UI. I was checking the date picker and time picker and I noticed that the user can enter any value in the text without any validation. Is there an option to retstrict invalid date for date picker and time for time picker?

 

Thank you in advance

Georgi Krustev
Telerik team
 answered on 17 Jun 2016
4 answers
235 views

Hi, we are developing a component where we use nested Kendo UI Windows. Attached picture shows what we need. Following is the functionality.

On clicking of "Button1" we need to create kendo windows (Modal1,Modal2 etc) within the div (TotalContainer). If the width exceeds  div width scroll bar should appear. Modal windows should be draggable within TotalContainer. Similarly if we click on "Button2" we need to create nested windows(submodal1,submodal2 etc ) with in Modal1. If the width increases Modal1 width scroll bar should appear. And all the submodals should be draggable within Modal1 itself.

We have achieved the above functionality, but on dragging any SubModal entire Modal1 is being dragged. We are unable to drag SubModal1 alone within Modal1.

Attached is the code which we have developed.

 

Thanks in advance

 

Mounika
Top achievements
Rank 1
 answered on 17 Jun 2016
2 answers
323 views

Hello,

Is there any sort of callback that can be used with kendo.saveAs?

Specifically, we are using kendo.drawing.exportPDF and then calling kendo.saveAs, and would like to know when saveAs completes.  When kendo.saveAs uses a proxyURL, the user is often waiting on the file to come back from the server and we would like some way to inform the user of the progress or completion.

If there isn't a callback, is there a recommended way of approaching this?

Thanks for you help,

Jeff

DVS InteleStream
Top achievements
Rank 1
 answered on 16 Jun 2016
0 answers
95 views

2nd Grid is not refreshing.

Here is part of my code:

1st grid:

@(Html.Kendo().Grid<OpenInvoicesInfo>()

      .Name("OpenInvoiceGrid")
      .Events(e => e.DataBound("LineItems_Databound"))
      .ColumnMenu(i => i.Columns(false))
      .Columns(columns =>
      {
          columns.Bound(p => p.INVOICE).ClientTemplate("<input type='checkbox' value='#= INVOICE #' class='testclass'  />").Width(4);
          columns.Bound(i => i.INVOICE).Title("Invoice").Width(15);
          columns.Bound(i => i.ORDER_NBR).Title("Order").Width(10);

...

      .Scrollable()
      .ToolBar(i => { i.Custom().Text("Get All Invoices Comments").Url("javascript:GetAllInvoicesComments();"); })
      .Sortable()
      .Filterable()
      .DataSource(dataSource => dataSource
          .Ajax().UseJniErrorHandler()
          .PageSize(8)
          .Read(read => read.Action("GetOpenInvoices", "Maint", new { cust = Request.QueryString["cust"] }))
      )

 

2nd grid:

@(Html.Kendo().Grid<CustomerComments>()
      .Name("CustomerCommentsGrid")
      .AutoBind(false)
      .Columns(columns =>
      {
          columns.Bound(i => i.Invoice).Title("Invoice").Width(15);
          columns.Bound(i => i.Comment).Title("Comment").Width(40);

      }).Pageable(pageable => pageable
          .Refresh(true)
      )
      .Scrollable()
      .Sortable()
      .Filterable()
      .DataSource(dataSource => dataSource
          .Ajax().UseJniErrorHandler()
          .PageSize(10)
          //.Read(read => read.Action("GetCustomerComments", "Maint", new { invoices = "fail" }))
      )
)

 

<script type="text/javascript">

    function GetAllInvoicesComments() {
            var result = [];
            var items = $("#OpenInvoiceGrid").find(".testclass").filter(":checked");
            items.each(function () {
                result.push({
                    Value: $(this).val(),
                    Checked: true
                });
            });

            var invoicesList = "'";

            for (var i = 0; i < result.length; i++) {
                invoicesList = invoicesList + result[i].Value.trim() + '\',\'';
            }
            
            invoicesList = invoicesList.substring(0, invoicesList.length - 2);

            $.ajax({
                url: webManager.resolveUrl("~/maint/GetCustomerComments"), 
                method: "POST",
                data: { invoices: invoicesList },
                success: function () {
                    var grid = $('#CustomerCommentsGrid').data('kendoGrid');
                    grid.dataSource.read();
                    grid.refresh();
                    alert('success');
                },
                error: function () {
                    alert('an error occurred');
                }

            });
        }

 

Any help will be appreciated. Waiting for any replies.

 

Thank you.

Gaurav
Top achievements
Rank 1
 asked on 16 Jun 2016
2 answers
652 views

Hi.

I have a Grid with a custom command button and when I click it, I want to open a context menu.  I created this (http://dojo.telerik.com/@kristjk/UNOwE) which has a Grid, similar to mine, and a custom command button as the last cell in the row.

How would I go about showing a context menu when I click it and not show it on right-click ?

 

Best regards,
Kalli

Kalli Kaldi
Top achievements
Rank 1
 answered on 16 Jun 2016
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
Drag and Drop
Application
Map
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
DropDownTree
ListBox
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
Styling
ColorPicker
Pager
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
Licensing
PivotGridV2
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
LLM Kit
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?