Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
65 views

See The Image

I have two rad filter which one i click that one how i find in page load


Regards,
Mohamed.
mohamed
Top achievements
Rank 1
 asked on 17 Jun 2012
0 answers
45 views
Hi Folks,
I have a RadGrid working great off an objectdatasource and I have enabled paging and as well. I also have a RadAjaxLoadingPanel tied to the grid via radajaxmanager.  Everything I just mentioned is working perfectly.  Now, I've added SEO to the Grid and it appears that RadAjaxLoadingPanel has now stopped working due to the fact that SEO enabled functionality apparently requires postback functionality.  My question is how do I enable the RadAjaxLoadingPanel to work when a user clicks the grid to sort or to page? Would it have something to do with setting the LoadingPanel to IsSticky or something? It does not appear that the Grid will work nicely when SEO is enabled. Can you guys provide me an example or point out something I'm missing?
Christopher Tallos
Top achievements
Rank 1
 asked on 17 Jun 2012
3 answers
198 views
Recently I faced a problem with the date pick which was I couldn't select the date 25 Mar 2012!
Each time I select the mentioned date the control selects 24 Mar 2012!!

You may check it on the telerik demo at http://demos.telerik.com/aspnet-ajax/calendar/examples/datepicker/custompopup/defaultcs.aspx 

Any idea how to fix this?

Thanks
Jaye
Top achievements
Rank 1
 answered on 16 Jun 2012
1 answer
120 views

See The Image

How i get the value for rad filter Add Expression Get Value 

Thanks Advance
Mohamed
mohamed
Top achievements
Rank 1
 answered on 16 Jun 2012
2 answers
173 views
Hi,

I have a RadGrid with three Levels, with a GridDropDownColumn in the second level. I would like to get the SelectedValues of the Dropdownlist for all the rows in this column in InsertCommand so that I can check wether the newly inserted column value is a duplicate entry or not.

I am able to iterate through the items in the second level of the grid and retrieve the SelectedItem.text for each row, but to be able to check for duplicate I need to compare the new SelectedValue with the existing SelectedValue.

The code I am using is given below.
GridTableView nestedView1 = (GridTableView)parentItem.ChildItem.NestedTableViews[0];
               foreach (GridDataItem childItem1 in nestedView1.Items)
               {
                   if (childItem1.OwnerTableView.Name == "Products")
                   {                        
                       string selectedText= childItem1["ProductId"].Text;
                       GridEditableItem NewItem1 = (GridEditableItem)e.Item;
                       TableCell NewProdId = NewItem1["ProductId"];
                       string NewTxtProdId = (NewProdId.Controls[0] as DropDownList).SelectedValue;           
                       string selectedValue="";
                       //Find a way to get selectedvalue of childItem1
                       if (selectedValue == NewTxtProdId)
                       {
                           DisplayMessage("This product id is already selected.");
                           e.Canceled = true;
                       }
                   }
               }

Any help is highly appreciated.

Thanks
Meera
Meera
Top achievements
Rank 1
 answered on 16 Jun 2012
7 answers
283 views

Any reply on this ?
Hi ,

I have a scenario where i need to do spell check for text entered in Asp textbox.. I am using combination of textbox and radspell
as below. But this is not working.

        function SpellCheckDone() {
var radTextBox1 = document.getElementById("<%=rdTxtBox.ClientID %>")
radTextBox1.updateDisplayValue();
}


 <asp:TextBox ID="rdTxtBox" runat="server" TextMode="MultiLine"></asp:TextBox>
            <telerik:RadSpell ID="rdspell1" runat="server" ControlToCheck="rdTxtBox" SpellCheckProvider="PhoneticProvider"
            SupportedLanguages ="en-US,English" OnClientDialogClosed="javascript:SpellCheckDone()" ButtonType="None"/>

Do i need to do anything further. Please help.

Regards,
Akki
Rumen
Telerik team
 answered on 16 Jun 2012
1 answer
110 views
Where do I find the ToolsFile.xml file to add a paragraph style to the RadEditor
Rumen
Telerik team
 answered on 16 Jun 2012
2 answers
116 views
Hi, im having an issue with the RadWindow. After being closed, on a postback the window reappears and cannot be closed again. I'm using Telerik ASP.NET 11.1.426.0 Q1 2011

Here's some code i have:

ASPX
<telerik:RadWindow ID="RadWindowPreindexarCarpeta" runat="server" Modal="True" Behaviors="Close, Move"
    VisibleStatusbar="False" Width="425px" Height="400px" Title="Editar tipo predefinido"
    OnClientShow="Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta.onShow"
    OnClientClose="Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta.onClose" EnableViewState="false">
    <ContentTemplate>
        <AxDMP:PreindexarCarpetaTag ID="PreindexarCarpeta" runat="server" />
    </ContentTemplate>
</telerik:RadWindow>

This is the JS associated:
Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta = {
    show: function (carpetaId) {
        var activeTooltip = Telerik.Web.UI.RadToolTip.getCurrent();
        if (activeTooltip)
            activeTooltip.hide();
        $find(Garino_Axentria_DMP_VerPreindexarCarpetaWindow).show();
        $find(Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpetaAjaxPanel).ajaxRequest('carpetaId:' + carpetaId);
    },
 
    close: function () {
        $find(Garino_Axentria_DMP_VerPreindexarCarpetaWindow).close();
    },
 
    refresh: function () {
        var explorer = $find(Garino_Axentria_DMP_BusquedaPorCarpeta_RadFileExplorerPorCarpeta);
        if (explorer) { explorer.refresh(); }
        else { $find(Garino_Axentria_DMP_AjaxManagerId).ajaxRequest(); }
    },
 
    onShow: function () {
    },
 
    onClose: function () {
        Page_IsValid = true;
        Page_Validators = [];
    }
}

Thanks,
Diego.
Diego
Top achievements
Rank 1
 answered on 15 Jun 2012
4 answers
154 views
I set the EnableVirtualScrollPaging="True" and need hide the tooltip scrolbar, the "Page n of n" text.

I try the code bellow, but don´t work

    <style type="text/css" >  
     #RadGrid1ScrollerToolTip  
     {  
       display:none;  
     }  
    </style>      

Thanks
Paulo Goncalves
Top achievements
Rank 2
 answered on 15 Jun 2012
1 answer
152 views
Friends,
Tabs are working just fine in my project but on resizing the window I'd like to re-size the tabs to make sure that they do not get messed with the other controls, any clues ?

Thanks,
-Aarsh

Alternatively...


I was trying to have a javascript just like the below one, so that as soon as the mouse hovers the Rad-menu, the Z-index becomes 100 and -1 once Mouse gets out.

I am using the following java-script for the same ...

//<![CDATA[
 
    function RadMenu1_MouseOver(sender,args)
    {
        //Add JavaScript handler code here
        var id = sender.get_id();
        var menu = $(".RadMenu(id$='" + id + "']");
        menu.css('z-index', 100);
    }
//]]>
</script>
    <script type="text/javascript" id="telerikClientEvents2">
//<![CDATA[
 
    function RadMenu1_MouseOut(sender,args)
    {
        //Add JavaScript handler code here
        //Add JavaScript handler code here
        var id = sender.get_id();
        var menu = $(".RadMenu(id$='" + id + "']");
        menu.css('z-index', -1);
    }
//]]>
Aarsh
Top achievements
Rank 1
 answered on 15 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
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?