Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
49 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
82 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
111 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
168 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
128 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
121 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
141 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
67 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
2 answers
234 views
hi 
i have a content page and a RadGrid within it, edit form template implemented, loading panel and rad ajax manager.
when i click the edit button, a popup template form viewed, when i click the cancel button "sometimes" loading panel keeps loading and sometimes everything is OK, also i've tried to implement hide and show the loading panel explicitly using the JavaScript code  
snippet in the Telerik documentation website, script manager is defined at master page.
i've tested this page hundreds i hope to find a solution.

please help, thanks
Rasheed
Top achievements
Rank 1
 answered on 20 Jan 2012
1 answer
122 views
The radtreeview node expands and collapses both using left arrow key and right arrow key. Is there a way to restrict the user to expand only using right key and collapse using left key, other than handling javascript events?
Plamen
Telerik team
 answered on 20 Jan 2012
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?