Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
2.5K+ views
Dear Friend,

I am creating a entry screen using Telerik Rad Grid in VS 2012. I am using " Batch Edit" mode  of grid. I have requirement of few items whenever user will add row or edit column value. My requirements are...

1. My first column is "Row Number" in grid and I want to generate one sequential number (1,2,3...) automatically when user will add new row.
2. I have 3 columns (price,  number of items and Total Price). I want to automatically generate total Price whenever user will update price and number of items in columns. 

It's very urgent requirement so appreciating your fast response.  

Thanks & Regards,
Raj
roopsundar
Top achievements
Rank 1
 answered on 18 Aug 2017
1 answer
161 views

When pasting data into the Telerik Spreadsheet (using ctrl+v) I get the Page Unresponsive pop-up in Chrome and the Long Script running warning in Internet Explorer. This happens when pasting 3 columns of data (one string, two decimals) over 300 rows.

I have extended the number of rows using RowsCount="1000" in the telerik:RadSpreadsheet tag on the aspx page (.NET 4.0).

Any tips on:

1. Speeding up performance of the paste?

2. How to extend the time before Chrome shows the Page Unresponsive pop-up?  For up to 750 rows the paste will complete after 5 pop-ups are dismissed.

 

Thanks,

Rick

     

Rick
Top achievements
Rank 1
 answered on 18 Aug 2017
7 answers
192 views
Hi there,

I´m new to both ASP.Net and the controls from Telerik. I´m creating a web application which mainly consists of a RadSplitter with a RadPane (navigation) to the left and a RadPane (content) to the right. I have pre-populated the entire tree (since I want performance and no load-on-demand since we max are dealing with 100 nodes). Everything works smoothly but one thing:

When I´m using the event "OnNodeClick", the "content"-panel to the right should load a bunch of data and populate controls on the right panel. So each click on a node should load content to the pane to the right. I also want to be able to double click on a node to both expand the node and also load the content to the right pane. This does not work since two "OnNodeClick"´s are generated and the expand does not work. 

How do I solve this?

Thanks
Arun
Top achievements
Rank 1
 answered on 18 Aug 2017
1 answer
144 views

Hello,

When rendering a grid using Chrome for some reason the checkboxes are not visible (it's fine in firefox, ie 11, edge etc.) - though there are fairly significant differences between all of these usable.  The version of Chrome I'm using is 60.0.3112.90 (64-bit).  I'm not using any special styling or really any advanced techniques - pretty much stock standard grids.  Any help would be great.

Thanks

Vessy
Telerik team
 answered on 18 Aug 2017
3 answers
53 views

Okay I am sure this has been hammered in the forums, but searching has not pulled me back the desired help. We have a grid in a RadWizard. We do NOT want the grid to postback on switching the tabs in the wizard, coming to or going to a different tab. The data is loaded using the NeedDataSource method. I read where setting the EnableViewState=False, it should not hit the NeedDataSource again, after the initial load.

<telerik:RadGrid runat="server" RenderMode="Lightweight" AutoGenerateColumns="false" EnableGroupsExpandAll="true" AllowMultiRowSelection="true" >

 

Regardless of ViewState being true/false, the method NeedDataSource is still being hit, wiping out the GridClientSelectColumn, because of the databinding. We tried setting the RadWizard property RenderedSteps="All" and "Active", but it did not matter. We need the grid to load once and never be loaded again, which is wiping out the checks. This grid is not update-able, editable, its just read only, with the option to check the GridClientSelectColumn.

How can we make this grid load once and never rebind itself again?

 

<telerik:RadGrid runat="server" ID="RadGridFamily" RenderMode="Lightweight" AutoGenerateColumns="false" Height="300px" EnableGroupsExpandAll="true" AllowMultiRowSelection="true" >
                                            <ClientSettings AllowExpandCollapse="true" AllowGroupExpandCollapse="true">
                                                <Selecting AllowRowSelect="true" />
                                                <Scrolling AllowScroll="true" UseStaticHeaders="true" />                                               
                                              </ClientSettings>
                                            <GroupingSettings GroupByFieldsSeparator="      " />
<MasterTableView runat="server" DataKeyNames="FamilyId, MemberId" GroupLoadMode="Client" >
SDI
Top achievements
Rank 1
 answered on 18 Aug 2017
0 answers
86 views

I have this code in my C# code behind page:

protected void gvEmailRedirectMaint_UpdateCommand(object sender, Telerik.Web.UI.GridCommandEventArgs e)
        {
            GridEditableItem editItem = (GridEditableItem)e.Item;
            string ID = (editItem["ID"].Controls[0] as TextBox).Text;
            string RedirectEmailAddress = (editItem["RedirectEmailAddress"].Controls[0] as TextBox).Text;
            string ModifiedBy = userID;

            if ((e.Item is GridEditableItem) && (e.Item.IsInEditMode))
            {
                GridEditableItem edititem = (GridEditableItem)e.Item;
                Regex regex = new Regex(@"^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})$");

                TextBox txtbx = (TextBox)edititem["RedirectEmailAddress"].Controls[0];
                txtbx.Width = Unit.Pixel(300);

                Label l1 = new Label();
                l1.Width = Unit.Pixel(300);

                Match match = regex.Match(txtbx.Text);

                if (match.Success)
                {
                    l1.Text = "";
                }
                else
                {
                    l1.Text = "Please enter a valid email address";
                }
            }

 

When the user clicks the Update icon, I want to display a message if the email address is not in the proper format.  I want the error message to display directly to the right of the email address textbox.  But I can't get this to work.  Can anyone help?  

Bob
Top achievements
Rank 1
 asked on 18 Aug 2017
2 answers
623 views

Hello,

Is there a way to add a confirmation popup via a script of the standard grid delete button on the far right of the row.  I tried to call a javascript function from the OnDeleteCommand of the grid which creates a confirmation and continue on to the event if true.  I couldn't get this to work however it didn't seem to like calling javascript from the control event.  Any help appreciated.

Thanks

Chris
Top achievements
Rank 1
 answered on 18 Aug 2017
1 answer
127 views

Hey, Do you guys have an example of using two listbox controls, with the second listbox is filtered by multi selected items from the first Listbox control?

 

An example:

I have two listbox controls, both using checkboxes with a check all button.  ListboxCountry contains a list of counties.  ListboxCity contains a list of cities.  If I were to check off a country from ListboxCountry then only cities in that country will appear in ListboxCity.  If I check off three counties from ListboxCountry then cities from those three countries will appear in ListboxCity.  No checked countries then no cities.

 

I'm using v2017.2.711.40

Eyup
Telerik team
 answered on 18 Aug 2017
1 answer
113 views

Hi,

I would like to call a JavaScript function whenever an item is checked/unchecked in the excel-like filter list.

Please assist with an example of how this could be achieved.

Thank you,

Jas

Eyup
Telerik team
 answered on 18 Aug 2017
0 answers
112 views
123.png Picture of the data in the google browser to enter the Chinese characters have a reminder function
Another picture in the Chinese characters under the fire did not remind how to solve the Firefox did not remind the screening function
wang
Top achievements
Rank 1
 asked on 18 Aug 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?