Hi,
I'm currently thinking about purchasing theDevCraft Complete bundle.
I'm developping a WPF .NET application which will be deployed on several computers for our users to use. It's not a web site so the application (containing the telerik library) will be deployed on each computer.
I understand I need a developer license for each developer. Do I need a license for each user or just purchasing the developer licenses enough for deployment ?
Thanks
Hello,
Hi, we are trying to migrate our web application which uses telerik UI web form controls (ex: radlistbox,RadComboBox,Radbutton, telerik ajaxcontrols) from .net framework 4.5.2 to .net 5.
1. Could you please confirm if we can make use of existing telerik dlls in .net core?
2. If not, please let us the alternate way to replace the telerik controls in .net5 with existing license.
This is my aspx file.
<telerik:RadGrid RenderMode="Lightweight" runat="server" ID="RadGrid2"
ShowStatusBar="true" ClientSettings-Scrolling-AllowScroll="true" AllowPaging="True" AllowSorting="true"
OnNeedDataSource="RadGrid2_NeedDataSource" AllowMultiRowSelection="true" Width="1500px" AllowFilteringByColumn="true" CssClass="RadGrid">
<MasterTableView PageSize="10">
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn">
</telerik:GridClientSelectColumn>
</Columns>
</MasterTableView>
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="True"></Selecting>
<ClientEvents OnRowMouseOver="demo.RowMouseOver" />
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true"></Scrolling>
<Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" />
<ClientEvents OnRowClick="toggleSelection" />
<Scrolling AllowScroll="true" UseStaticHeaders="true" />
</ClientSettings>
<HeaderStyle Width="225px"></HeaderStyle>
This is my .cs file
protected void RadGrid1_PreRender(object sender, System.EventArgs e)
Hi,
Whenever I add any function to the radgrid such as checkbox column then that grid stops working like the filter function in that grid stops working plus the page next and previous function also stop working. What would be the problem? Can anyone help me fix this issue?
Hello all,
i want to add column dynalically to the RadGridView with setting width programatically.
Using below code i am not able set the width of column width inside RadGridView in wpf application.
RadgridView in telerik does not pick the column column specified in the code instead it opens proportionaloity to grid size.
Can you please help regarding how to set the column width programatically.
GridViewDataColumn col = new GridViewDataColumn();
col.Header = "Order Number";
col.UniqueName = "TRP";
col.Width = 20 ;
OpenProcsGridView.Columns.Add(col);
the code above does not set the columnwidth and radgrid view open the column width proportionality to grid size .
can we customize the column width acc to user wants
GridViewDataColumn col = new GridViewDataColumn();
col.Header = "Order Number";
col.UniqueName = "TRP";
col.Width = 20;
OpenProcsGridView.Columns.Add(col);
it does not set the col width to 20 and automatically open the radgridview with default size/header text size\proportiaonally to grid size.
Can you please help that how to set a column width in a customeized way.