Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
79 views
I am in the process of evaluating different charting packages to determine which one meets the few requirements that we have. Can anyone let me know which control can perform all of the following requirements?

All features need to work from a browser either using ASP.Net or Silverlight:
- Printing in landscape or portrait (need a chart to expand to paper size)
- Zooming/scrolling
- Real-time/Live updating of chart
- Fastline and stepline support

We do not have a preference between the 2 technologies but we cannot combine them, meaning we cannot have Silverlight to show the zooming/scrolling and then if printing is required display the ASP.Net version.

Are there any examples with all of the above working together? I got the impression that I would need to include the slider control for zooming to work with the chart control. Is that a correct assessment? Is there anything for printing?

Thanks for any help!

Vladimir Milev
Telerik team
 answered on 27 Apr 2010
0 answers
107 views
Hi telerik,

I want a rad menu in the semi circular form.

Please help to build Semi circular menu.
ravi shankar
Top achievements
Rank 1
 asked on 27 Apr 2010
6 answers
61 views
I've installed the Editor Lite on my WSS site - and it's displaying succesfully - but is not picking up any changes I am making.

Can someone assist please?
Stanimir
Telerik team
 answered on 27 Apr 2010
7 answers
229 views

I have following  Rad controls on a user control. I load this user control dynamically.  I am doing everything mentioned in general to maintain viewsatate.

Following RadText box is not maintaining a viewstate in between postbacks. Next to Rad I have put regular aspText box and it works fine with viewstate.

<telerik:RadTextBox ID="txtName" runat="server" MaxLength="50"

                                          meta:resourcekey="txtName" Width="300px" EnableViewState="true">

                                    </telerik:RadTextBox>

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>  --- This one works fine

Following Rad combobox is behaving like locked I can not select values from a dropdown. But next to this one is regular aspdropdown on the same page which works fine with view state as well as with dropdown list selection. Exactly same code I use to load both boxes. Which is also given

<telerik:RadComboBox ID="cboAccount" runat="server" Skin="Vista"

                                          meta:resourcekey="cboAccount" Sort="Ascending" Width="300px" AppendDataBoundItems="True">

                                    </telerik:RadComboBox>

           

 

<asp:DropDownList ID="DropDownList1" runat="server">

                                    </asp:DropDownList>

 

      With cboAccount

                        .DataSource = _piggyBankEligibleAccounts

                        .DataTextField = "Text"

                        .DataValueField = "id"

                        .DataBind()

                  End With

                  With DropDownList1

                        .DataSource = _piggyBankEligibleAccounts

                        .DataTextField = "Text"

                        .DataValueField = "id"

                        .DataBind()

                  End With

Iana Tsolova
Telerik team
 answered on 27 Apr 2010
3 answers
267 views
Hello

