Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
92 views
Hi,

I have a requirement whereby I need to be able to resize an appointment as it is being dragged by the user [multiple appointments are not allowed in the same slot]. Not allowing an appointment in an already used slot has been done, but I am having trouble with the second part of this requirement. As I see it, to do this I will have to be able to:
 - look at a the time-slots that are at each side of the current target_slot
 - check to see if there are any appointments in either of these slots
 - If there are, resize the current appointment.

The trouble i have at the moment is that I am not sure how to get the adjacent slots.
How do I go about doing this?

regards
Augeneer
Veronica
Telerik team
 answered on 01 Mar 2011
3 answers
148 views
Hello,

I am using a RadGrid in edit mode with only 2 columns in not ReadOnly.
These 2 columns contain RadTextBox in EditTemplate.
The RadGrid columns can be reorder by the user.

The user can type a value in these RadTextBox and valid the whole RadGrid by clicking a classic button outside the RadGrid.

On the click button event, I am retrieving the values using this code :
TextBox txtBox = (TextBox)item.Cells[14].Controls[0];

My problem is to know the index in the Cells collection...
Is there a solution the get the cells index using the uniqueName of columns? or any other solution without fixed cells numbers?


Thank you for helps,
Read you soon.


Haderach
Top achievements
Rank 1
 answered on 01 Mar 2011
1 answer
105 views
Hi all,
First off, I am not doing the coding, but need to find out some answers -- to see if what I am envisioning is possible with the Rad Editor:

We will be using the Radeditor on our intranet located on SharePoint07 (Our Intranet has many content posters with various technical skills). The RAD editor seems to be quite robust and I was wondering if it is possible to set up jQuery plugins for some of the basic features (tabs, accordian etc.). 

Is so, how or what do I need to do to get this type of functionality implemented...Or if you could just point me int he right direction.

Many Thanks,
Jared
Stanimir
Telerik team
 answered on 01 Mar 2011
3 answers
81 views
I have tested the radgrid on an ipad and it renders nicely, but I can't drag a column header to the Grouping Header.  Is there a way to support that?  If it is not supported now, will it be in the near future?

thanks
Pavel
Telerik team
 answered on 01 Mar 2011
1 answer
68 views
I am trying to put a RadTreeView control in a RadPanelBar.  All the documentation refers to using the ContentTemplate property of a PanelBar/PanelBarItem.  This property does not seem to exist in ASP.NET AJAX Q1 2010!  I need to place the TreeView in the PanelBar at runtime, designtime is not an option.  Any Suggestions?
Shinu
Top achievements
Rank 2
 answered on 01 Mar 2011
1 answer
106 views

I am trying to figure out how to reload the parent page of my application from inside of a RadWindow without the RadWIndow closing or reloading. In my application, users have the ability to open up a pop-up window that will list all of their current customers. When they click on the customer's name, the parent window is suppose to load up that particular customer's information.

Here is the code that I have to reload the parent page:

 

 

 

 

function RefreshParentPage(Url) {

 

 

GetRadWindow().BrowserWindow.location = Url;

 

}

The Url passed in the Url for the customer summary page.  This serve as a starting point for drilling down into more detail on a customer.

Right when I run the application, the pop-up appears correctly. When the user clicks on the customer's name, the parent page navigates to the summary page correctly, but the pop-up window closes. I am trying to get the summary page to stay visible until the user actually closes it.

How can I do that?

Thanks,
David

Shinu
Top achievements
Rank 2
 answered on 01 Mar 2011
2 answers
128 views
Hi
I am trying to disable a button whenever a node is clicked.from the client side.

The Treeview has PostBack disable in it.

Also I notice that the Alerts inside the javascript functions are not firing up.

The code is a ascx file which is called from a aspx page. The Treeview sits in a RadAjaxPanel.

I make use of the following code with no success:

 

 

 

 

<script type="text/javascript">
            function AssignEventHandler() {
                alert("inside Assign");
                var tree = $find("<%= rdTreeVwHIOptions.ClientID %>");
                tree.add_nodeClicked(ClientNodeClicked);
            }
  
            function ClientNodeClicked(sender, args) {
  
                alert("Node clicked!");
                var btn = $find("<%= btnSave.ClientID %>");
                btn.disabled = true;
                                  
                        
  
        </script>

 

Pls help me find a solution for this.

Thanks,
Amirtha

 

 

 

 

Amirtha S
Top achievements
Rank 1
 answered on 01 Mar 2011
1 answer
105 views
I cannot find example of how to do this.  I need this to persist no matter what date was selected, even months in advance.

Please help! Please let me know.
Shinu
Top achievements
Rank 2
 answered on 01 Mar 2011
2 answers
526 views
Hi,

I am having a problem getting a RadGrid column as a String so that I can use the data in my application.
I have tried using
Dim cell As TableCell = RadGrid1.MasterTableView("ColumnUniqueName")
then cell.text()
however I cannot seem to get the reference to my Grid.my grid is named RadGrid1 and it is located in RadMultiPage1 and RadPageview1
I have also tried finding reference to my Grid via find Control then trying to get the table cell that way but I am getting an error saying
it cannot be indexed because it has no default property.

Any help would be greatly appreciated

Thank you.
Orest
Top achievements
Rank 1
 answered on 01 Mar 2011
1 answer
65 views
I'm loading my combo box with around 4,000 items and am noticing a significant difference in performance between the old Q22007 version of the rad.combobox and the Q32010 ajax version.  Here's what my old Q22007 version looks like:

<radcb:radcombobox id="EntityList2" 
                        runat="server"
                        Skin="WindowsXP"
                        MarkFirstMatch="true"  
                        AllowCustomText="true"
                        DataSourceid="MyDataSource"
                        DataTextField="MyTextField"
                        DataValueField="MyValueField"
                        Height="400px" Width="400px" 
                        AutoPostBack="True" EnableViewState="false"></radcb:radcombobox>

Here's what I'm using for my new Q32010 combo box:

<telerik:RadComboBox  id="EntityList" 
                        runat="server"
                        MarkFirstMatch="true"  
                        AllowCustomText="true"
                        DataTextField="MyTextField"
                        DataValueField="MyValueField"
                        DataSourceID="MyDataSource"
                        Height="400px" Width="400px" EnableVirtualScrolling="true"  
                        AutoPostBack="True" EnableViewState="false"  >
                        </telerik:RadComboBox >

The old control loads the list almost instantly, but the new one takes 10 seconds!!!  How can acheive the lightening fast performance I enjoyed in the old control?  I don't want to have to use LoadOnDemand, unless it will display all items in the list.  If I can't, I'm just going to keep using the old one which is sad really. 

Travis
Top achievements
Rank 1
 answered on 01 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?