Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
160 views
Hello,

I recently upgraded to Telerik.Web.UI_2008_3_1327_dev_hotfix. As soon as I did this all RadWindows in Firefox "jump around" and "flash" on the screen.  I made a test solution using an older Telerik.Web.UI.DLL and the RadWindow worked fine. Simply changing to the newest .DLL made the radwindow practically unusable in FireFox.

In IE it works/looks just fine.

Is this already a known issue? When can we expect a fix?

Thanks,
ethan

Georgi Tunev
Telerik team
 answered on 21 Mar 2011
3 answers
115 views

Hi

 

 

Hi apologies if this is a silly question but i have searched the forums and help and can’t find an example

 

I’m using a radgrid with a EditFormType="Template" in the template i have a  date picker and 2 timepickers. I would like when i change the datepicker on the postback this updates the selected date of the time pickers.  I’ve found lots of examples of how to access the controls when ItemDataBound is called but how can i reference other editform controls programmatically once the editform is showing?

 

The grid is bound to a sql datasource and the updates and inserts are working perfectly bar the time picker bringing in todays date rather than the date set by the separate  date picker.

 


 

Many thanks in advance

Ross

Princy
Top achievements
Rank 2
 answered on 21 Mar 2011
1 answer
57 views
Hi,

    Issue related to Image Manager dialogue, here first time when i add image to editor content area it works. But then i try to open second time i notice issue, like image manager dialogue it self doesn't open at all. Where as other dialogue boxes like document manager etc., are working fine.

   This is strange issue, well after clearing browser content i retried image manager dialogue works fine able to upload image, tried to open as many times. But once i add image to editor content area and save content, after that if i open editor and open image manager dialogue it doesn't work again.

  Once i have also noticed issue with b.parentnode() is not getting detected.

Please let me why this kind of issue is happening, its very critical and answer me as soon as possible.

please let me even know do you have any online chat option.
Dobromir
Telerik team
 answered on 21 Mar 2011
3 answers
304 views
Hi guys
I am using file explorer to select the location to create an sql backup in c sharp. I want to explore file and folders in c drive and other drives. How is it possible?.
I use

string[] viewPaths = new string[]
                {                  
                   @"~/"
                };

FileExplorer1.Configuration.SearchPatterns = new[] { "*.bak" };
FileExplorer1.Configuration.ViewPaths = viewPaths;


in page load, in this way I can only explore from root of the project.
I want to explore C: and others drives.
Anybody can help me?
Thanks
Ben
Dobromir
Telerik team
 answered on 21 Mar 2011
1 answer
123 views
I need to get a value from a griddatabound datafield and pass it on to my context menu events.
at the moment i only get the index, is there any way to do this? can i somehow store the selected value in the input field and retreive it from the radmenu clicked event?


