Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
85 views
Radtooltip is working great under IE6 firefox but not in IE7 and IE8. Tooltip is either out of position or disappear right after.

I used combination of below properties (not sure which one that i should use for dynamic but all work great under IE6 / firefox)
    .Show()
    .VisibleonPageLoad = true
    .RenderInPageRoot = true
    .HideEvent = Web.UI.ToolTipHideEvent.ManualClose

Note: All controls are inside of global ajax panel. (I even tried to disable ajax but same result)

Here is my sampe code,

 

 Public Sub ShowPopupMessage(ByVal validationIssues As IValidations)  
 
        If validationIssues Is Nothing OrElse validationIssues.ErrorCount = 0 Then  
            Exit Sub  
        End If  
 
        Dim popupMessage As New Telerik.Web.UI.RadToolTip  
        Dim width As Integer = 75 
        Me.Controls.Add(popupMessage)  
 
        With popupMessage  
            '.Position = Telerik.Web.UI.ToolTipPosition.BottomRight  
            '.RelativeTo = Telerik.Web.UI.ToolTipRelativeDisplay.BrowserWindow  
            .Position = Telerik.Web.UI.ToolTipPosition.Center  
            .RelativeTo = Telerik.Web.UI.ToolTipRelativeDisplay.BrowserWindow              
            '.Animation = Telerik.Web.UI.ToolTipAnimation.Fade  
            .Animation = Telerik.Web.UI.ToolTipAnimation.None  
            .Title = "Message" 
            .Width = 300 
            .Height = width * validationIssues.ErrorCount                          
            '.Show()  
            '.RenderInPageRoot = True              
            .VisibleOnPageLoad = True 
            .HideEvent = Telerik.Web.UI.ToolTipHideEvent.ManualClose  
        End With  
 
 
        popupMessage.Controls.Add(CreateValidationContent(validationIssues))  
 
    End Sub 

 

Svetlina Anati
Telerik team
 answered on 17 Apr 2009
1 answer
287 views
Hi,

In my application i have a RadWindow displayed on click on a "Display" button.
But my application is entirely localized in "fr-FR" culture. And the tooltips of title bar buttons are in "en-US" culture.

How can i changed the tooltip text on a title bar button. I was looking for a way to rich the property in codebehind but without any result.

Does someone have an idea?

Thanks.

Riz.
Fiko
Telerik team
 answered on 17 Apr 2009
7 answers
121 views
I'd like to change the way an appointment appears based on some internal logic. Essentially, all I want to do is 'colour' the appointment like you do in your demo code for resources.

The point is though, that my styling decisions have nothing to do with resources.

Is there any way of invoking the necessary functionality to do the equivalent of declaratively calling rsCategoryGreen?

FYI, this is using 2009 Q1.
--
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 17 Apr 2009
1 answer
62 views
Are there any sample code of connecting the RadMenu to resource files?
Or are there better ways of doing multi-language Radmenus?
Shinu
Top achievements
Rank 2
 answered on 17 Apr 2009
1 answer
138 views
I am having a problem with the use of RadAjaxLodingPanel, when an async call occurs on my RadTreeNode, on request completion my RadTree get disapeard, narrowing down the issue I used the IEDevtoolbar, and found that the rendered div style need to be change to "display: block !important" this temporalily resolved the issue but after few async calls the Tree is again disapeard, don't this time which Dev style need to be modified.
attached image show that my page contains 3 Page Views and each view contains RadLoading Panels,,, all these panels too contains the style "display:block !important" as well.
http://img4.imageshack.us/img4/8176/telrikloadinpanel.jpg

(I am using Q3 2008 Library, and that is requirement of client)
Please respond to this on priority basis.
Veselin Vasilev
Telerik team
 answered on 17 Apr 2009
1 answer
326 views
I have leftmenu.xml for displaying a Telerick menu, and I need to convert Text from XML
Shinu
Top achievements
Rank 2
 answered on 17 Apr 2009
