Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
59 views
Hi..
    In RadFilter control Add Expression click how to get count. see my image.

Advanced Thanks
Tamim.
Tamim
Top achievements
Rank 1
 asked on 17 Jun 2012
0 answers
46 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
31 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
172 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
104 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
143 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
212 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
92 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
97 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
128 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?