Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
130 views
Hello,

I have to slidingpanels, in one horizontal splitter, I want the bottom panel to be dock in the bottom of the splitter, but he stays on the middle. This is the simple code, any one can help me?

      <rad:RadSplitter ID="RadSplitter1"
                         runat="server"
                         Width="100%"
                         Height="100%"
                         Orientation="Horizontal">
            <rad:RadPane ID="RadPane1"
                         runat="server"
                         Height="202px"
                         Scrolling="None">
                <rad:RadSlidingZone ID="RadSlidingZone1"
                                    runat="server"
                                    Height="22px"  
                                    SlideDirection="Bottom"
                                    ClickToOpen="true">
                    <rad:RadSlidingPane ID="RadSlidingPane1"
                                        runat="server"
                                        Title="Search"
                                        TabView="TextOnly">
                    </rad:RadSlidingPane>
                </rad:RadSlidingZone>
            </rad:RadPane>
            <rad:RadPane ID="RadPane2"
                         runat="server"
                         Height="22px"
                         Scrolling="None">
                <rad:RadSlidingZone ID="RadSlidingZone2"
                                    runat="server"
                                    Height="22px"
                                    SlideDirection="Top"
                                    ClickToOpen="true">
                    <rad:RadSlidingPane ID="RadSlidingPane2"
                                        runat="server"
                                        Title="Movements List"
                                        TabView="TextOnly">
                    </rad:RadSlidingPane>
                </rad:RadSlidingZone>
                         
            </rad:RadPane>
        </rad:RadSplitter>
Svetlina Anati
Telerik team
 answered on 07 Jul 2008
1 answer
151 views
I appreciate if you could give me a link or create a new sample demostrating collaboartion between RADAjax and TabStrip/MultiView. In particular:
- loading only the active tab content
- callback on tab click
- a loading panel over the tab content during a callback
- ideally, on the first page request to display the empty tab view with a loading panel and load the tab's content on callback.

Thanks a lot!
Mishel
Top achievements
Rank 1
 answered on 07 Jul 2008
1 answer
285 views
I'm trying to expand and collapse my nested views all on the client since it typically takes 4-5 seconds just to collapse a row on the server side, and it doesn't even have to retrieve data!  So I added a javascript function to the OnRowClick client event:
function rgWtsRowClick(sender, args) {    
    var idx = args.get_itemIndexHierarchical();  
    var currentItem = sender.get_masterTableView().get_dataItems()[idx];  
 
    if(currentItem.get_selected()) {  
        currentItem.set_selected(false);  
        currentItem.set_expanded(false);  
    } else {  
        currentItem.set_selected(true);  
        currentItem.set_expanded(true);  
    }  
}  
 
I used the get_selected because I wasn't getting anything from the get_expanded.  But get_selected works, and set_selected works.  In either case, set_expanded does NOT work and I can't figure out why.  It's driving me NUTS.  I also tried setting the state from the masterViewTable using expandItem and collapseItem, but those don't work and I suspect it has something to do with the HierarchyLoadMode not being set to Client. 

Another bit of info: I'm setting the data in the nested view on the server side in the OnItemCommand method.  I check to see if the command name is "RowClick" or "ExpandCollapse" and get the data based on that.  I was expanding or collapsing the rows there too, but I found that even when I didn't have to retrieve the data and all I had to do was collapse the row, it still took 4-5 seconds.  That's just not acceptable, so I'm hoping this solution will go much quicker...?

Is there SOME example of how this works somewhere?  I have to get this project done by Friday and I can't get Telerik to respond to my support tickets.  I could really use some help...

Thanks,  eddie
Veli
Telerik team
 answered on 07 Jul 2008
1 answer
123 views
I am try to write some code to validate the names given to folders in a tree view.  I am doing this using the OnClientNodeEditting and the OnClientNodeEditted event handlers.  In the OnClientNodeEditting handler I am checking the name that the user has given for special characters, and if so changing a global variable back to the old text such that in the OnClientNodeEditted method I can set the text back if need be. 

This works well, except for the case when the user uses an ampersand.  The TreeView behaves unexpectedly when I attempt to call set_text() on the node.   It does not properly set the value of the node, it seems like somewhere the ampersand it being HTML encoded from & to &amp; which causes the set_text() method to not properly set the new node name.
Veselin Vasilev
Telerik team
 answered on 07 Jul 2008
3 answers
115 views
Hello everyone.
I want to show detail in custom form when click the command buttom.But I don't know how to imply this.
Can you give me some reference? Thanks a lot.
Shinu
Top achievements
Rank 2
 answered on 07 Jul 2008
4 answers
82 views
Hi everbody, I'm using RadScheduler for develop SchedulerOnline, but it have problem, is when I run application in IE  it run so good, but when I run it on Fire Fox3 its CSS is pell-mell. It can't view correct. And below is image you can see:
http://hongnguyenx.freewebspace4me.com/images/error.JPG

If who can fix the problem, please help me!!!
Thnks so much


hongnguyenx
Top achievements
Rank 1
 answered on 07 Jul 2008
1 answer
144 views
I have a problem.  I have a rad splitter with two panes left and right which are all maximized to full screen.

The right panel's content URL is set to a different page.  When this is done, we get double scroll bars on the right.  we have one disabled but it is still visible. 

I have tried activating and deactiviating each scroll bar .
Setting scrolling=no does not work as we need to scroll the nested content page.

Does anyone know how to only get one working scroll bar inside the contentURL's page?

thanks,
- John
George
Telerik team
 answered on 07 Jul 2008
3 answers
89 views
Hi!

After installing the latest Telerik.Web.UI.dll (version: 2008.1.619.20) we have experienced some problems. Are these bugs or is there settings/changes we hav to make?

  •  Image Map Manager - Image not showing, wrong image path?
  • Image Manager - No scrollbar in image manager dialog

Kind regards
David Ahlbaum

Rumen
Telerik team
 answered on 07 Jul 2008
1 answer
61 views
I would like to know if it's possible to configure the schedule in week view for a couple of ressources.
I have to present a planning for 5 persons for a week on the same screen.

Thank you
Simon
Telerik team
 answered on 07 Jul 2008
1 answer
86 views
Hai,
          I am using leftcontrol in my project.This user control is to be a header of my aspx page.In all my aspx pages i add this control as a header.In this header control i have some link so on the mouse over of this control i written the javascript to show three link names one by one.In my aspx pages i am using the radajax manager control so after i run my project initially the header will works fine.But when i do some changes or some works on my aspx page and then i am going to change the links in the header control it doesn't works.When i place my mouse over that link it doesn't show anything.
I know the problem is due to radajaxmanager on my page.
what is the solution for this problem?
Maria Ilieva
Telerik team
 answered on 07 Jul 2008
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?