Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
71 views
Hello,

When I use the moss link manager, I want to set the defualt url for MOSS Asset Picker dialog. I have read some posts here, it's said that radeditor simply call MOSS Asset Picker dialog and insert the return value to the editor content. I want to know how to set the default url for the dialog, or what value have you passed when you call the dialog? Thank you very much.
Stanimir
Telerik team
 answered on 15 Aug 2011
1 answer
167 views
Hi,
Im new to telerik control, One of the requirement we got is to open  a radWindow , radwindow is present inside radAjaxpanel.
RadWindow should  be open up on Click of html button.Im successfully till that part, Now radwindow contains a treeview aong with ASO.NET button "OK" and cancel html button. On Click of Cancel radwindow as to close and dont refresh parent radajaxpanel. When the user clicks on "OK" server side functionality to performed and update the parent radajax panel. Can anytell me how to perform

I tried adding javascript 

 function OnClientClose()
{
    $find("<%=radPanel.ClientID%>").ajaxRequest("Rebind");
}

In the radAJAXPANEL  i added OnAjaxRequest but nothing is working
-Mahender
Marin Bratanov
Telerik team
 answered on 15 Aug 2011
5 answers
692 views
where do i find the available list of skin?
Jay Mathis
Top achievements
Rank 1
 answered on 15 Aug 2011
1 answer
71 views
Hi,


i  am using rad grid  to display data  to the user. the page also contain Dropdown when even user selects or changes the value in drop down it will create a post back event.
so when ever page is a post back, the rad grid is binding the columns twice .

can you help to fix it please, i can not give columns in Html page because, the columns vary based on user. 
Pavlina
Telerik team
 answered on 15 Aug 2011
7 answers
355 views
Is it possible to get appointment (needed for editAppointment function) by id on client side?
I have tried to use  scheduler.get_appointments(), unfortunately it only shows appointments oc current view.
Peter
Telerik team
 answered on 15 Aug 2011
4 answers
80 views
Hello,
I have some problems with grid appearance. All columns in grid are of TemplateColumn type. I implement ITemplate for each ItemTemplate and everything works correctly. I use "rubber" layout when split panel and grid on it are expanded to browser width and height. But:
1. When I insert in markup tag
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" />
header remains expanded to full width but content is tightening to minimum width, just to fit data (see pic 1)
2. With static headers turned on, when I use a pager control and go to another page, header reveals a small gap on the right (pic 2)
3. I can't see grid lines although I have set GridLines="Both".

Below is a grid markup:
<grid:RadGrid ID="Grid" runat="server" Height="99.5%" ShowStatusBar="True"
                    AllowSorting="True" AllowAutomaticUpdates="True" AutoGenerateColumns="False"
                    AllowPaging="true" PageSize="20" GridLines="Both">
                    <MasterTableView DataKeyNames="id" EditMode="InPlace" Width="100%" />
                    <ClientSettings>
                     <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" />
                        <ClientEvents />
                    </ClientSettings>
                </grid:RadGrid>

Thank you.
Dmitry
Top achievements
Rank 1
 answered on 15 Aug 2011
2 answers
88 views
Hello Telerik,

I need with a submenu click i need to show mainmenu

Thanks,
Rksh
Kate
Telerik team
 answered on 15 Aug 2011
1 answer
68 views
Hi ,

We are using RadCharts in our Silverlight Asp.net application. The problem we are facing is that we do not want any range series on the X axis and we want to display title only. We tried to use RadChart.DefaultView.ChartArea.AxisX.AutoRange = false but this not working. Please help us in this .


Thanks,
Rahul
Evgenia
Telerik team
 answered on 15 Aug 2011
2 answers
185 views
Client side radgrid updateItem() works absolutely inconsistently. It fires always server update only if I put debugger inside javascript otherwise it may or may not update record. Is that a bug in radgrid?

I have grid with last column template. Idea was to have an Excel like grid - on tab out from last column udate current record and edit next one.

<telerik:GridTemplateColumn  UniqueName="COSTTOCOMPLETE" HeaderText="Cost to Complete">
    <ItemTemplate>
        <telerik:RadNumericTextBox ID="costToComp" runat="server" Text = '<%# Eval("COSTTOCOMPLETE") %>' ReadOnly="true">
            <NumberFormat DecimalDigits="0" />
        </telerik:RadNumericTextBox>
    </ItemTemplate>
    <EditItemTemplate>
        <telerik:RadNumericTextBox ID="costToComp" runat="server" Text = '<%# Bind("COSTTOCOMPLETE") %>'>
            <NumberFormat DecimalDigits="0" />
            <ClientEvents OnBlur="costToComp" />
        </telerik:RadNumericTextBox>
    </EditItemTemplate>
    <InsertItemTemplate>
        <telerik:RadNumericTextBox ID="costToComp" runat="server" Text = '<%# Bind("COSTTOCOMPLETE") %>'>
            <NumberFormat DecimalDigits="0" />
            <ClientEvents OnBlur="costToComp" />
        </telerik:RadNumericTextBox>
    </InsertItemTemplate>
</telerik:GridTemplateColumn>

here is javascript:
function costToComp(sender, args) { 
    var grid = $find('<%= rg_OpenWIP.ClientID %>'); 
    var idx = grid._editIndexes[0]; 
    if (idx != null) { 
        $find(grid.MasterTableView.get_id()).updateItem(parseInt(idx)); 
        var items = grid.get_masterTableView().get_dataItems(); 
        if ((items.length - 1) != idx) { 
            $find(grid.get_masterTableView().get_id()).editItem(parseInt(idx) + 1);//works always 
        
    
    else
        $find(grid.MasterTableView.get_id()).insertItem(); 
    
}; 
Yurii
Top achievements
Rank 1
 answered on 15 Aug 2011
1 answer
50 views
Hi.

I have a radcombobox that fills on demand from a sql-query, it is used to find users, companies, servers and so on. Works very good.
But, I would like to change it to a broader search if the text is not found.

<telerik:RadComboBox ID="rcomSearch" runat="server" OnItemsRequested="rcomSearch_ItemsRequested"
                EnableLoadOnDemand="true" DataTextField="text1" DataValueField="typeid" MarkFirstMatch="true"
                AutoPostBack="False" HighlightTemplatedItems="true" EmptyMessage="Søk i IBA..."
                OnSelectedIndexChanged="rcomSearch_SelectedIndexChanged" LoadingMessage="Henter..."
                Width="300px"  OnClientSelectedIndexChanged="OnClientSelectedIndexChanged"
                Visible="true"  AllowCustomText="True"    >

So, OnSelectedIndexChanged i will go directly to the found object, but if I press Enter with text in the box I would like to response.redirect to a Search-page and give a list of results there.
Anyone knows how to do this?
Kevin
Top achievements
Rank 2
 answered on 15 Aug 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?