Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
163 views
Hi
I want to open a tooltip to update a record on a cell click in a Radgrid,
However i dont want to use anything other than a simple bound column with data in the cell,

Can anyone advise me of any method of doing this please.

Many Thanks

Rgds

Darren
Cush
Top achievements
Rank 1
 answered on 30 Nov 2010
1 answer
91 views
Hi,

We have upgraded our custom controls from an earlier version (2008Q3) of Telerik to 2010Q2.
One of them uses a combobox in a very simple matter. The user can select a known value or type something new.
Below the control there are some textboxes that react when the value of the dropdown is changed. When a known value is selected, it gets data from the database, otherwise input is enabled.

There seems to be a problem that when you clear the dropdown (= select all and then do "backspace") no sever event is fired
In the previous version of the control the "textchanged" event was fired, which is imho correct: the text is changed to nothing.

I know I can build around this with ajax and clientside events, but then I have to rewrite the servercontrol (2 of them) and I preferably don't. Maybe there is some property/event that I don't know off? 

Also we love to keep up with the new releases, but because you guys change A LOT each time, it's impossible to keep up. Especially for the designers they don't understand why everything (=classes, nesting) always changes so much.
So upgrading to 2010Q3 is therefore out of the question I'm afraid.

Thanks in advance!
Gompje
Top achievements
Rank 1
 answered on 30 Nov 2010
3 answers
282 views
Is it possible to hide the 'Today' link in the RadScheduler NavigationPage so that only Previous, Next, and the date picker are visible?
Veronica
Telerik team
 answered on 30 Nov 2010
3 answers
120 views
Hi Telerik Team,

I have ComboBox as below which does not get displayed properly after postback. Please refer to attached image (Combobox for 'Existing Documents' ).
 <telerik:RadComboBox ID="rcmbExisting" runat="server" AutoPostBack="true" CausesValidation="false" EmptyMessage="Select Existing"  Width="300px" Height="250px" EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true" ItemsPerRequest="250" OnItemsRequested="rcmbExisting_ItemsRequested" />

Please suggest solution.

Thanks in advance. 

 

With Regards,
Reena 

 

Yana
Telerik team
 answered on 30 Nov 2010
2 answers
110 views
Hello,

When l have a RadGrid with the following defined:

<ClientSettings>
<ClientEvents OnCommand="rg_Command" />
</ClientSettings>

I get an error that it cannot find a DataKeyColumn or DataRelation for a DataKeyName I have defined in the grid... on inspection of the grid, when this is defined and no data is present, it binds an empty DataTable with 11 rows, but it's missing the DataKeyName?  What is this table and why is this happening?

Thanks.
Brian Mains
Top achievements
Rank 1
 answered on 30 Nov 2010
3 answers
105 views

I was using the RadTabStrip.Net2 dll in my project. In the project I had RadTabStrip as shown below.

<radTS:RadTabStrip id="TabStrip" runat="server" SkinsPath="resources/Skins/" Skin="SimpleBarBlue" MultiPageID="MultiPage"
SelectedIndex="0" UseEmbeddedScripts="true" OnClientTabSelected="TabCallback" ClickSelectedTab="true" EnableViewState="false"
/>

OnClientTabSelected, I am calling Javascript function "TabCallback" where I find the selected TabIndex and its childIndex as shown below.

function TabCallback(sender, eventArgs) 
  {
    if(!eventArgs.Tab.Tabs[0] || eventArgs.Tab.DepthLevel == 2)
      {
         var tab = eventArgs.Tab.Index;
         var innerTab = 0;
         if(eventArgs.Tab.DepthLevel == 2)
           {
              tab = eventArgs.Tab.Parent.Index;
              innerTab = eventArgs.Tab.Index;
           }
           setCookie("TabID", tab);
           setCookie("InnerTabID", innerTab);
           setCookie("ViewID", eventArgs.Tab.Value);
           window["<%= RadAjaxManager1.ClientID %>"].AjaxRequest
                (tab + "|" + innerTab + "|" + eventArgs.Tab.Value);           
     }
                resize();
  }


Now I am using another dll Telerik.Web.UI . But I am surprised to see these properties like Tab.Index, Tab.Depthlevel, Tab.Parent.Index doesnt work in new dll. Its says the object doesn't support these properties. I really need these functionalities. Can any one tell me the equivalent clientside properties in the new Telerik.Web.UI dll.

And one more thing, I am using the licensed dll and I need quick reply but I dont know how to get a ticket and post my questions. I would like to know about this too..

With Regards
Ravi
Yana
Telerik team
 answered on 30 Nov 2010
3 answers
62 views
I should create a button into a user control that performs a refresh a RadGrid and a FormView .

this is the structure of website:

Structure.png

how can I set the best AjaxSettings to set the button imbRefresh to update objects outside the user control?
Maria Ilieva
Telerik team
 answered on 30 Nov 2010
1 answer
51 views
Hi,

I have the below controls in my page. (Main Page)
1. Webuser control (Contains a radtreeview with radmenu)
2. Radgrid
3. Button

Functionality:
Onclicking button I am opening a Showmodaldialog window. On this window I will add new record and I need to update my Webusercontrol and Radgrid from the main page. But its not updating the usercontrol.

Please refer the below code what I have in my main page:

<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="btnAddNewFolder" EventName="Click">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="ucDocumentConsole" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="btnAddNewDocument" EventName="Click">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="ucDocumentConsole" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="ucDocumentSpace" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="ucDocumentConsole">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="grdDocumentManager" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>

Please let me know how can I update the usercontrol after the showmodalwindow closed.

Thanks in advance.

Regards,
Babu R
Pavlina
Telerik team
 answered on 30 Nov 2010
9 answers
393 views
Hello,

I'm attempting to find a solution for updating a RadGrid's filter when the user right clicks a grid cell and selects a filter option.  For example, if the user right clicks the column "First Name", a context menu will appear with a list of valid filter options.  Once a filter option has been selected, the filter text box will be filled with the value of the right-clicked cell and the selected filter will be applied. 

I have done several searches and have not seen any examples similar to this.  Are there any samples that exist with this type of functionality?  Is this possible with the RadGrid?  I have a few potential ideas for a work around, but I wanted to see if this was possible.

Thanks,
Jerry
amonte
Top achievements
Rank 1
 answered on 30 Nov 2010
4 answers
375 views

In my grid, I have EditMode="PopUp" and EditFormType="Template". Works great, but I'd like to call a javascript function after the popup has saved/close and rebound/refreshed the grid with the new or edited row. Ideally, I'd like to assign it programmatically like I do with window popups via the add_close event method, but I'll take what I can get. Is there a way to do this?
Jeremy Yoder
Top achievements
Rank 1
 answered on 30 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?