Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
137 views
Hi all - including Telerik supporters :o)

This issue seems to be a recurring one, but still I can't find any solution to the problem. It seems to be very general, since the problem also occurres at the Telerik demo site; ToolTip / First Look .

My problem is very shortly to describe. When positioning the tooltip beneath or to the right of an element, the resizing goes very well since the arrow pointing at the associate element doesn't have to be moved, but when the tooltip has to be placed to the left or above the element (for example if there isn't space enough beneath the element to show the tooltip), the problem occur.

I have attached an example of the problem. 'Correct.png' shows how a correctly loaded tooltip is shown (tooltip is placed beneath the associated element), where 'Incorrect loading.png' and 'Incorrect loaded.png' shows how the arrow is stocked at the same placed before and after the tooltip is fully loaded - which ends up with an arrow inside the tooltip instead.

What can I do to solve my problem?
Svetlina Anati
Telerik team
 answered on 11 Mar 2011
1 answer
138 views
Hi there,
i have a chart with a line series where all values are 0,030. When I plot the chart with AutoScale set to true, the YAxis reaches from -50 to 40. To avoid this is set AutoScale = false, objChart.PlotArea.YAxis2.MinValue = 0 and objChart.PlotArea.YAxis2.MaxValue = 0.18.
But than I only get one Label at 0.00.

How can i get a second value to the y-axis2 like 0.1?

Best regards!
Ves
Telerik team
 answered on 11 Mar 2011
0 answers
65 views
hi,
   I am using rad totator control for displaying some data. All working fine and data scrolled continously. But when my mouse focused in the rotator, the scrolling stopped in the last slide ie not started again from the beginning. But when my mouse out of rotator, slide working correctly and also started from beginning when finished the slide. Give me some suggesions to solve this ...
Akhil Raj
Top achievements
Rank 1
 asked on 11 Mar 2011
3 answers
182 views
<telerik:GridDropDownColumn
              UniqueName="ISHUR" DataField="ISHUR" HeaderText="MyIshur" DropDownControlType="DropDownList"
                   DataSourceID="objdsIshur" ListTextField="Text" ListValueField="Key"/>


Hi All,
I have a radgrid that one of his columns is GridDropDownColumn 
I want to access the GridDropDownColumn in client side  and get the selected index when i move to edit mode.
Note that the DropDownControlType property is set to DropDownList and not to RadComboBox/
Thank,
Gerry

Tsvetoslav
Telerik team
 answered on 11 Mar 2011
1 answer
763 views
How would you use RadMaskTextBox to mask all but the last 4 digits of a credit card?

I want the Textbox to display as ####-####-####-1234.

Thanks in advance for your assistance.
Veli
Telerik team
 answered on 11 Mar 2011
3 answers
162 views
Hi
Do you have a sample of grid which has checkbox, textbox and combobox columns int it?
Thanks
Princy
Top achievements
Rank 2
 answered on 11 Mar 2011
2 answers
272 views
I was having issues with prometheus running when using a Master page... I have found a thread that states to remove the runat = server from the head tag and insert 
<script>var controlClientObject = <%= RadControl1.ClientID %></script>
below is how I have added it in my master page.
 

<

body style="margin: 0px;" runat=server>

<form id="frmMaster" >

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">

<Scripts>

<asp:ScriptReference Path="~/Scripts/setFooter.js" />

</Scripts>

</asp:ScriptManager>

<

script>var controlClientObject = <%= RadControl1.ClientID %></script>

<div id="Header">

Now I get the following error... Can someone please help me as to what I am missing?

Compiler Error Message: CS0103: The name 'RadControl1' does not exist in the current context

I have made sure everything is in the web config and I do have the dll in the bin folder... I am able to to run everything fine as long as I do not use a master page?

Thanks for the help
Gina

Peter
Telerik team
 answered on 11 Mar 2011
1 answer
86 views
Hi Sir / Madam,

I am using Hierarchical grid to display Master & Details information. I want page size as 10 and 5 respectively in MasterTableView and DetailTables. For uniqueness in entire application i would like to go with asp.net's skin file. I have written below listed code in Skin1.skin file

<telerik:RadGrid runat="server"  >
<MasterTableView  PageSize="10">
</MasterTableView>
</telerik:RadGrid>
<telerik:GridTableView  Width="100%" PageSize="5" runat="server">
</telerik:GridTableView>

But end result was not met my expectation. Both Master and Child tables displays 5 records per page.

If I use same settings in .aspx page instead of skin file, results are displayed as expected.

Could any one please help me in this regard. Thanks in advance.

Thanks,
Sumanth

 
Tsvetoslav
Telerik team
 answered on 11 Mar 2011
1 answer
132 views
I have a column named 'Unread' in my Rad grid. Please see the following aspx code.

<Telerik:RadGrid ID="MessageBoardRadGrid"  Width="100%" AllowSorting="True" PageSize="15" AllowPaging="True" 
              AllowMultiRowSelection="True" runat="server" Gridlines=Both  HeaderStyle-Font-Bold=true 
              AutoGenerateColumns="False"  >
               <PagerStyle Mode="NextPrevAndNumeric" />                  
               <MasterTableView DataKeyNames="Name" AutoGenerateColumns="false">
                   <Columns>                           
                       <Telerik:GridTemplateColumn  DataField="Unread" HeaderText="Unread" HeaderStyle-CssClass="gridheader">                    
                           <ItemTemplate>
                               <%# Formatter.StatusIcon( (Forum) Container.DataItem ) %>
                           </ItemTemplate>
                       </Telerik:GridTemplateColumn >

I am binding an image if there is an most resent update on the column.
Please find the code for the StatusIcon() method below.
if (forum.LastUserActivity < forum.MostRecentPostDate) 
        {
            icon = "forum_status_new_ln.gif";
            alt = ResourceManager.GetString("IconAlt_NewPosts");
        }

I want to make it a default sorted column to show the unread items first.
Kindly help me accomplishing this.
Princy
Top achievements
Rank 2
 answered on 11 Mar 2011
1 answer
122 views
Can you add a row of data programatically and aggregate it within the radgrid.  If so, how?

Example:

I have a grid with 2 columns.  One of these columns is a template that runs a function and delivers an output.  Within that function I need to manually add data that is not present in the sqldatasource to the grid and use it when performing aggregate functions. 

ColumnA - ColumnB
1 - MyFunction(1) - adds new row (1, B)and returns A to column B.  
2 - MyFunction(2) - May return just A

Grid should look like
1 - A
1 - B
2 - A
Count 3

Even though SQLDataSource only returns
1 - AB
2 - A

Of course the function is more complex than the example above and I only need details on adding the row of data to the grid so that it can be aggregated.  Thanks

Tsvetoslav
Telerik team
 answered on 11 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
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?