Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
94 views
My company is using your Outlook skin for the RadTab control, and several people have commented about a line that appears over the highlighted tab if the user zooms the browser in or out.  I checked on your demo page, and the same thing happens there (I'm attaching a png file with the problem area circled in red).  It happens in both IE and Safari, but not Firefox.  Several of our users have commented that it looks unprofessional.  Is there a fix available for this or is there any way to remedy this in the skin file?
Kate
Telerik team
 answered on 20 Jan 2012
1 answer
186 views
Hallo,

     I'm creating a grid at runtime, dynamically adding the columns; I'm also using InPlace edit mode. The grid is working in normal columns (for example, I set the GridNumericColumnEditor for my GridNumericColumn, and I can get the cell value using the GridEditManager GetColumnEditor method).

    Now I have a column which has templates for Item and EditItem. In the EditItemTemplate (which inherits IBindableTemplate) I put a DropDownList. I could set the right value to show in the dropdownlist when in edit mode, but I don't know how to get the cell value. I've tried with the GridEditManager, as for my normal columns, but the GridTemplateColumnEditor has no controls...

    Can you help me?

   Thank you
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
0 answers
43 views
Hi,

I am using radinputmanager into radgrid. while the page load i set onfocus for first row radinputmanger. but onfocus working fine. but the data has been cleared while the data currency format. how to solve this problem. please let me the tips for this one.


Thanks,
Dhamu.
Dhamodharan
Top achievements
Rank 1
 asked on 20 Jan 2012
1 answer
77 views
We are using Telerik controls  of Version  2009.2.701.35.

In our application we have used Rad Grid and Rad window, Rad TabStrip and Rad Menu. When veiwing the application in IE 6 browser the controls are working as expected. But  we are facing some problems like grid alignment issue, rad window opening issue when we try viewing the controls in IE 9. 

Kindly let us know the necessary conifguration changes to make its behaviour work in IE 9.


Iana Tsolova
Telerik team
 answered on 20 Jan 2012
1 answer
104 views
Hi,

I have a sub routine in my code behind  (vb) which fires when an event occurs.  What I want to do is selectively enable and disable 4 tabs in the tab strip and set focus to one tab.

here is my code
Private Sub LookupTag(tag As String)
 
    Dim c1 As New RadTabStrip
    Select Case tag
        Case "11000ed97c"           'credit card
            'RadTabStrip1.Tabs(1).Focus()
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = True
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = False
        Case "4d004a7d6f"           'watch
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = True
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = False
        Case "0107ee84cd"           'Key Chain
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = True
            c1.Tabs(3).Enabled = False
        Case "0107ee8a61"           'disk
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = True
    End Select
and here is the asp for the tabstrip
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Black" MultiPageID="RadMultiPage1"
    SelectedIndex="0" CssClass="tabStrip" AutoPostBack="True">
    <Tabs>
        <telerik:RadTab Text="Ops">
        </telerik:RadTab>
        <telerik:RadTab Text="Management">
        </telerik:RadTab>
        <telerik:RadTab Text="IT">
        </telerik:RadTab>
        <telerik:RadTab Text="Maintenance">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

Can someone give me a hand?

Thanks in advance,

Dave
Kate
Telerik team
 answered on 20 Jan 2012
0 answers
156 views
Hi,

I have a web user control that contains a RadGrid and a web page that hosts multiple instances of the web control.  I set the data source for the grid as a property to the control before the page loads.

Since I have multiple controls, I cannot easily use ViewState or Sessions to get/save the data source for the grid after an operation that causes a postback of the web page and web user control (Since the keys of the ViewState or Session would need to be changed per each instance of the user control so that the contents from one instance of the user control do not overwrite the contents of the other).

I would like to get the data source back directly from the RadGrid and was wondering if this is possible and if so, how to do it.

Thanks,
Tom
Top achievements
Rank 1
 asked on 20 Jan 2012
2 answers
120 views
Hi Telerik Team,

I'm using the radfileexplorer to show the content of my sharepoint 2010 library. However it was very slow when loading all my content, so I'm trying the treeview explorer mode. Just like this.

<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" Language="es-ES" OnClientFileOpen="OnClientFileOpen" AllowPaging="true" VisibleControls="Grid,Treeview" explorermode="FileTree">
 </telerik:RadFileExplorer> 


But the problem I'm getting right now is that I can't see my files icon. Everything loads great, but to every file loads the same icon (the unknown file one), the folders load good.


So I was wondering if there's anyway to recognize my file extension and get the correct one


Thanks in advance

Best Regards

Raúl Ortega
Raul
Top achievements
Rank 1
 answered on 20 Jan 2012
1 answer
106 views
Hello,
        I have 2 columns in Database
 1. XML_Data (Contains my data to show in RAD Editor)
 2. XSL_Data (Contains my Styling to implement on the XML data.)

 I am combining both of them in my code to generate final result which is shown in RAD Editor. Now if in Design mode user (say for e.g) changes the text to bold, than in HTML mode, the changes take effect which has my generated code. What I want is to make style changes in XSL_Data only and Data changes in XML_Data only.

Please HELP!!!!!!!!!
Rumen
Telerik team
 answered on 20 Jan 2012
1 answer
132 views
I'm writing to ask how best to store a document path in an SQL Server - if the document path is in a different drive;

For example, if a View Path is stored as \Customers - and is in the root folder of the web application, I am able to apply the path to the RadFileExplorer with the below code - after obtaining the document path from the SQL Server database:

RadFileExplorer1.Configuration.ViewPaths = listViewPaths.ToArray();

However, if the document path is in a different drive - such as

\\FLEET01\D$\Documents\Customers\ - the RadFileExplorer is not populated;

 
No errors occur on the web server, which indicates to me that the format is OK;

Any insight is appreciated;

Dobromir
Telerik team
 answered on 20 Jan 2012
2 answers
57 views
Hi
I've used RadTooltipManager to tooltipify element , required tooltips are loaded by a webservice that is defined in RadTooltipManager 
I was thinking about is it possible to save loaded tooltip locally and prevent other requests to send to server ?
Requests can be canceled in OnClientRequestStart
How can I get fetched tooltip in OnClientResponseEnd or any other possible event ?
and How can I display saved tooltip in OnClientRequestStart after canceling the request ?

Thank You Very Much , For Your Feedbacks


reza
Top achievements
Rank 1
 answered on 20 Jan 2012
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?