Telerik Forums
UI for ASP.NET AJAX Forum
11 answers
331 views
Dear Telerik Team,

I am using RadGrid and a few splitter tricks for display and editing of large amount of data. In Edit mode, when the user keeps tabbing, the SAVE goes out of focus. Now the user has to click the right end of scrollbar to make the the Save appear all over again.

I am looking out to see if I can freeze the column that shows Update/Cancel (similar to the examples/demo shared out in http://www.telerik.com/community/forums/aspnet-ajax/grid/how-to-freeze-columns-in-radgrid.aspx)

How to make the column that shows Update/Cancel as Frozen? 
Venelin
Telerik team
 answered on 09 Mar 2015
6 answers
240 views
Dear All,
             I am using Telerik controls with Licensed version to my company, but some issue is occurring in RadGrid while we are using .net v4.0,
but it is working Good in .Net v2.0 with VS 2005 and same Radgrid dll for this.

When i click the RadGrid for sorting or Paging or Expanding Grid column in my application below error is occurred.
My Application is .Net Framework v4.0.(VS 2010) 
RadGrid Version: 3.0.2.0 
IE: 9.0
Operating System: Windows 7

Kindly solve this issue,
 
Thanks in Advance
Parameter count mismatch.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
 
Exception Details: System.Reflection.TargetParameterCountException: Parameter count mismatch.
 
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[TargetParameterCountException: Parameter count mismatch.]
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) +9353950
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +28
   System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters) +19
   Telerik.WebControls.RadGrid.x61efa10fcd646105() +178
   Telerik.WebControls.RadGrid.OnPreRender(EventArgs e) +728
   System.Web.UI.Control.PreRenderRecursiveInternal() +103
   System.Web.UI.Control.PreRenderRecursiveInternal() +175
   System.Web.UI.Control.PreRenderRecursiveInternal() +175
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2496
  
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1022


Regards,
Palani Kumar.A
Pavlina
Telerik team
 answered on 09 Mar 2015
9 answers
275 views
How to display duration column in radgantt treeview.
Felix
Top achievements
Rank 1
 answered on 09 Mar 2015
1 answer
128 views
Hi,
My company is planning to migrate and improve MS Access ERP application in web environment and we are also planning to keep using yours controls in our future development.
We already have some other application developted in  ASP.NET AJAX
Regarding Microsoft announcment that asp.net 5 will no longer support web forms and vb.net language,
is it now right time to choose ASP.NET MVC for a new projects?
What is your opinion regarding the Microsoft new turning point?
Will UX of telerik asp.net ajax controls be able to keep up with  ASP.NET MVC, let say in 5 years from now?

Tnx and keep up with good work.
Marin Bratanov
Telerik team
 answered on 09 Mar 2015
1 answer
146 views
Hi, i've a problem with RadPdfprocessing.
There isn't a Group Post in Forum and the documentation is very very small.

My problem is on the step 0.
PdfFormatProvider provider = new PdfFormatProvider();
RadFixedDocument document = new RadFixedDocument();
                  
using (Stream input = File.OpenRead(@"C:\Test.pdf"))
{
document = provider.Import(input);
}

Test.pdf ha 1 pages but document.Pages.Count = 0

:-(


Tanya
Telerik team
 answered on 09 Mar 2015
1 answer
85 views
Is there any way for the uploader to start from where a user lost connection?  Such as, if a client tired to upload a 1 GB file and got to 78% percent and then lost connection to their internet. Then gain connection back could they start from where it cut off without having to re-upload the file?
Hristo Valyavicharski
Telerik team
 answered on 09 Mar 2015
0 answers
63 views
Hi Team,
Here is my requirement, I need to show Italic and normal text in a RadTExt box. 

Example:  This is <i> prasad </i>. here prasad should display in Italic.

Please help me.

Regards,
ranga prasad.
Prasad
Top achievements
Rank 1
 asked on 09 Mar 2015
1 answer
111 views
I have a RadGrid that is populated by a SqlDataSource object.  I populate the ListItems of a ComboBox and Multi-Select ComboBox control inside the RadGrid's NestedViewTemplate using two other SqlDataSource objects.  The SelectedValue of the single select ComboBox is easy to set.  What is the most efficient means of setting the SelectedValue of the appropriate ListItems in the Multi-Select ComboBox?

Nencho
Telerik team
 answered on 09 Mar 2015
1 answer
273 views
Want telerik:RadGrid batch edit changes on server side without
postback.My  batch grid save button outside from grid ,bellow syntax used to call batchedit save event. 

<telerik:RadButton runat="server" ID="RadButton1" Text="SaveAllChanges" AutoPostBack="false" OnClientClicked="SaveAllChanges"></telerik:RadButton>

        function SaveAllChanges(sender, args) {

            var batchManager = $find('<%=RadGrid1.ClientID%>').get_batchEditingManager();

            var tableViews = [];

            tableViews.push($find('<%=RadGrid1.ClientID%>').get_masterTableView()); 
batchManager.saveTableChanges(tableViews);                
}

There is one problem method SaveAllChanges() perform a postback then call server event RadGrid1_BatchEditCommand. But I want a process
without postback my button call an event which communicate with server and provide me all batch grid changes.Please don’t referrer any update panel
process http://www.telerik.com/forums/prevent-postback-after-edit-delete-in-grid.I need to work with grid data in server side.So need to get all data from the grid.If have any question please ask,Thank in advanced.Any type of suggestion will be acceptable
Angel Petrov
Telerik team
 answered on 09 Mar 2015
1 answer
248 views
 used telerik:RadGrid batch editing; to fill this grid I used below syntax:

function GridBind(GridID, GridData) {
var TableView = GridID.get_masterTableView();
TableView.set_dataSource(GridData); TableView.dataBind();
}

To Invoke batcheditcommand I used below syntax. It’s written under non-postback button Javascript event:

function SaveAllChanges(sender,args) {
var batchManager = $find('<%=RadGrid1.ClientID%>').get_batchEditingManager();
var tableViews = [];
tableViews.push($find('<%=RadGrid1.ClientID%>').get_masterTableView());
batchManager.saveTableChanges(tableViews);
}

But unfortunately SaveAllChanges perform a postback and invoke  RadGrid1_BatchEditCommand,my requirement is with out post back ,i want grid batch all change on server side.Any type of suggestion will be acceptable.
Angel Petrov
Telerik team
 answered on 09 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?