Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
28 views
Hello team,

I m working on radtreeview latest version. my requirement is that i want to customize the css of my treeview. i tried a lot on this , but it dont give me adject what i want.
mainly which problem i faced is that:

How can i hide i images "Nodespan" even if there is not exits images in my folder.
How can i hide the border the nodes.

i have atttached my CSS file and expected treeview node image. 
Plaese help me out. its urgent for me.
Anshul
Top achievements
Rank 1
 asked on 27 Feb 2014
5 answers
173 views
Hi,

PFA

it is possible to perform sorting,flitring and grouping on the column which has drop down list inside it.

please reply asap.


thanks.
Princy
Top achievements
Rank 2
 answered on 27 Feb 2014
1 answer
82 views
Rad window in side validation, i given validation initially to 2 rad text box fields  ,I have 3[R1,R2.R3] Rad combo box  if i select R1 combobox  no validation, when i select R2 combo box must and should select R3 combo box,
just like same when i select R3 combo box must and should select R2,
I have set condition but always fire previous validation when I refresh the validation fire correctly 
   {I using requiredfieldvalidator and validation group  to all fields ,the validation group to Rad Button,this functionality done after click rad button }


    pls help me server side code


Shinu
Top achievements
Rank 2
 answered on 27 Feb 2014
1 answer
44 views
I have RadPanelBar inside RadSplitter on master page.

I am calling different pages on click of RadPanelItem of RadPanelBar from master pages.

I have AjaxManager on master page with RadLoadingPanel for showing loading image.

Loading image doesnot animate when I redirects to another page but it works fine for other functionality.
Shinu
Top achievements
Rank 2
 answered on 27 Feb 2014
1 answer
39 views
I have a main page that contains the radAjaxManager.  Then, on a user control, I have the following defined:

<telerik:RadAjaxManagerProxy ID="rampObjectIndexInfo" runat="server" />
<telerik:RadAjaxLoadingPanel ID="ralpObjectIndexInfo" runat="server" />

Within the user control, I create a series of dynamic controls.  At some times, we create repeating rows of fields where the user can add additional rows (e.g., we initially define 2 rows of three text boxes, but the user can add additional rows as they desire).  We define the buttons as follows (only the minus button is shown, the plus button is defined pretty much the same):

ImageButton minusButton = new ImageButton();
minusButton.ImageUrl = GetString("ObjectDetails.IndexingInfo.RepeatingRowRemove.ImageName");
minusButton.AlternateText = GetString("ObjectDetails.IndexingInfo.RepeatingRowRemove.AltText");
minusButton.OnClientClick = "RemoveLine('" + dataGroupId + "', 'btnpm_" + dataGroupId + "_" + controlSuffix + "'," + controlSuffix + ");";
minusButton.ID = epCustom.ID + "_M_" + (controlSuffix);
minusButton.Style.Add("padding-right", "3px");

//Index info is an array of dynamically created controls that will be displayed to the user
indexInfo.Controls.Add(minusButton);
rampObjectIndexInfo.AjaxSettings.AddAjaxSetting(minusButton, minusButton.Parent, ralpObjectIndexInfo);

The issue I'm having is that instead of executing the OnClientClick event, a full post-back is executed and the form is entirely reloaded (which is what we're trying to avoid since there are a half-dozen other controls that update as well and that causes a major performance hit).

What am I missing?
Shinu
Top achievements
Rank 2
 answered on 27 Feb 2014
1 answer
37 views
in the 2010 version had no problem 
value = item ["COLUMN_NAME"]. Text  (value correct)

in the 2013 version I have a problem
value = item ["COLUMN_NAME"]. Text  (value incorrect), return (&nbsp;)
Princy
Top achievements
Rank 2
 answered on 27 Feb 2014
1 answer
92 views

Hi I made couple of changes on my ISS server and I'm trying to re install my project, I have telerik already but Im getting this error: Could not load type 'System.Runtime.CompilerServices.ExtensionAttribute'  when I try to load the project

Please let me know how can I fix this problem

Thank you

Carolina

Digno Martinez
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
89 views
Hi All,

I have some questions regarding telerik dll's upgrade. Can any one help me on below questions:

1. As of now i am using telerik open access web version 2011.2.713.3 for my asp.net web application, Most of the functionalities working fine for this dlls. Now i want to upgrade to
Open DATA Access ORM (version: 2013 Q3 SP1 - 2013.3.78.1835) and UI for ASP.NET AJAX (2013 Q3 - 2013.3.1114.35). My question is
Is this version will support all functionalities and UI look and feel same as previous version? I found Some linq quries from my code are not supporting these dlls.

2. I want to know the steps to upgrade the dlls to new version.

Thanks in Advance
Vijay.
vijayakrishna
Top achievements
Rank 1
 answered on 27 Feb 2014
0 answers
36 views
I have a rad menu declared like this :

<telerik:RadMenu runat="server" ID="RadMenu1">
            <Items>
                <telerik:RadMenuItem runat="server" Text="Root RadMenuItem1">
                    <Items>
                        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 1">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 2">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 3">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 4">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 5">
                        </telerik:RadMenuItem>
                    </Items>
                </telerik:RadMenuItem>
                <telerik:RadMenuItem runat="server" Text="SpotLight">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenu>

Now I actually want to copy some of the items to "SpotLight" item, I do not want to move them which is what happening now, I actually want to copy them over :

Here is what I am trying  :

.
.
.
<
telerik:RadMenuItem runat="server" Text="SpotLight">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenu>
        <telerik:RadScriptBlock runat="server">
            <script type="text/javascript">
                $(function () {
 
                    var
                            rootMenu = $find('<%=RadMenu1.ClientID %>'),
                            menuItems = rootMenu.get_allItems();
                            var myItems = [];
                            myItems.push(menuItems[1]);
                            myItems.push(menuItems[3]);
                            myItems.push(menuItems[4]);
 
                            var targetItem = rootMenu.findItemByText("SpotLight");
 
                             
                            for (var i = 0; i < myItems.length; i++) {
                                targetItem.get_items().add(myItems[i]);
                            }
                            //debugger;
                });
            </script>
        </telerik:RadScriptBlock>
    </div>
    </form>
.
.
.

Aarsh
Top achievements
Rank 1
 asked on 26 Feb 2014
2 answers
233 views
I have a page that is longer (vertically) than the browser window, and will probably always be that way. The bottom of the form has a contact us section where you can enter your email address, a message and click a button to send an email to the site administrator. I want to display a modal dialog message in a RadWindow informing them that the message was sent. But I want to retain the parent window's scroll position. This means that I need to position the window over the section of the page that is visible, and prevent the main page from resetting to the top of the form. Is there any examples of doing something like this?

Thanks, Steve
neebs
Top achievements
Rank 2
 answered on 26 Feb 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?