here is the example the column is jumping to right and left...
Hello Team,
I need to automatically set a value of a second date picker based on the value of the first date picker. In this case how can I add 3 months to the value of date1 and show it on date2.
I'm still starting out as a developer any help would be appreciated. Thanks in advance!
JQuery:
function toggleAssigntype() {
var assignTypeVal = $("#TypeOfAssignmentId").data("kendoComboBox").text();
var date1 = $("#MobilizationDate").val(); // value format "mm/dd/yyyy"
var date2 = $("#DemobilizationDate").val();
var addmonths = "03/00/0000";
var addyear = "00/00/0001";
if (assignTypeVal == "RFT") {
//should add 3 months to demobilization date
$("#OtFactor").data("kendoNumericTextBox").enable(false);
$("#DemobilizationDate").data("kendoDatePicker").value(date1+addmonths);
}
else {
$("#OtFactor").data("kendoNumericTextBox").enable(false);
}
};
HI,
We upgraded the kendo-dropdown from "@progress/kendo-angular-dropdowns": "5.0.0" to "@progress/kendo-angular-dropdowns": "7.0.0", After the upgrade we are seeing an empty row in the dropdown. This was not the cse in the previous version.
line.
When I installed the trial "Progress" control panel along with WinForms UI trial, it forces me to enter my elevated credentials and it only appears in the toolbox while I am using the same elevated user's install of Visual Studio.
As I do not have a visual studio license on that account, this is problematic for attempting to use the trial. Nonetheless, the installation of Progress forces me to use an elevated account.
Is it possible to utilize the trial without using an admin account to install? It immediately prompts for these credentials when running: TelerikUIForWinFormsSetup.exe
I am using Kendo UI with ASP.NET MVC. There are 6 dropdowns on the home page, taking a lot of time to load the data, 45 seconds. Data is not large.
This is how all the dropdown are written:
@(Html.Kendo().ComboBoxFor(model => model.ProductId)
.Name("GreenProduct")
.DataTextField("Name")
.DataValueField("ProductId")
.AutoBind(false)
.DataSource(datasource => datasource
.Read(read => read
.Action("GetProductForProject", "Product")
.Data("hierarchy.filterProduct")
.Type(HttpVerbs.Post)
)
.ServerFiltering(true)
)
.Filter(FilterType.Contains)
.Suggest(false)
.Delay(0)
.HtmlAttributes(new { style = "width:100%" })
)
I don't want to load data on dropdowns on page load. If data loading on dropdown click that will also be ok. How can I fix this ?
Hi good day,
I would like to asks if there is a way to modified the loader of RadListView when triggering the IsLoadOnDemandActive?
Because my issue was the loader in IOS is not really visible to the screen altho its there but its barely seen(you can see in the attached files)
Btw this is on Xamarin.
Regards
Redner
Hi,
I am using kendoDropDownList in my application. I am trying to get and set values and text using Value() and Text() methods of kendodropdownlist. But while trying to get and set those values I am getting below error. Can you please let me know how to check if a kendodropdownlist has been intialized or not. I have tried checking undefined but somehow it still throws the same error.
reportParameter PropertyChanged event handler not working, please help
our application is using this version of telerik -- "telerikReportViewer-12.0.18.125.min.js"
Here is a sample of my code
Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
reportParameter1.PropertyChanged += ReportParameter1_PropertyChanged;
private void ReportParameter1_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
//some code removed
}
A break point in ReportParameter1_PropertyChanged is never hit; do you have a SDK or some code snipping of how this event handler is used and how it is called?