function RowContextMenu(sender, eventArgs)
{
    var menu = $find("ctl00_phContent_RadMenu1");
    var evt = eventArgs.get_domEvent();
      
    if(evt.target.tagName == "INPUT" || evt.target.tagName == "A"
    
      return;
    
      
    var index = eventArgs.get_itemIndexHierarchical();
    document.getElementById("radGridClickedRowIndex").value = index;
      
    sender.get_masterTableView().selectItem(sender.get_masterTableView().get_dataItems()[index].get_element(), true);
      
    menu.show(evt);
      
    evt.cancelBubble = true;
    evt.returnValue = false;
  
    if (evt.stopPropagation)
    {
       evt.stopPropagation();
       evt.preventDefault();
    }
}


</MasterTableView>
    <ClientSettings AllowDragToGroup="True">
        <ClientEvents OnRowContextMenu="RowContextMenu">
        </ClientEvents>
    <Selecting AllowRowSelect="true" />
  
    </ClientSettings>


<input type="hidden" id="radGridClickedRowIndex" name="radGridClickedRowIndex" />
  
    <telerik:RadContextMenu ID="RadMenu1" runat="server" OnItemClick="RadMenu1_ItemClick"
        EnableRoundedCorners="True" EnableShadows="True">
        <Items>
            <telerik:RadMenuItem Text="Öppna ärende" />
            <telerik:RadMenuItem Text="Avsluta ärende" />
            <telerik:RadMenuItem Text="Ta bort ärende" />
        </Items>
    </telerik:RadContextMenu>


protected void RadMenu1_ItemClick(object sender, RadMenuEventArgs e)
    {
        int radGridClickedRowIndex;
  
        radGridClickedRowIndex = Convert.ToInt32(Request.Form["radGridClickedRowIndex"]);

Shinu
Top achievements
Rank 2
 answered on 21 Mar 2011
2 answers
135 views
Hello,

I am working on an application wherein I want the RADPanelBar to be fully expanded 
when the page loads the first time. After that user should have the ability to keep
them expanded or to collapse them.

In my case, only the first tag is expanded and others are collapsed when the page loads. 

Kindly waiting for the reply.


Thanks and Best Regards,
Ruchit 
Ruchit
Top achievements
Rank 1
 answered on 21 Mar 2011
1 answer
103 views

im new user  in your tools 

on  ASP.net  VS2008

and when i add any tools   give me this error

Error creating control 

could not load  assembly 'telerik.web.ui , version=2009.3.1208

thanks for any help 

Shinu
Top achievements
Rank 2
 answered on 21 Mar 2011
3 answers
327 views
Hi!  Could someone help me with getting the value of an email address in a GridHyperLinkColumn from the code behind please?

Here's the aspx code:
<telerik:GridHyperLinkColumn DataNavigateUrlFields="Email1" UniqueName="Email1"   
   DataNavigateUrlFormatString="mailto:{0}" DataTextField="Name" HeaderText="Reviewer" SortExpression="Email1" 
   ShowFilterIcon="false" ShowSortIcon="false" AutoPostBackOnFilter="true" />

Essentially when a user clicks on a submit button for the RadGrid itself, I would like to grab the email address for each selected row in the grid and send an automated email.

Here's the code behind I have for finding the selected rows in the grid, however, I'm not sure how to retrieve the value of the email address from the GridHyperLinkColumn...
If (RadGrid1.SelectedItems.Count > 0) Then
 
            For Each item As GridDataItem In RadGrid1.SelectedItems
                'Add code here to retrieve email address
            Next
End If

Any help would be greatly appreciated.  Thanks!
Princy
Top achievements
Rank 2
 answered on 21 Mar 2011
1 answer
89 views
Hi,

please let us know, how to get custom page size like 10/20/25/30 to telerik grid page dropdown control using javascript.since to increase the peformance of the application we need to develop this logic.
Shinu
Top achievements
Rank 2
 answered on 21 Mar 2011
2 answers
175 views
I've been looking at the RadMenu Base styles and trying to figure out exactly which portion of the CSS is what makes the dropdowns work.

I built my own RadMenu.css but for some reason the dropdown's always appear at the top left portion of the screen.

Below please find my css, any clues as to what is missing would be much appreciated. Or just point me to an example dropdown css code for the RadMenu.

.RadMenu_ArtDebutant
{
    width:100%;
}
 
.RadMenu_ArtDebutant > ul.rmRootGroup
{
    float: left;
    display: block;
    list-style-type: none;
    font-size: 17px;
    text-transform: lowercase;
    font-family: Arial Baltic, Arial;
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li.rmItem
{
    float: left;
    width: 254px;
    height: 30px;
    background-color: #333333;
    border-right: 1px solid #939393;
    margin-right: 1px;
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li.rmLast
{
    margin-right: 0px;
    width: 255px;
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li.rmSeparator
{
    width: 1px;
    float:left;
    height: 30px;
    background-color: White;
    border: 0;
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li.rmItem > a
{
    color: White;
    text-decoration: none;
    height: 30px;
    vertical-align: middle;
    display: table-cell;
    padding-left: 15px;
    width: 253px;
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li:hover
{
    /* background-color: #415353; */
}
.RadMenu_ArtDebutant > ul.rmRootGroup > li.rmItem > a.rmFocused
{
    background-color: #415353;
    width: 254px;
}
 
/* drop down. Some stuff from menu.css base styles */
 
.RadMenu div.rmSlide
{
    position:absolute;
    overflow:hidden;
    display:none;
    float:left;
     
    width: 254px;
    background-color: #333333;
    opacity: 0.5;
    -moz-opacity: 0.5;
}
 
.RadMenu ul.rmVertical
{
    float: left;
    display: block;
    list-style-type: none;
    font-size: 17px;
    text-transform: lowercase;
    font-family: Arial Baltic, Arial;
}
 
.RadMenu ul.rmVertical > li.rmItem
{
    clear:both;
    width: 100%;
    height: 40px;
    width: 250px;
    line-height: 40px;
}
 
.RadMenu ul.rmVertical > li.rmItem > a.rmLink
{
    color: White;
    text-transform: uppercase;
    text-decoration:none;
    margin-left: 20px;
}
/* drop down portion end */
James Reategui
Top achievements
Rank 1
 answered on 20 Mar 2011
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?