Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
53 views
I need an event that triggers server side when a view changes?  Is this possible?

Thanks,

Marty
moegal
Top achievements
Rank 1
 answered on 22 Dec 2012
5 answers
170 views
I am attempting to use the RadDock with a responsive layout.  In general, the Dock is working extremely well and solving some issues in a responsive design, however I am having one problem with the display of the control.

I have attached two different screen captures that show the issue.  When you look at them you will see a line of inadvertent corners (or something) that are displayed.  It does not matter if I use one dock control or two.  The selection of the skin does not matter.

The RadDock does not do this when it is used outside of the responsive layout, however that really is one of the major directions today and I would think the results shown in the screen captures would be undesirable.

Does anyone know of any way to eliminate these visual problems?

Thanks in advance!

Lynn
Lynn
Top achievements
Rank 2
 answered on 22 Dec 2012
10 answers
231 views
Hello,

I have a combo that's bound to a web service.  When I click the drop down, it loads the list.  That's fine.  However, I want to refresh the binding with new data and new criteria.  Can I force a refresh?

Thanks.
arash
Top achievements
Rank 1
 answered on 22 Dec 2012
1 answer
70 views

TreeList Expand in server side on from open .




Thanks Advance,
Mohamed.
mohamed
Top achievements
Rank 1
 answered on 22 Dec 2012
1 answer
49 views
hi there...
i have aspx in my web application that contain RadTabStrip & RadMultiPage that open diffrent UserControl by selecting diffrent tabs...
i want to create dynamicaly RadTab by clicking on a bottun in my UserControl ascx  that open into RadMultiPage but I don't know how.
PLZ help me. If more info needed tell me.
Regards...
Ashkan
Top achievements
Rank 1
 answered on 22 Dec 2012
1 answer
51 views
if (e.Item is TreeListEditableItem && (e.Item as TreeListEditableItem).IsInEditMode)           
            {
                TreeListEditableItem item = (TreeListEditableItem)e.Item;
                RadNumericTextBox Quantity = (RadNumericTextBox)item.FindControl("Quantity");
                RadNumericTextBox Rate = (RadNumericTextBox)item.FindControl("Rate");
                RadNumericTextBox Amount = (RadNumericTextBox)item.FindControl("Amount");

If i going to edit these values are come null

Thanks Advance,
Mohamed.
mohamed
Top achievements
Rank 1
 answered on 22 Dec 2012
1 answer
145 views
Thanks,

Vlad
Stefani Tacheva
Telerik team
 answered on 21 Dec 2012
2 answers
54 views

I have an odd issue I cannot resolve and hoping for the experts there to please assist.

Using Telerik AJAX tools, I have a vertically oriented slide-out menu which works perfectly on IE, Chrome, Safari, Opera - but on Firefox the slide-out menu appears at the far right just beyond the available browser width so it's mostly not visible off to the right side. 

It used to work on Firefox perhaps a year ago but I've upgraded the latest Telerik AJAX tools and it doesn't seem to work anymore.  For what it's worth, I'm using Firefox v12.x but haven't upgraded, as far as I can recall, from an earlier version.
 
It's complicated to give you a working code example so I've attached a simple graphic which illustrates the issue visually.

My code, taken some time ago from one of your forums, is this:

<telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" VisibleDuringInit="False"
  Orientation
="Vertical" Height="700px" BorderSize="0" >

   <telerik:RadPane ID="RadPane1" Runat="server" Width="25px" BackColor="#CCCCFF">

      <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" BackColor="#CCCCFF" Width="22px" >

         <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Title=" SYSTEM MENU " Width="185px"
          BackColor
="#CCCCFF" ResizeText="None" Scrolling="None" EnableDock="False">

                  ' Now we have some simple LinkButtons for menu items here...

         </telerik:RadSlidingPane>                                    

      </telerik:RadSlidingZone>

   </telerik:RadPane>

 </telerik:RadSplitter>

I am hoping there is a simple solution which I can use to adjust for this or rectify it.  I have looked for a week through the forums and couldn't find an exact match to my issue.

Please advise, thanks,
Steve
 

Steve
Top achievements
Rank 1
 answered on 21 Dec 2012
1 answer
110 views
hi,
i've created this radmenu:




<telerik:RadMenu ID="RadMenu1" Runat="server" Flow="Vertical"
    Skin="Sunset">
    <Items>
        <telerik:RadMenuItem runat="server" Text="load iamge profile">
        </telerik:RadMenuItem>
        <telerik:RadMenuItem runat="server" Text="change password">
        </telerik:RadMenuItem>
        <telerik:RadMenuItem runat="server" Text="delete account">
        </telerik:RadMenuItem>
        <telerik:RadMenuItem IsSeparator="True" />
        <telerik:RadMenuItem runat="server" Text="Exit">
        </telerik:RadMenuItem>
    </Items>
</telerik:RadMenu>

now how do start i click on item for example Load image profile this function java?
"openRadWindowProfile(); return false;"

or how do start this code behind when i click on item exit?
Protected Sub Logout_Click(sender As Object, e As System.EventArgs) Handles Logout.Click
    Session.Clear()
    Session.Abandon()
    Page.Response.Redirect("indexprova.aspx")
End Sub

Bye










Boyan Dimitrov
Telerik team
 answered on 21 Dec 2012
1 answer
113 views
Hello,

I try to integrate the Telerik libraries, replacing my asp:gridview by a RadGrid, and I have a problem on an update. Here is my case:

I have a page with an update panel containing a grid (asp:gridview).
On page load, I add dynamically some user controls in an asp place holder. These user controls contain their own update panel with buttons or drop down lists inside (not always the some control). When the button or the drop down list of the UC is selected, it calls some code of the business layer, and the business layer raises an event. The page (which has subscribed to this event), load a datatable, set the datatable as datasource of the grid, and bind it. I update the update panel containing the grid to refresh it. It works correctly.

I want to replace the asp:gridview by a RadGrid.

I keep the update panel containing the RadGrid, because I can't use the RadAjaxManager (even dynamically) because the controls of the user controls are not always the same (button or drop down list).

It seems to work. When I click on a user control button, the gridview is correctly displayed. If a click ONE TIME on a header, the sort is done. BUT if a click again, I obtain the following error message (same error on each action):
Microsoft JScript runtime error: Sys.InvalidOperationException: Impossible de trouver UpdatePanel avec l'ID 'RadGrid1Panel'. S'il est mis à jour dynamiquement, il doit se trouver dans un autre UpdatePanel.

To avoid the update panel problem, I tried to remove the UpdatePanel around the RadGrid and add a RadAjaxPanel (referencing a AjaxLoadingPanel) around all the page. But this time, I see the loading panel but the RadGrid is not updated after the binding. Should I do something to trigger the update ?

Thanks by advance.

Damien
Damien
Top achievements
Rank 1
 answered on 21 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?