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?
While uploading multiple files in Async due to the slow internet connection it gave connection errors and file uploading failed and asked to retry the file.
Is there any solution to my problem???
1 more thing can I upload multiple files synchronously???
Hi team,
I'm using Sparkline option to plot 100% stacked bar graph as it has to be very small to fit in my screen.
But I see the values are not plotted evenly as expected
As in the above snap, the 70% and 20% looks almost similar interval. I'm attaching the code below. Kindly help me how to handle this.
CSS to adjust width:
Hello does anyone else have an issue with the latest FiddlerCore 5.0.2 not decoding responses correctly?
It captures HTTPS traffic fine but runing the session.utilDecodeResponse() method returns garbage.
Interestingly the windows app works fine
Any thoughts?