Quantcast
Channel: Telerik Forums RSS
Viewing all 78072 articles
Browse latest View live

RadioButtonlList lost the dot when its selected a item, in a edittemplate

$
0
0

Thanks for awnser

I've try to use 2 RadAjaxPanel insted RadajaxManager, 1 panel for the radgrid, and 2 for the ValidationSummary. but with this the ValidationSummary does not works.

Even I've try to use EnableAJAX="true" Radgrid property

so, after a lot of testing in diferents ways, finally I change the 1 radiobuttonlist with a few radiobuttons, and manipulating the selected radiobutton in server side, works similar.

grettings, thanks


vertical scrollbar width in chrome and safari

$
0
0
Hi Joao,

I would suggest you to upgrade the applictaion to the latest official release and see how it goes.

Regards,
Maria Ilieva
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.

Model property not set when bound to object

$
0
0

I hadn't noticed that the sample you sent had the ID set to a Guid using the HtmlAttributes. Now I see.

Thanks for the help; I think I have this all working now.

GridView Spinner doesn't hide away (IsBusy)

$
0
0
Hello Vitor,

If you want to display the BusyIndicator when grouping and expanding the groups, you can use the following event handlers, which seem to be working fine at my end:

public MainWindow()
{
    InitializeComponent();
    DataContext = new ViewModel();
    var view = (this.DataContext as ViewModel).View;
    view.ItemsLoading += View_ItemsLoading;
    view.ItemsLoaded += View_ItemsLoaded;
    this.RadGridView.Grouping += RadGridView_Grouping;
    this.RadGridView.Grouped += RadGridView_Grouped;
    this.RadGridView.GroupRowIsExpandedChanging += RadGridView_GroupRowIsExpandedChanging;
    this.RadGridView.GroupRowIsExpandedChanged += RadGridView_GroupRowIsExpandedChanged;
}
 
private void RadGridView_GroupRowIsExpandedChanged(object sender, Telerik.Windows.Controls.GridView.GroupRowEventArgs e)
{
    this.busyIndicator.IsBusy = false;
}
 
private void RadGridView_GroupRowIsExpandedChanging(object sender, Telerik.Windows.Controls.GridView.GroupRowCancelEventArgs e)
{
    this.busyIndicator.IsBusy = true;
}
 
private void RadGridView_Grouped(object sender, GridViewGroupedEventArgs e)
{
    this.busyIndicator.IsBusy = false;
}
 
private void RadGridView_Grouping(object sender, GridViewGroupingEventArgs e)
{
    this.busyIndicator.IsBusy = true;
}
 
private void View_ItemsLoaded(object sender, VirtualQueryableCollectionViewItemsLoadedEventArgs e)
{
    this.busyIndicator.IsBusy = false;
}
 
private void View_ItemsLoading(object sender, VirtualQueryableCollectionViewItemsLoadingEventArgs e)
{
    this.busyIndicator.IsBusy = true;
}

I've attached a modified version of my sample project to demonstrate this. Could you verify that you're using the same approach? 

Regards,
Dilyan Traykov
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.

Export a Grid to Excel using xlt Template

$
0
0

Hello Stefan,

Applying a template to the exported Excel sheet is currently not supported by the Grid.

Regards,
Dimiter Madjarov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 

Chinese IME

$
0
0

Hi,

I cannot use Chinese IME with RadMaskedTextInput. I tried Microsoft Pinyin as well as Microsoft Quick with no good results. OnLostFocus the control is cleared and ArgumentOutOfRangeException is thrown...

at System.Text.StringBuilder.Insert(Int32 index, String value)

When the control regains focus the Chinese characters are show again but the Value property is never updated...

 

Are there any workarounds? Any suggestions would great.

Thanks!

 

Receiving the following error: sds:SessionDataSource designer file failed Unknown Server Tag

$
0
0
Hello Daniel,

Simply replace the SessionDataSource with asp:SqlDataSource and remove the DisplayWarning="false"   and PrimaryKeyFields="ID" properties, in order to get the demo locally runnable.

Hope this would help.

Regards,
Nencho
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.

FilterExpression blank

$
0
0

Hi

On one particular page I am having a problem with filters in a RadGrid.  I have another page with a similar setup that works fine.  

I am finding that when a user enters a filter value the post back happens as expected but the filter value MasterTableView.FilterExpression is empty.  Oddly the grid still seems to do a client side filter but there is no server filter value entered.

Any suggestions as to what could cause this? I've been looking for the various differences in the pages and am stumped on it!

Regards

Jon

 

Select All items after data is read

$
0
0

Yeah I saw this article and tried to implement.  Either my javascript/jquery is weak or  there is something I'm missing about this dataSource structure.  So my routine looks like this:

function selectAllBenchmarks()
{
var multiselect = $("#Benchmarks").data("kendoMultiSelect");
//multiselect.wrapper.find(".k-multiselect-wrap").removeClass("floatWrap").addClass("k-floatwrap");
var all = $.map(multiselect.dataSource.data(), function (dataItem) {
return dataItem.value;
});
multiselect.value(all);
}

