Telerik Forums
Kendo UI for jQuery Forum
2 answers
2.2K+ views

Hi,

I'm trying to change kendo grid Edit & create button popup titles,

both buttons popups same win but need to change edit button popup title as exists (Edit), & create(Add new record) button popup title to Add new record,

 

please help me to do this change...

Abdulsalam Elsharif
Top achievements
Rank 2
Iron
Iron
 answered on 08 Sep 2021
1 answer
866 views

Hi

I am working on Multiselect Customizing Template given on https://demos.telerik.com/kendo-ui/multiselect/template

I followed the example and created the same into my project. But the issue i am facing is that I have to copy the css as given in the example and add it into my css file.

Now talking about the css linked with #customers-list

This id is generated automatically by kendo.

Now if i want to add multiselect at multiple places into my project i have to add new id dependency into the css for it to support the image styling with the text.

Is there any way that i only create the CSS ones and use it for other select boxes as well

CSS in example:

 #customers-list .k-item {
                    line-height: 1em;
                    min-width: 300px;
                }
                
                /* Material Theme padding adjustment*/
                
                .k-material #customers-list .k-item,
                .k-material #customers-list .k-item.k-state-hover,
                .k-materialblack #customers-list .k-item,
                .k-materialblack #customers-list .k-item.k-state-hover {
                    padding-left: 5px;
                    border-left: 0;
                }

                #customers-list .k-item > span {
                    -webkit-box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                    display: inline-block;
                    vertical-align: top;
                    margin: 20px 10px 10px 5px;
                }

                #customers-list .k-item > span:first-child {
                    -moz-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
                    -webkit-box-shadow: inset 0 0 30px rgba(0,0,0,.3);
                    box-shadow: inset 0 0 30px rgba(0,0,0,.3);
                    margin: 10px;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    background-size: 100%;
                    background-repeat: no-repeat;
                }

                #customers-list h3 {
                    font-size: 1.2em;
                    font-weight: normal;
                    margin: 0 0 1px 0;
                    padding: 0;
                }

                #customers-list p {
                    margin: 0;
                    padding: 0;
                    font-size: .8em;
                }

Neli
Telerik team
 answered on 08 Sep 2021
1 answer
89 views
https://dojo.telerik.com/utOdediD/18
Neli
Telerik team
 answered on 08 Sep 2021
1 answer
1.4K+ views

I have a grid where I have some buttons with icons for every row. For those buttons I need to display some tooltips. To do this I am using the kendo tooltip however when the user hovers the button and after the tooltip is displayed the user clicks on the button, the button is hidden but the tooltip is still shown.

How can I close the tooltip when the element is no longer visible on the screen?

Neli
Telerik team
 answered on 08 Sep 2021
0 answers
187 views
have no idea from what it depends, but it would be great to understand
Aleksandr
Top achievements
Rank 1
Bronze
Bronze
Veteran
 asked on 07 Sep 2021
1 answer
260 views

kendo.parseDate("/Date(-62135537400000)/")

 

it returns Mon Jan 01 0001 08:37:02 GMT-0752 (Pacific Standard Time) I need the time and it is 8:30 it is adding 7 minutes, start happening recently it was working on the page since 2018.

 

 

Georgi Denchev
Telerik team
 answered on 07 Sep 2021
4 answers
168 views
Hi,
I'm working in a form that will look up the value in textbox 1 and return the corresponding value in textbox 2, similar to excel vlookup. For example, in text box 1, the user may type in 2112, and I'd like for it to look up 2112 in a list and the corresponding value would be "Travel" and it places that in text box 2. I'm not sure what are the terms I should be googling to learn more about how to accomplish this. Any ideas? Thanks!
StorePlay
Top achievements
Rank 1
Iron
 answered on 06 Sep 2021
1 answer
282 views

Hi guys

I develop scheduler's week, day.

for example

sunday is rest day.

and monday ~ saturday is work day.

working hours vary by day of the week.

like this below.

(mon : 10:00~12:00, lunch time: 12:00~13:00, 13:00~17:.00)

(thursday: 10:00~12:00, lunch time: 12:00~13:00, 13:00~18:00)

 

How to describe work time and lunch time?

I want that lunch time 's background color is grey. and event disabled,

and not work time is disabled too.

 

I read week day's min, max date

min date is startTime

max date is endTime.

 

please check and response...

please please..

 

regards,

Neli
Telerik team
 answered on 06 Sep 2021
12 answers
736 views
Hi all, I am hoping to get some valuable feedback and answers from this forum, since I am at wits end, trying to figure out this error:  =)

I have an MVC4 application using the Kendo Grid and I am trying to implement something similar to the example given here:

http://demos.telerik.com/kendo-ui/web/grid/local-data.html

The demo has a code snippet like this:
@model IEnumerable<Kendo.Mvc.Examples.Models.ProductViewModel>

@(Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
{
columns.Bound(p => p.ProductName).Title("Product Name");
columns.Bound(p => p.UnitPrice).Title("Unit Price").Width(130);
columns.Bound(p => p.UnitsInStock).Title("Units In Stock").Width(130);
columns.Bound(p => p.Discontinued).Width(130);
})
.Pageable()
.Sortable()
.Scrollable(scr=>scr.Height(430))
.Filterable()
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.ServerOperation(false)
)
)

and for the controller, like this:
using System.Web.Mvc;

namespace Kendo.Mvc.Examples.Controllers
{
public partial class GridController : Controller
{
public ActionResult Local_Data()
{
var model = productService.Read();

return View(model);
}
}
}

The grid in my application is bound from server side and would like to do the paging, sorting and etc from the client side once it's bound and displayed in the view. It is very much set up like the example given above. I tried to Google this hoping to get some tips and I stumbled upon this Telerik thread:

http://www.telerik.com/forums/grid-server-side-binding-and-client-side-paging-sorting-etc

The Telerik staff mentioned in this forum that "This can be achieved by setting DataSource ServerOperation setting to false and pass the data to the Grid constructor". So, I followed his advice and also followed the demo given, however, my grid is always failing and gives me an error about "maxJsonLength" property and JavaScript serializer. Any advice on how I go about this? I tried changing the maxJson length property in web.config, but that did not work.

So, is what I am trying to accomplish possible? Is there something I am missing? Thanks very much for your time and I look forward to the response(s).

Romel
Ivan Danchev
Telerik team
 updated answer on 06 Sep 2021
1 answer
65 views

Hi team,

Facing this issue after an upgrade of kendo to 2021.2.511

I am trying to use kendo window ui jquery as a popup. With the same methods and property of window ui i am not able to minimize the window on double click if once it is set to maximize 

Second time double click on the title window is minimizing the popup. But not first time

Tried a lot, but unable to find a solution for it. Request your help in guiding the same.

Attached is a screenshot reference to say, once the window is maximized, it is not minimising on first click of window title

Thanks,

Archana S







 



 

Neli
Telerik team
 answered on 06 Sep 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?