Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
93 views
Hi,

I am struggling with a problem that I cannot resolve. I get a whitespace above the grid headers when I am using any other Skin than default, with the default skin it looks fine, but I am using WebBlue and its got this nasty whitespace.

Secondly I use DetailTables, and even though I set the detail table width to 100% there is still quite a big gap at the end of the detail grid.

Thanks
Paul
Top achievements
Rank 1
 answered on 26 Jun 2013
1 answer
84 views
Hello,

I want to implement that if you click one row,then you can edit, And you click another row, the row you just edited will update and the new row will go into edit mode.

I got some examples, but they just implement it as do one thing at one time.

Anyone can help me I really appreciate it.

Thank you.
Venelin
Telerik team
 answered on 26 Jun 2013
1 answer
104 views
Hello,

I have a web Application having some telerik controls.

i have following telerik Control :

telerik:RadWindowManager ID="RadWindowManager1" runat="server" Behavior="Close" VisibleStatusbar="false" VisibleTitlebar="true"
        InitialBehavior="None" ShowContentDuringLoad="false"  Modal="True" Overlay="True" 
        Behaviors="None" Height="640px" Width="900px" Skin="Telerik" EnableShadow="true" OnClientResizeEnd="SetWindowBehavior" >
        <Windows>
            <telerik:RadWindow ID="RadWindowTreeview" Title="Careplan Tree" runat="server" Modal="true"
                OnClientClose="OnClientClose" Behaviors="Close" BackColor="Transparent" DestroyOnClose="false"
                NavigateUrl="MainTreeContainer.aspx" BorderStyle="None" Visible="True" VisibleStatusbar="False"
                VisibleTitlebar="False" Width="900px" Height="640px" Animation="Fade" AutoSize="False"
                AnimationDuration="1000" Opacity="100">  </telerik:RadWindow>
            <telerik:RadWindow ID="RadWindow1" CssClass="defaultWindow" Width="900px" Height="640px" AutoSize="False"
                runat="server" Modal="true" Behaviors="None" Overlay="true" NavigateUrl="~/Terms.aspx"  OnClientClose="OnClientClose1" >
            </telerik:RadWindow>
 
             <telerik:RadWindow ID="RadWindow3"  CssClass="defaultWindow" MinWidth="900px" MinHeight="640px" AutoSize="False"
                runat="server" Modal="true" Behaviors="None" Overlay="true" NavigateUrl="~/Privacy.aspx"  OnClientClose="OnClientClose3" >
            </telerik:RadWindow>
 
        </Windows>
    </telerik:RadWindowManager>

i am opening an aspx form in RadWindowTreeview Radwindow .. i have overridden some telerik CSS like following:

.rwWindowContent, .rwExternalContent
        {
            border-style: groove !important;
            border-width: 1px;
            border-radius: 10px;
            background-image: url('background.jpg') !important;
            border-color: GhostWhite;
        }

but the background image doesn't display in IE8 only.. it displays well in Mozila, chrome,safari and IE9.. but not display only in IE8..

any suggestions ? thanks...

Marin Bratanov
Telerik team
 answered on 26 Jun 2013
1 answer
131 views
Hello...

I have a WebApplication having some telerik controls.

I have added RadWindow control in this web application and inside this radwindow i have added RadSplitter control as shown follows:

<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Behavior="Close" VisibleStatusbar="false" VisibleTitlebar="true"
       InitialBehavior="None" ShowContentDuringLoad="false"  Modal="True" Overlay="True"
       Behaviors="None" Height="640px" Width="900px" Skin="Telerik" EnableShadow="true" OnClientResizeEnd="SetWindowBehavior" >
       <Windows>
           <telerik:RadWindow ID="RadWindowTreeview" Title="Careplan Tree" runat="server" Modal="true"
               OnClientClose="OnClientClose" Behaviors="Close" BackColor="Transparent" DestroyOnClose="false"
               NavigateUrl="MainTreeContainer.aspx" BorderStyle="None" Visible="True" VisibleStatusbar="False"
               VisibleTitlebar="False" Width="900px" Height="640px" Animation="Fade" AutoSize="false" 
               AnimationDuration="1000" Opacity="100" OnClientShow="OnclientShow"></telerik:RadWindow>
           <telerik:RadWindow ID="RadWindow1" CssClass="defaultWindow" Width="900px" Height="640px" AutoSize="False"
               runat="server" Modal="true" Behaviors="None" Overlay="true" NavigateUrl="~/Terms.aspx"  OnClientClose="OnClientClose1" >
           </telerik:RadWindow>
          
            <telerik:RadWindow ID="RadWindow3"  CssClass="defaultWindow" MinWidth="900px" MinHeight="640px" AutoSize="False"
               runat="server" Modal="true" Behaviors="None" Overlay="true" NavigateUrl="~/Privacy.aspx"  OnClientClose="OnClientClose3" >
           </telerik:RadWindow>
          
       </Windows>
   </telerik:RadWindowManager>