3 answers
80 views
I'm uisng a javasrcipt to check if there are any selected rows in the radgrid
<script type="text/javascript" language="javascript">
        function Confirm_ReAssign_RadGrid_AssignedChart() {
            var grid = window['<%= RadGrid_AssignedChart.ClientID %>'];
            if (grid.MasterTableView.SelectedRows.length > 0) {
                var agree = confirm("Are you sure to ReAssign the selected record(s)?");
                if (agree)
                    return true;
                else
                    return false;

            }

            else {
                alert("Please select atleast one record"); return false;
            }
        }
    </script>

The grid is in the content page.
grid is showing null.
Plz help
kollam2003
Top achievements
Rank 1
 answered on 17 Apr 2009
4 answers
346 views
Hello All,

Newbie alert! 

I am evaluating Telerik with Linq to Sql after a somewhat disappointing experience with another leading component suite in this area.  So far, so good.

However, there's just one thing I miss from the competitor's suite: is it possible to have the grid automatically execute a query after a short time delay after the user stops typing in query criteria in the filter row? (or when they tab out of a field).

Our users have become very used to this way of working, and I'm concerned some will sit staring at the grid after they've entered their search params wondering why it's not doing anything!  I've found myself doing just that, and it's a bit boring to have to set the comparison operator every time and it just doesn't feel very slick.

Ideally there'd be a property or two I can set - probably to set a time delay, default comparison operator for each field - that type of thing.

Is this possible without resorting to lots of Javascript?

Many thanks,
Peter Hearn
PH
Top achievements
Rank 2
 answered on 17 Apr 2009
3 answers
161 views
Is there any way to assign a keyboard shortcut to a particular paragraph format style in the Sharepoint version of the editory (ie in the ListToolsFile.xml or the ListConfigFile.xml? 

What I want is for users to be able to apply the "Heading 1" format (ie <h1>   </h1>) to an existing line of text in the editor by pressing say ALT+1 (as is often done in MS Word etc).   I have the Paragraphs configured in the ListToolsFile and showing in the toolbar with the FormatBlock tool.  But cant see a way to assign a shortcut.  I have tried this approach, but didnt think it would work,and it didnt:
 <paragraphs>
  <paragraph name="Clear formatting" value="&lt;body&gt;" />
  <paragraph name="&lt;p&gt;Normal&lt;/p&gt;" value="&lt;p&gt;" />
  <paragraph name="&lt;h2&gt;Heading 2&lt;/H2&gt;" value="&lt;h2&gt;" shortcut="ALT+2" />
  <paragraph name="&lt;h3&gt;Heading 3&lt;/H3&gt;" value="&lt;h3&gt;" shortcut="ALT+3" />
  <paragraph name="&lt;h4&gt;Heading 4&lt;/H4&gt;" value="&lt;h4&gt;" />
  <paragraph name="&lt;h5&gt;Heading 5&lt;/H5&gt;" value="&lt;h5&gt;" />
  <paragraph name="&lt;ul&gt;&lt;li&gt;Bulleted List&lt;/li&gt;&lt;/ul&gt;" value="&lt;ul&gt;" />
  <paragraph name="&lt;ol&gt;&lt;li&gt;Numbered List&lt;/li&gt;&lt;/ol&gt;" value="&lt;ol&gt;" />
 </paragraphs>

Thanks for any help.

Tas  :-)

Tervel
Telerik team
 answered on 17 Apr 2009
3 answers
104 views
Hi All

I have a grid with a some fields in that i have a field productID

While edit mode, I have to take it from a seperate table

where productName should be displayed in the dropdown and while inserting the productID should be saved.

So two columns should be used (productID,productName) but user sees only productName.

Thank you in advance

-Anto
Anto (DLL Version : 2008.3.1314.35)
Top achievements
Rank 2
 answered on 17 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?