Telerik Forums
Community Forums Forum
1 answer
509 views

I'm working with Telerik OpenAccess, giving support to a C# application.

In the logs of that application, I have seen a query, where the parameters are not filled in with values, just question marks.

Next to that, there is following line:

set event logging to all to see parameter values

What can I do as a support engineer in order to make the values visible (replace the question marks by real values)?

In another question on this site, I've seen following advise:

Set the property Enable data caching to False. The property can be found under Data section of Administration -> Settings -> Advanced menu.

How can I achieve this? (Where is the configuration "application" I can use for this?)

 

Thanks in advance

Viktor Zhivkov
Telerik team
 answered on 18 Oct 2021
2 answers
576 views

Hi,

I want to have a grid as attached in the image. Here for the rows where the value of Description field is blank I want to remove the add icon from the Add/Link Field for that row. And then enable the add icon again when something else selected for Description field.

How can I achieve this using Kendo React Grid?

Mansi
Top achievements
Rank 1
Iron
Iron
Iron
 updated answer on 11 Oct 2021
1 answer
162 views

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


Karina
Telerik team
 answered on 08 Oct 2021
1 answer
116 views

 

Hello,

I've been searching a lot for the right solution.

I have an old web application, witch uses Telerik RadComboBoxes in a updatepanel. The items in the combo are check boxes and every time I check one item I call a server side methode to update the data. My problem is that I need to keep the dropp dow list opened and I'm not able to acheave that, I tried with cancel the client event of closing, blur, click, but if I do so the server side methode is not called; another solution was to call a javascript method from the server side method, but I get null on the sender ; I've also trided to call a server side methode from the javascript method in the user control but it's not good beacause the method needs to be static and it's not a good solution for me beacause I have to change a lot in this old project.

I have attached a project with 2 comboBox has an exemple with the problem. If anyone has a solution for me I am all ears.

thank you for you time and help !

 

Mimi
Top achievements
Rank 1
 answered on 27 Sep 2021
1 answer
235 views

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.

Dilyan Traykov
Telerik team
 answered on 27 Sep 2021
0 answers
168 views
We are currently using .net framework with web forms for some of our applications which will probably stay that way in the near future.  But for newer projects, we are going to try and start using .net core technologies. We are a two developer shop and I was wondering if we wanted to leverage telerik tools, would I need both the asp.net ajax AND the .core libraries?  And then two licenses for each for the two developers?  Or is there a bundle for the two technologies so I would only need one license per developer. 
Ken
Top achievements
Rank 1
 asked on 03 Sep 2021
0 answers
138 views
How to replace display:"none" to display:'' " ? FiddlerScript
Aleksander
Top achievements
Rank 1
 asked on 02 Sep 2021
1 answer
571 views
When i am reording the column in radgridview WPF UI than the column collection items order in gridview is not changed.

How can i save the column latest order changed by the user in radgridview and display the same in the UI when the user opens.

My finding : "Column collection items order is not changed when i change the columns in ui of RADgridview ".

Can you please tell how can i save the latedst column order changed by the user in the UI.

Thanks in advance
Dilyan Traykov
Telerik team
 answered on 18 Aug 2021
1 answer
134 views

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)
        {
            RadGrid2.Items[4].SelectableMode = GridItemSelectableMode.None;
            RadGrid2.Items[5].SelectableMode = GridItemSelectableMode.None;
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            foreach (GridItem item in RadGrid2.MasterTableView.Items)
            {
                GridDataItem dataitem = (GridDataItem)item;
                TableCell cell = dataitem["ClientSelectColumn"];
                CheckBox checkBox = (CheckBox)cell.Controls[0];
                if (checkBox.Checked)
                {
                    string value = dataitem.GetDataKeyValue("SVC TAG").ToString();
                }
            }
        }                       
Rumen
Telerik team
 answered on 17 Aug 2021
0 answers
163 views

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?

Shweta
Top achievements
Rank 1
 asked on 13 Aug 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?