I'm calling it on the dataBound event and I've stepped through it.  It hits the map line and then skips down to the multiselect.value(all) as if the multiselect.dataSource.data() is empty but there are 6 items in my multiselect afterward.  Am I calling it on the wrong event or am I setting my multiselect incorrectly?

 

Thanks for help

Lee

Events order for a Radgrid inside a asp Repeater

GridView Filtering - Distinct values not displayed

$
0
0
Hi Robert,

I have tried to reproduce the problem you report but I was not able to. I have attached a sample project which was created based on your code snippets. Please review it and let me know if I am missing something.

Regards,
Yoan
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.

I can't map RadGridView.AddingNewDataItem event to command in viewmodel in my Prism 6 application.

$
0
0
Hello Eugene,

I'm attaching a sample project where I tried to reproduce your scenario. However, the command is successfully bound to the AddingNewDataItem event on my side.

Could you please have a look at the attached project and let me know if I'm missing something? 

Regards,
Dilyan Traykov
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.

Reusing test steps in multiple tests

$
0
0
Hello Can,

Thank you for your interest in Telerik Test Studio. 

The information you share wouldn't be enough to figure out the best solution for your scenario. Please elaborate more on the desired outcome for a bound test/step. Do you want to run the same test against different web pages? Please let me know of the details of your scenario so that I could advise you the best way. 

Please bear in mind it is recommended to submit new support/forum tickets for each new issue you face as it would be easier for us to keep track of any detected unusual behavior. 

Looking forward to hearing from you. 

Regards,
Elena Tsvetkova
Telerik
 
The New Release of Telerik Test Studio Is Here! Download, install,
and send us your feedback!

Reusable CellStyleSelector

$
0
0
Hi Vitor,

In such case, you can use a GridViewDataColumn and in its CellTemplate to add a Converter that returns a certain image based on the boolean value. The following thread should be helpful - Template Column show image.

Regards,
Stefan Nenchev
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.

Y axis value for chart are showing decimals

$
0
0

Hello, Megharaj,

TKChartAxis is the base class for all axes in TKChart. You should cast your axis to TKChartNumericAxis and the set its majorTickInterval property. Consider the code:

(yAxis as! TKChartNumericAxis).majorTickInterval = 3

Regards, Adrian
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items

Latest online resources for RadControls for ASP.NET AJAX

$
0
0
Hi everyone,

Below you can find the list of latest resource for Telerik UI for ASP.NET AJAX suite. Resources are posted by chronological order.

To navigate to the latest one you can use the link below:

Link to Latest Online Resources (08.04.2016)






Online Resources from 23.11.2012:

New Articles

RadEditor
: Inner toolbars are displayed in multiple lines
When there are CSS styles applied through global selectors (tag names) the elements in the RadEditor may not have the expected rendering.

RadMenu: Creating Context Menu at Runtime
Help article that describes how to create RadContextMenu at runtime.

Update Articles

RadInput:Understanding the Single Rendering HTML Output and CSS Styling
Updated almost the whole content.

RadPivotGrid: Range Grouping in RadPivotGrid
Added ShowGroupsWhenNoData property.

RadListBox
Added code examples in the following articles:

RadAsyncUpload
Added code examples in the following articles:

AngularJS Treeview with custom template

$
0
0

Hi,

I am developing an application using angularjs and kendo ui. I have a requirement to apply custom template to the treeview based on the type of data.

For eg: consider the tree below:

A

     1

     2

B

     3

     4

 

I need to use different templates for letters and numbers. I was trying to define a template selector from the control but it did not work. Is there any sample using angularjs? Most of the code samples are not mentioning what attributes can be used from angular.

 

Appreciate any help.

 

Thanks

Checkbox uses changeEditor, but need to call other code

$
0
0
Hi Jeremy,

A possible solution is to update the cell value by calling changeCellValue method and pass the cell element and the new value. Please check out the following help article for more information. Additionally you can examine the following how to article for more details.

Regards,
Kostadin
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.

License per developer

$
0
0
Hi Adham,

I am closing this ticket as a duplicate. I have sent your information to your Sales Rep, Brandon. He will reach out to you directly. Please let me know if you need anything else.


Regards,
Jennifer
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.

Latest online resources for RadControls for ASP.NET AJAX

$
0
0
RadEditor
Scale Map to Markers
A new article that illustrates how you can programmatically scale RadMap based on the Markers collection.

Get Client-side Reference to a Control Object
A new article that shows how to get a client-side reference to a Telerik UI for ASP.NET AJAX control and use its clients-side API.

Strip HTML on Paste
A new article that shows how to strip HTML tags from content that is pasted in RadEditor.

Print Content with Styles
A new article that shows how to print the content of the editor along with the styles.

Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Viewing all 78072 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>