Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
68 views
Hi, I'm building a dotnetnuke module where I open a radwindow.
In the radwindow, there is a radtabstrip with a radpageview.

When I add 1 radpageview, there is no problem.
However, when I add a second one, it will give a javascript error saying error: invalid argument.
The error only happens in IE.

I also tried to directly use the tabstrip in the module (so not in the radwindow) and that seemed to work fine in IE.
So it seems to be a combination of the radwindow and the radpageview

Can anyone help me with this?
Marnix Bouwman
Top achievements
Rank 2
 asked on 31 Jan 2011
3 answers
57 views
Hi,

i have something really strange:
RadEditor doesnt show up in IE8 within AdvancedInsertTemplate or AdvancedEditTemplate from RadScheduler.
In Firefox 3.6.13, it looks better.
Here the code:
<telerik:RadPanelBar runat="server" ID="RPB_COB" Width="100%">
            <Items>
                <telerik:RadPanelItem Text="Contenu/Objectifs/Bilan" Expanded="True" runat="server">
                    <Items>
                        <telerik:RadPanelItem Value="COB" runat="server">
                            <ItemTemplate>
                                <!-- more code here ... -->
 
                                <telerik:RadEditor ID="RE_C" runat="server" EditModes="Design"
                                        ToolbarMode="ShowOnFocus" Width="200" Height="200">
                                    <Tools>
                                        <telerik:EditorToolGroup Tag="Formatting">
                                            <telerik:EditorTool Name="Bold" />
                                            <telerik:EditorTool Name="Italic" />
                                            <telerik:EditorTool Name="Underline" />
                                            <telerik:EditorSeparator />
                                            <telerik:EditorTool Name="ForeColor" />
                                        </telerik:EditorToolGroup>
                                    </Tools>
                                </telerik:RadEditor>
                            </ItemTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
            </Items>
        </telerik:RadPanelBar>

In attachments, you can see some screenshots to see how it looks like within IE8 and FF3.6.13

Thank you in advance for your help and support.
Lucien
Peter
Telerik team
 answered on 31 Jan 2011
3 answers
114 views
Hi,

we use the following version: 2008.1.515.20
we want to upgrade to the newer version, so we downloaded the trial version for testing it.
after we replaced the files, we saw that we get strange behavior with the style, please look at the attached image
the left side is the new version
right side is the old version

please see the differences which are highlighted in red

what can cause it?

Yana
Telerik team
 answered on 31 Jan 2011
3 answers
48 views


     There are several differences between IE and Firefox related to adding (or removing) columns to a grid via the header menu.  This Telerik example shows one:

http://demos.telerik.com/aspnet-ajax/grid/examples/programming/savinggridsettingsonperuserbasis/defaultcs.aspx

In that example, when columns are removed, in IE, the grid frame stays the original size, but the remaining columns shrink, so they do not occupy the available space correctly.  This does not happen in FF.  The IE behavior definitely looks buggy.

     I'm seeing a similar behavior in an application I am about to ship.  To address it, I am going to try to Postback to the server, but, there is no event that fires when the HeaderMenu is finished its work.  The columnShown and hidden Events seems to fire for every checkbox that is toggled, which is much too often.  Can anyone suggest a way to execute a Postback after the HeaderMenu closes?

     The demo linked above does not have a horizontal scrollbar, and not having one creates some strange behaviors.  But, in my app there is a horizontal scrollbar, and that causes more bad behavior in IE that FF handles differently.

     In that case, with a horizontal scrollbar, when columns are added in IE that cause the grid width to be a lot larger than it was, frequently the RadGrid won't show the last column.  When the user tries to scroll, the scrollbar will bounce back, away from the right-side edge, and the last column will be inaccessible.  This is worse than the IE behavior that can be seen in the link above, but I didn't see any official Telerik examples that had both column selection from the HeaderMenu and a horizontal scrollbar. 

Is this known to not work in IE?

thanks for any help,

Sean
Pavlina
Telerik team
 answered on 31 Jan 2011
1 answer
81 views
Hi! I have set up the editor with the Link-Light button, everything works as planned.  I also hid the All Properties button on that dialog since we dont want to give our users the richness of the Link Manager dialog.

When I right click on a link, I can conveniently remove the link, but I also get this "Properties..." option that will take me to the Link Manager. How can I make the Properties... option within the context menu take me to the LightLink dialog?