RadSplitter :
<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="100%" Width="99.5%"  BorderSize="0" BorderStyle="None" SplitBarsSize="10px">
                   <telerik:RadPane ID="LeftPane" runat="server"  CssClass = "treeviewcontainer" Scrolling="None">                   
                       <uc:MainTreeview ID="MainTreeview" runat="server" treename="MainTree" masterView="true" viewMode="false" IsManualEntry="false" />
                   </telerik:RadPane>
                   <telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Both">
                   </telerik:RadSplitBar>
                   <telerik:RadPane ID="RightPane" runat="server"  CssClass="treeviewcontainer" Scrolling="None">
                      <uc:MainTreeview ID="TemplateTreeview" runat="server" treename="TemplateTree" masterView="true" viewMode="false" IsManualEntry="false" />
                   </telerik:RadPane>
               </telerik:RadSplitter>


when i open this popup control it displays well in Mozila firefox , Safari , IE but it generate some design error in Chrome browser this design error exists until i click on Chrome Dev tool: after closing the Chrom dev tool the error disappear :  as shown in attached two images..

please check the attachment and give any suggestions:

when i apply autosize="True" in radwindow the problem doesn't arrives,.. but then in Mozila the radwindow size gets decrees and doesn't displays well

thanks




Marin Bratanov
Telerik team
 answered on 26 Jun 2013
2 answers
79 views
Hi,
      I would like to change the colour of the > icon on hierachical grids because it does not show when the colour of the grid line is white.
please can you help me to do this.

regards

Robert Smith
DJ
Top achievements
Rank 1
 answered on 26 Jun 2013
2 answers
109 views
Dear Telerik Team,

I want to add event on node click on treeview part of RadFileExplorer. I add it on page load in code behind
:
RadFileExplorer1.TreeView.OnClientNodeClicking = "RadTreeView1_NodeClick";

My test function is simple :

public void RadTreeView1_NodeClick(object o, RadTreeNodeEventArgs e)
{
     e.Node.Text = e.Node.Value;
}

When I click on node the request is send but it's abordted. In firebug I see "abordted" status for the request and after there has requests to infinity .

Regards,
Martial
PJ
Top achievements
Rank 1
 answered on 26 Jun 2013
2 answers
153 views

How can I use the CSS Skin File to style only the first level nodes of the TreeView?  I have tried styling rtTop and rtFirst, but those only style the first node of each level of the first branch or the very first node of the whole tree.  In addition, how can I have the lines show only on the lower level nodes and NOT for the first level?

I've attached two images to illustrate my request.  The first is the TreeView as it appears by default and the second is how I would like the TreeView to be styled (first level nodes that have a background style and no lines connecting them).

Any help with this would be greatly appreciated.

Thank you!

Bre
Top achievements
Rank 1
 answered on 26 Jun 2013
1 answer
106 views
Hi,

Is it possible to make the filtering of the RadSearchBox case insensitive?
The results in my searchbox are all uppercase, but the user usually types in lowercase.

So if the user types "g101", there's a result "G101". When selecting the resultitem I get the resultitem in the postback. (e.Value is filled)
When typing "g101" and directly pushing ENTER only the e.Text is filled, not e.Value.

See attachment for example.

Can anyone help me with this?
Plamen
Telerik team
 answered on 26 Jun 2013
1 answer
64 views
Hi guys
I have an issue with StripFormattingOnPaste functionality.
Setting StripFormattingOnPaste = AllExceptNewLine when paste html content with &nbsp; tag inside these tag are not removed.

If I use "Past plain text button" all tag &nbsp; are removed.

StripFormattingOnPaste = AllExceptNewLine and "Past plain text button" have different results, it is possible to set "Past plain text" as default behavior when paste content?

Is possible delete &nbsp; when past content? 

For testing I have used this page 
Thanks.
Ianko
Telerik team
 answered on 26 Jun 2013
3 answers
68 views
I have created a dynamic hierarchical grid bind with dataset.
I would like to have provision for Add/Update/Delete. I could not do that. even i don't see any demos for the same to my knowledge that is not doable.
Is there a way to do? please redirect me.

Thanks in Advance.
Andrey
Telerik team
 answered on 26 Jun 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?