Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
87 views
I am having an issue where the dropdown for the datagrid is badly formatted and the number are not displayed correctly. I am using the default configuration and have not changed any styles. Can anyone please help?

The dropdown list for the page size is showing both vertical and horizontal scroll bars.
Pavlina
Telerik team
 answered on 03 Sep 2009
4 answers
190 views
Say I drag a dock to a zone. How to add a close command to the dock on client side?
Mr. Plinko
Top achievements
Rank 1
 answered on 03 Sep 2009
4 answers
386 views
is there a built in way to unselect the selected tab when selected tab is clicked again? client side...
Steve
Top achievements
Rank 1
 answered on 03 Sep 2009
2 answers
142 views
Hi there

I am using a RadGrid with ClientSettings.Resizing.AllowColumnResize set to true;

However, I have a user who is finding it difficult to position his cursor at the point needed to trigger the "Drag to resize" resizing handle cursor. He is not able to position the cursor that accurately. 

I am struggling to work out where to make the changes needed to increase the size of the area in which he needs to hover the cursor so that he doesn't have to be so precise in his positioning. Could anyone please advise me as to the best way to do this?

Thanks in advance

Tim
Tim Hardy
Top achievements
Rank 1
 answered on 03 Sep 2009
2 answers
74 views
I have created a grid that will update/insert and delete...  There is one column that I want to be read only for an update but need it for the insert. I have created this column as a GridDropDownColumn... can someone tell me how i can turn it off and on depending on update or if its an insert...

Thanks
Gina
Mira
Telerik team
 answered on 03 Sep 2009
1 answer
221 views
Hi,
I have RadGrid with one GridDropDownColumn, I want to populate this coulmn by a IList<Item> where item is
 

public

 

class Item

 

 

{

 

public string ItemData { get; set; }

 

public string ItemDescription { get; set; }

 

 

}

 

 

On myGridLoad()
I am populating IList<iTem>

 

DataGridComboBoxColumn 

 

dataGridComboBoxColumn = new DataGridComboBoxColumn();

 

 

IList<Item> DropDownList = new List<Item>();

 

for (int idx = 0; idx < 10; ++idx)

 

{

 

 

Item item = new Item();

item.ItemData = dropdownList[idx];

item.ItemDescription = dropdownList[++idx];

DropDownList.Add(item);

}

dataGridComboBoxColumn.ListValueField =

"ItemData";

 

 

dataGridComboBoxColumn.ListTextField =

"ItemDescription";

 

 

 

//how to assign this IList<item> to the ComboBoxColumn
//dataGridComboBoxColumn.DataSourceID = DropDownList;

}

 

 

 

 
Please let me know how to handle this.

thanks
virendra kumar

 

 

 

 

 

 

Mira
Telerik team
 answered on 03 Sep 2009
3 answers
141 views
Hi,


I am not sure about the status of what I am about to report, so I will write it for to be sure.

When using radGrid with the SelfHierarchy functionality and LinqDataSource , the default FilterExpression where I specify the default filter for the top parets isn't working correctly. My guess is that it is being applied to child items also.

I replaced the LinqDataSource with SqlDataSource, and it started working as expected - the filter was being applied only to the top master details view.

To replicate this use a LinqDataSource object with any type of select in it - it doesn't matter. Then set a filter - simple example "ParentId == null". It will load the parents correctly, but it will look for their childs wrong. I can also provide simple source code if it is needed to replicate the error.

Let me know about the status of this, because I would really not want to use SqlDataSource instead of LinqDataSource.

Best Regards,

Ivan.
Daniel
Telerik team
 answered on 03 Sep 2009
0 answers
67 views
Hi,

We are using our custom tables to  store appointments and recurence rules.

We are facing an problem while editing  the appt (i.e. double click and  edit)  
While  editing  a recurring  appt, we get the following options - Which is good.  
1.Edit this Occurrence
2.Edit the series
if "Edit this occurrence" is selected the inline edit form opens with the details populated and i can update. -> No issues here
but if i click Edit the series,the inline edit form opens but no data's gets populated. 
In FormCreated e.appointment object is null.
 

Thanks  for any suggestions

Code:
         <InlineEditTemplate>
                <asp:TextBox runat="server" ID="txtEdit" Height="50%" Text='<%# Eval("Subject") %>' Width="95%">
                    </asp:TextBox>
                    <div>
                        <table>
                            <tr>
                                <td>
                                    <asp:Label ID="lblEditStartTime" Visible="false" runat="server" Text="Start time:"></asp:Label>
                                </td>
                                <td>
                                    <telerik:RadTimePicker ID="tpEditStartTime" Visible="false"  SelectedDate='<%# Bind("Start") %>'  Skin="Web20" runat="server">
                                    </telerik:RadTimePicker>
                                </td>
                               
                                <td>
                                    <asp:Label ID="lblEditEndTime" Visible="true" runat="server" Text="End time:"></asp:Label>
                                </td>
                                <td>
                                     <telerik:RadTimePicker ID="tpEditEndTime"  SelectedDate='<%# Bind("End") %>'  Skin="Web20" runat="server">
                                     </telerik:RadTimePicker>
                                </td>
                                <td>
                                    <asp:Button ID="btnUpdate"  runat="server"  SkinID="Web20" CommandName="Update" Text="Update" />
                                </td>
                                <td>
                                     <asp:Button ID="btnCancel" runat="server" SkinID="Web20" CommandName="Cancel" Text="Cancel" />
                                </td>
                            </tr>
                          
                        </table>
                     <asp:Label ID="lblId" Visible="false" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
                    </div>
                 </InlineEditTemplate>


Anand S
Top achievements
Rank 1
 asked on 03 Sep 2009
2 answers
113 views
Hi,

I have a need to use the repeater control outside of the scheduler.  I have a system where I need to be able to present a schedule to the user and then they choose specific dates.  I see that there is a way to get the repeater to generate dates from a given set of criteria but is there any way to reuse the repeater part of the appointment editing control in my custom application?

Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 03 Sep 2009
2 answers
111 views
I have implemented URL rewriting for my site. It wasn't working so I asked my host to have a look at it for me. They said they needed to add a wildcard mapping for .net, which will mean all file extensions are  processed by .net.
I gave them the go ahead and once they had done this my URL rewriting started working.

The issue is that since they did that, none of the RadControls are being displayed. Instead they have changed to normal .net controls. I first noticed this with the form redecorator and then realised it is every control.
I am not sure whether it is because of the wildcard, but it just seems like too much of a coincidence that we changed that and then this started happening.

I have tested the site on my machine and it works as expected.
I removed all references to the telerik.web.ui and then added the latest version and tested this. Again it worked on my server, but as soon as it was uploaded, I was experiencing the same issues.

Is there a solution?
Jaymie
Top achievements
Rank 1
 answered on 03 Sep 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?