Thanks,
Ricardo.
Dobromir
Telerik team
 answered on 31 Jan 2011
1 answer
140 views
Dear Admin ,
i'm using RadCoboBox with objectDatasource by setting the DataSourceID by the objectdatasource ID , the object datasource returned DataTable .

when her tying to render this control in the design mode it gives that error .

Note:its worked fine in the run mode 

Please Give me you assist
my work in the page too slow 

regards 
Ab Abulubbad

<tel:RadComboBox ID="ddlQuarter" Runat="server" A="" AllowCustomText="false"
                  AppendDataBoundItems="true" AutoPostBack="True"  DataSourceID="odsQuarter" DataTextField="LookupDetalDeepName"
                  DataValueField="LookupDetailsDeep_ID"
                  HighlightTemplatedItems="true" MarkFirstMatch="true" Skin="Web20">
                  <Items>
                      <tel:RadComboBoxItem Text="------Please Choose-----" Value="0" />
                  </Items>
              </tel:RadComboBox>
              <asp:ObjectDataSource ID="odsQuarter" runat="server"
                  SelectMethod="GetLockupDetails"
                  TypeName="GWERP.DataAccess.Lockups.GeneralLookupDeep">
                  <SelectParameters>
                      <asp:ControlParameter ControlID="ddlCity" Name="LockupMaster_ID"
                          PropertyName="SelectedValue" Type="Int32" />
                      <asp:Parameter DefaultValue="ar" Name="Lang" Type="String" />
                  </SelectParameters>
              </asp:ObjectDataSource>

Simon
Telerik team
 answered on 31 Jan 2011
1 answer
243 views
Hoping
I have an object (skuform),whose property(SKUCode) is bound to a textbox.
If I run this form , change the value in the textbox (say "test123"), and hit the button, I notice that the object's (skuForm) property does not reflect the new value ("test123"), could you please suggest what could be wrong.

  <td><telerik:RadTextBox runat="server" ID="txtSKUCode"  
                   text='<%# skuForm.SKUCode %>' EnableViewState="true"      Wrap="false" 
                   ontextchanged="txtSKUCode_TextChanged"></telerik:RadTextBox></td></tr> 
<telerik:RadButton ID="RadButton1" 
                    runat="server" onclick="RadButton1_Click">
                </telerik:RadButton>
Vasil
Telerik team
 answered on 31 Jan 2011
3 answers
131 views
I have a scheduler with appointments where the resource is dependant on an aspect of the appointment.  Here is the scenario.  There are work tickets that have been assigned to different groups.  Each group has a sub set of members that it can be assigned to, essentially setting up a situation where the Resource ("Members") is dependant upon the associated action ticket Group ID.  Gettting the data is not the issue, and the "how" off adding a dynamic resource is also not the issue, what I need to know is where to put:
Dim rt As New Telerik.Web.UI.ResourceType
rt.DataSource = ds
rt.Name = "Members"
rt.ForeignKeyField = "user_id"
rt.KeyField = "user_id"
rt.TextField = "user_first"
rsWorkSch.ResourceTypes.Add(rt)

So far I've tried: .AppointmentClick, .FormCreating and .FormCreated.  In every instance the drop down is empty. 

My question is...where do I put the code to add a dynamic resource so the drop down actually contains data?
Veronica
Telerik team
 answered on 31 Jan 2011
1 answer
66 views
How can I get a row from the Grid as the DataSource Object...

e.g. Customer cust = RadGrid.GetRow() as Customer; ?

Thank you.
Radoslav
Telerik team
 answered on 31 Jan 2011
4 answers
107 views
Hello,

Our web app has a couple of RadComboBoxes and a RadTextBox on the main page. If I open a RadWindow to certain pages, and then close it using the 'X' in the top right corner, these other controls are unable to receive focus. They appear enabled, but clicking in them does not produce a text caret, and I cannot type into them.

The type of page which causes this behaviour is 1) hosted on another server, and 2) contains a text box of some kind, which has focus when the window is closed. For example, I set it up to load the Google homepage.

I found the following topic which describes a similar problem, but it is related to RadEditor, which this app does not use.
http://www.telerik.com/community/forums/aspnet-ajax/editor/editor-stealing-cursor-from-textboxes-in-ie.aspx

Telerik version is 2009.3.1314.35 and I am using Internet Explorer 8.

Thanks for any help.
dmw
Top achievements
Rank 1
 answered on 31 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?