Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
101 views
Hi ,

I have a scenario where I need to display tooltip within  a tooltip.  I'll try to describe the scenario below.

-  I have a aspx page with a RadGrid.
-  The grid has  a Template Column with a button.  On Click of the button a RadToolTip is displayed.
-  The RadToolTip host a usercontrol,  with a "textbox" and a "search" button on it.
-  On Click of the "search" button, I need to open another tooltip with a usercontrol loaded in it..  I do some search operation on this tooltip(usercontrol) and when I click on "Assign", I need to assign the values from this tooltip to the parent tooltip and this tooltip should be closed.

It's like displaying a "popup" over a popup kind of scenario.  Is this possible with RadToolTip?   Any input in this direction is appreciated?

Thanks.
Rajesh
Top achievements
Rank 1
 answered on 10 Apr 2009
5 answers
223 views
Hi,
 I have latest RadEditor installed as a default editor provider on a DNN site. I have the following problem: When I click on Image Manager, new window pops up, there I can select existing image or upload a new one. No matter which one I choose, when I click on "image editor" image suppose to show in the left pane, but nothing shows up...

second smaller issue - is there a way to add "back" or "up folder" when navigating to an empty folder doesn't looks like there's a way to get back to a folder listing..

Thank you!
~Ilya
Lini
Telerik team
 answered on 10 Apr 2009
1 answer
232 views
Is there a way to use the validation functionality of the RadInputManager for the RadTextBox?

I've been trying to implement a "Required" validation for the RadTextBox without having to manually add RequiredFieldValidators, because we have web pages with many RadTextBoxes.
I've been partially succesfull in implementing a own CompositeControl which dynamically adds the RadTextBox and the RequiredFieldValidator. I'm not sure if this is a definite solution because of many problems I encountered. Because of these problems I started researching the RadInputManager as an alternative.

The post on Todd Anglin's blog: http://blogs.telerik.com/toddanglin/posts/08-12-12/Showing_RadToolTip_on_RadInput_input_error.aspx looks like the solution I need, except that it should work for RadTextBox.

Thanks in advance for your help,

Peter



Sebastian
Telerik team
 answered on 10 Apr 2009
1 answer
63 views
Hello, if this has been asked before I appologize.

I have an objectdatasource and I want to bind all of the properties to a master table except a property that is a list of a different type. I want to bind that list to a details table. I can not seem to be able to do this. Can someone offer some help?

The data source is being populated with the information I am looking for.  here is an example of the properties of the class.

public List<ReqInfoWorkList> lsReqInfoWorkList //  This is for the details table all other properties I want on the main table
{
             get { return _lsReqInfoWorkList; }
             set { _lsReqInfoWorkList = value; }
        }
public string AcctId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string RoomBed { get; set; }
public string MRN { get; set; }
public string AdmisDateTime { get; set; }
public string DischDateTime { get; set; }
public string Code { get; set; }
public string DOB { get; set; }
public string AdmitType { get; set; }
public string Level1 { get; set; }
public string Level2 { get; set; }
public bool MADFComplete { get; set; }
public bool Elig { get; set; }
public bool Passport { get; set; }

Thank you for any help you can provide.
Rosen
Telerik team
 answered on 10 Apr 2009
1 answer
60 views
Is there a way to achieve some of the same templating performed with <ItemTemplate>, but in the code-behind?

Problem is that I have some fields that may or may not be available and doing a simple Eval( "SomeField" ) will throw an exception.
Daniel
Telerik team
 answered on 10 Apr 2009
2 answers
203 views
Hi there guys,
I've recently started a project using ASP.NET MVC and am so far loving every aspect of it. Telerik's controls are surprisingly compatible for the most part, however, I'd like to get advice from the Telerik team as to the best way to optimize RadControls for the MVC framework.

It's obvious that you should set "EnableViewState" = "False" on each control.
I've also noticed that I had to set "EnablePartialRendering" = "False" on RadScriptManager.

My main goal is to reduce the page size and the amount of data coming back from Telerik.Web.UI.WebResource.axd
I'm still getting data set into a hidden ViewState element though. Is there an official "MVC Optimization" blog post or thread?

Much thanks!

-Danny
DGDev
Top achievements
Rank 2
 answered on 10 Apr 2009
3 answers
259 views
Hi team:
           Now I have a grid which band a database tabe, in the grid have a "phone" column  as the follow code
<telerik:GridTemplateColumn UniqueName="PhoneNumber" DataField="PhoneNumber"
                                        HeaderText="PPHONE" Visible="true" AllowFiltering="true" ReadOnly="true">
                                        <HeaderStyle HorizontalAlign="Center" Font-Bold="True" />
                                        <ItemTemplate>
                                            <telerik:RadMaskedTextBox ID="tboxPhoneNumber" runat="server"  Mask="(###) ###-#### x####"
                                                NumericRangeAlign="Left" Text='<%#Bind("PhoneNumber") %>' ReadOnly="true" >
                                            </telerik:RadMaskedTextBox>
                                        </ItemTemplate>
                                    </telerik:GridTemplateColumn>

but when the "PhoneNumber" field value is null, grid column  will show text "(___) ___-____x____",can you give me a hand I just want to show a empty string in the grid.
Thanks.

Tommy

Tommy
Top achievements
Rank 1
 answered on 10 Apr 2009
1 answer
535 views
I have a RadCombo Box with checkboxes to allow multiple selection.
Howevere I would like the user to only select a value using the checkboxes.
Right now if I click on a comboitem that value gets selected though the checkbox does not get selected for that item.

The text in the ComboBox input also changes to just the item I clicked on rather than the concatenated string of checked items.

How can i disable the selection on clicking the item?
newbie
Top achievements
Rank 1
 answered on 09 Apr 2009
2 answers
171 views

I would like to see some documentation on the use of Scale Breaks for the Y-Axis.  I am configuring the Y-Axis for a Line chart as such:

chart.PlotArea.YAxis.ScaleBreaks.Enabled = true;
chart.PlotArea.YAxis.ScaleBreaks.MaxCount = 1;
chart.PlotArea.YAxis.AutoScale = true;

What I expect to happen here is to end up with two chart.PlotArea.YAxis.Segments, each with an automatic and appropriately set Step. MinValue, and MaxValue.   But what I end up with is two segments: The lower segment which contains most of the YAxis values, consumes about 95% of the chart space, and uses a very low "Step" value, which results in hundreds of gridlines so close together that the plotted series lines can scarcely be seen.   The upper segment which contains one or two "outlying" data points, is squeezed up to the top 30 or so pixels of the chart.    The bottom line is that this chart is essentially unreadable.

So my questions are:

1. Is there a way to set up the chart so that the Step, MinValue, and MaxValue are set automatically, separately and appropriately for each segment?
2. If not, is it necessary to manually create each segment and set Step, MinValue, and MaxValue explicitly?   This option would be highly undesirable, since we're charting a large variety of measures which have a wide variety of Min and Max values.   We would like to avoid having to write the algorithm that automatically creates these segments .... our assumption was that this was built into the controls..

In any case, if you can provide some samples of the use of the ScaleBreaks feature, particularly with regard to autoformatting on the YAxis, that would be very helpful.

Michael
Top achievements
Rank 2
 answered on 09 Apr 2009
8 answers
515 views
Hi there,

Does anyone know of a way to have a RadGrid that uses a grouping, allow the user to edit the group?  Basically, if the user wants, they should be able to put the row of the group in edit mode, as well as the rows beneath each grouping header.
Ryan
Top achievements
Rank 1
 answered on 09 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?