Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
115 views
Hello,

I want to create a simple slider that would otherwise take the place of a vertical scrollbar and would show up only when a text string is too large to fit into a specifically sized div.

I can do this easily enough with CSS as such:

<div class="text" style="width:200px;height:100px;overflow:auto;" >
<h4>Details:</h4>
<p>An error message is a message displayed when, etc. etc.<p>
</div>

When the text string is longer than what will fit inside a 200x100 box a slider appears and allows the user to see the remainder of the text by scrolling down.

Basically all I want to do is replace the default scroll bar with something that looks better.

I looked at the live example (http://demos.telerik.com/aspnet-ajax/slider/examples/customscrollbar/defaultcs.aspx) but I'm having trouble understanding the sample code provided at the bottom of the page. My experience is heavy in design, XHTML markup, and CSS but light in programming, do I need a developer to help me with this or is there something specific I should read up on that can help me understand how to implement this?

Thanks,
Bob
Robert
Top achievements
Rank 1
 answered on 20 Mar 2009
1 answer
167 views
For the bubbles i has to define the horizontal and vertical size with the two values XValue2 and YValue2. Depending of the x- and y-axis and the values i get ellipses or so.

I would like generate always circles with only one value for the diameter and independent of the dimensions of the both axis.

How can i realize this in vb.net?

Regards and thanks
Chris
Dessy
Telerik team
 answered on 20 Mar 2009
2 answers
149 views
This is maybe a difficult request, but it will be nice to be able to use the recurrence edit form UI separately from the advanced edit form.

The closest I can find is from this thread: http://www.telerik.com/community/forums/aspnet-ajax/scheduler/using-only-the-scheduler-recurrence-as-form-template.aspx#757824
The problem is that this requires a full scheduler control and scheduler events handling.

I like to be able to have a custom form and able to add the recurrence UI without adding an entire scheduler to the form. And it will be nice to get the recurrence string directly when saving data without going through the appointment object.

So telerik team, please consider creating a separate control for the recurrence UI. Maybe named it RadSchedulerRecurrence?

Thank you.
HHalim
Top achievements
Rank 2
 answered on 20 Mar 2009
1 answer
136 views
I want to add a new row and new column in grid like excel.
Like when i right click on the row ,i can add anew row above it ,
same with the column.

And how can we do the client side sorting like excel with out post back.
Pavlina
Telerik team
 answered on 20 Mar 2009
7 answers
222 views
Hi,

I have sliding zone and couple of panes which I want to control using RadMenu, so I want to hide all the sliding panes' tabs and expand/collapse panes using RadMenu. I managed to hide the tabs using CSS (display:none) and expand/collapse panes when clicking RadMenu items. Problem is that sliding panes are not placed where they should be and are rather opened on top left corner of the IE. Can you tell me is it possible to implement this kind of behaviour?

Regards,
Pete
Neil
Top achievements
Rank 1
 answered on 20 Mar 2009
2 answers
75 views

Hi,

I have a RadTreeView control which is used with a RadAjaxLoadingPanel.

When I drag and drop nodes the loading panel displays as required.

However I don't want the loadingpanel to display when I click a node. How can I stop the loadingpanel from displaying when I click a node.

This seems simple but I can't figure it out!

<telerik:RadScriptManager ID="RadScriptManager1" Runat="server" />    
    
        <telerik:RadTreeView runat="server" ID="uiRadTreeView" EnableDragAndDrop="true"    
                             EnableDragAndDropBetweenNodes="true"    
                             MultipleSelect="true"                    
                             onnodedrop="uiRadTreeView_NodeDrop"      
                             onnodedatabound="uiRadTreeView_NodeDataBound"      
                             onnodeclick="uiRadTreeView_NodeClick"    
                             >    
        </telerik:RadTreeView>    
                 
        <telerik:RadAjaxManager id="RadAjaxManager1" runat="server" >    
            <AjaxSettings>    
                <telerik:AjaxSetting AjaxControlID="uiRadTreeView">     
                        <UpdatedControls>    
                            <telerik:AjaxUpdatedControl ControlID="uiRadTreeView" LoadingPanelId="LoadingPanel1"></telerik:AjaxUpdatedControl>    
                        </UpdatedControls>    
                    </telerik:AjaxSetting>    
            </AjaxSettings>    
        </telerik:RadAjaxManager>    
    
        <telerik:RadAjaxLoadingPanel id="LoadingPanel1" Runat="server" Transparency="30" BackColor="#E0E0E0">     
                <asp:Image style="margin-top:100px;" id="Image1" runat="server" AlternateText="Loading..." BorderWidth="10px" ImageUrl="anim.gif"></asp:Image>   

Many Thanks
Cos
Top achievements
Rank 1
 answered on 20 Mar 2009
1 answer
109 views
Hi there,

I wanted to delete a pane from sliding zone but I didn't see any functionality that lets you directly do this
on the client side (javascript). There is a  HideTab() method in the sliding pane but this doesn't really help
my cause because I have to make sure the pane is deleted. Can somebody show me how to appropriately
delete a pane from sliding zone on Client side? This is the closest i got to deleting a tab pane:
 

function deleteTab(TabName)

{

 

    var slidingZone = $find("<%= TreeSlidingZoneLeft.ClientID %>");

 

    var slidingPane = FindTabPaneByTitle(TabName);

 

 

 

 

    if(slidingPane != null)  

    {

        slidingZone.UndockPane(slidingPane.get_id());

        slidingPane.getTabContainer().removeNode(slidingPane);

        slidingPane.getContentContainer().removeNode(slidingPane);

        ArrayRemove(slidingZone._slidingPanes, index);

        slidingPane.HideTab();

 

 

    }

}
 

 

 

function ArrayRemove(array, from, to) { 

 

    var rest = array.slice((to || from) + 1 || array.length);

 

 

     array.length = from < 0 ? array.length + from : from;

 

   return array.push.apply(array, rest);

 

 

 

};

function FindTabPaneByTitle(TabName)

{

 

    var slidingPanes = getPanes();

 

 

 

    var slidingPane = null;

 

 

 

    for (var i = 0; i < slidingPanes.length; i++)

    {

        container = slidingPanes[i].GetTabContainer();

 

 

        if(container.title.toLowerCase() == TabName.toLowerCase())

        {

            index = i;

 

            slidingPane = slidingPanes[i];

 

            break;

        }

    }

 

 

 

    return slidingPane;

}

 

 

function getPanes()

{

 

    var slidingZone = $find("<%= TreeSlidingZoneLeft.ClientID %>");

 

 

 

    return slidingZone.getPanes();

}

Thanks,

James

 

 

 

 

 

 

 

Tsvetie
Telerik team
 answered on 20 Mar 2009
3 answers
146 views
say i'm using datatable to assign to the grid
radgrid1.datasource = datatable

but if the sqldatareader is empty then how do i display radgrid1.text = "No records found" i want to display that message in the grid. thank you very much.
Daniel
Telerik team
 answered on 20 Mar 2009
2 answers
122 views
Hi,

I am using RadScheduler in my application.I am overriding different css classes to customize skin of Scheduler.The problem is , I want to place the Calendar(along with next previous day buttons) on right hand corner of Scheduler.I have done this and Today,next,previous and Select Date buttons move on the right hand side but If I click the "Select Date" then Calendar still opens on left hand corner.Please tell me how can I place all these buttons on right side so that Calendar opens on right hand side.

Thanks


Alex Gyoshev
Telerik team
 answered on 20 Mar 2009
1 answer
132 views
Hello Telerik,

When we are using the firefox to paste a bulleted content, the bullets will not be displayed in the editor. Can you please help me to get a solution?

Its not working even in the demo site of Telerik. To recreate the issue, follow below steps.

1. Open the link in firefox- http://demos.telerik.com/aspnet-ajax/editor/examples/default/defaultcs.aspx 
2. Paste bulleted data from a word document.
3. The bullets will not be appeared in the editor.

Thanks
Tiju
Rumen
Telerik team
 answered on 20 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?