I have an OnRowCreated event in my RadGrid.  I need to add a onclick event depending on what column it is for each cell.  Instead of using (i == #) in my loop to determine the onclick event (because the column index numbers change depending on the data being loaded), I would like to find out the column unique name (elementName in the code below) for that cell and use that as the determinant for the onclick event.  But so far, I have not found out how to obtain the unique name for the column. 

Thanks
Oscar

            function RowCreated(sender, eventArgs) {  
                var dataItem = eventArgs.get_gridDataItem();  
 
                for (var i = 0; i < dataItem.get_element().cells.length; i++) {  
                                          
                    //if (elementName == 'CompName') {  
                    if (i == 1) {  
                        dataItem.get_element().cells[i].onclick = function() {  
                            this.selected = this.selected == true ? false : true;  
                            //some function  
                        };  
                    }  
                    else if (i == 2) {  
                        dataItem.get_element().cells[i].onclick = function() {  
                            this.selected = this.selected == true ? false : true;  
                            //some function  
                        };  
                    }  
                    else if (i == 3) {  
                        dataItem.get_element().cells[i].onclick = function() {  
                            this.selected = this.selected == true ? false : true;  
                            //some function  
                        };  
                    }                         
                }  
            }  
 
Princy
Top achievements
Rank 2
 answered on 27 Apr 2010
2 answers
123 views
Dear Telerik development team!
 
I'm using AJAX RadControls for ASPNET Q3 2008. I use the Edit Form on Radgrid usercontrols. Inconvenient when this method  InsertCommand executed  completed, when User Control Edit window  form is closed, the user have to click the Insert button more than once if you want to insert multiple rows. How do I fix this?

Sincerely ....
Phuoc Nguyen Thanh
Top achievements
Rank 1
 answered on 27 Apr 2010
2 answers
162 views
Hi,

As per our requirement we are creating a Rad Grid programmatically(Telerik DLL Version 2009.3.1103.35).
We have added a GridMasked Column and provided it with data  that is alha numeric(String Datatype.eg  AC2334565).
The mask value is set to "(###) ## ###".
But when i execute the code this is not applied to the data and it show plain with formatting.
Here is my code snippet:
               objGridMaskedColumn = New Telerik.GridMaskedColumn
                With objGridMaskedColumn
                    .UniqueName = cColNameTelephone
                    .HeaderText = "Auth Code"
                    .DataField = "AuthCode"
                    .Mask = "(###) ## ###"
                End With
                gridSample.MasterTableView.Columns.Add(objGridMaskedColumn)

My requirement is that i need to store the data in the database with any format.But while displaying the same text on grid i want to apply formatting to it.As per my understanding GridMasked Column was for  that purpose.
The same can be seen in below demo for Masked Column: http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/columntypes/defaultcs.aspx


Any help is greatly appreciated.

Regards,
Aayam
Aayam
Top achievements
Rank 1
 answered on 27 Apr 2010
2 answers
159 views
Hi Experts,

I am using Simple DataBinding for my Grid with Viewstate enabled.There is altogether a different layer with function having fixed parameter set and provide with the custom business object collection to be bind to the Grid.

Limitations:
1) Every other functionality need is working fine with Simple Data Binding of Grid.
2) Specific parameter only to Database layer to retreive Bussiness Object collection.No modification can be made.

Scenario:
New Column introduced in Grid which takes concatenated data from two different properties in Custom Bussiness object the displays it.Hence if we give datafield name as one Property the filtering would be applicable to data from that property only.But we need the filtering to work both the  properties that act as datasource to this column.

Approach:
Customize the filter in ItemCommand event for this column.

Issues:
1) Customized the filter, set it to Grid.MasterTableView FilterExpression and called ReBind() on Grid.MasterTableView, but still not working.
2) Customized the filter, set it to Grid.MasterTableView FilterExpression and explicitly bind the grid by provided it again with datasource.Hence set the DataSource again with fixed Bussiness Object Collection and called DataBind() explicitly.

I can definetly try for Advance Binding but i want to avoid  that for now because would have to modify whole page to support other functionalities related to application itself.

Both of them are not working.
Any idea would be greatly appreciated.

Regards,
Aayam Singh
Aayam
Top achievements
Rank 1
 answered on 27 Apr 2010
1 answer
94 views
I'm looking for an example of a simple search page with radgrid results using ajax.

I have 4 text fields
One "search" button
One ajaxified radgrid with results, with a message to narrow search parameters with more than a couple hundred results.

I think I need to use RadGrid1_NeedDataSource in order to avoid a null search when the page loads?

Since there are so many great demo's on this site.. surely there must be one for something like this?

Thanks..

Shinu
Top achievements
Rank 2
 answered on 27 Apr 2010
11 answers
101 views

Hi all,

I have a tab control on some page. the tab contains more controls. now for the first time if i try to scroll down in the tab control the tab heading is moving along. please find the screen shots in attachments.

Please help me out in this.

Thanks in advance.

Suhas TJ
Top achievements
Rank 1
 answered on 27 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?