Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
67 views
I have a flash movie and at the end a button will appear. I wish the button to trigger the opening of a Rad Window, is this possible?


Serrin
Top achievements
Rank 1
 answered on 08 Oct 2008
2 answers
106 views
Hi,

I am trying to Filter on hyperlink column using AllowFilteringByColumn="true" property, but it is showing me filter options as shown for Integer. I want filter options for String. What can i do?
Daniel
Telerik team
 answered on 08 Oct 2008
1 answer
122 views
Hi, All:

Please give some codes on how to set up text label programmatically for Legend on RadChart.

I have 2 series/section on StackedBar chart,  one is for "Job 1" other is for "Job 2".

thanks.

Stanley
Esperanza Ramos
Top achievements
Rank 1
 answered on 08 Oct 2008
1 answer
160 views
Hi All,

I am using RadScheduler.

Consider Weekly view of RadScheduler.

If there are more appointment in one day then radscheduler shows these appointment.
 But the appointment subject not shown clear .
The appointment width became small so it is not readable .


How can  i solve this issue.

Thanks


Peter
Telerik team
 answered on 08 Oct 2008
6 answers
235 views
Hi

My RadWindow code worked in 826 but not in 1001.

I am returning a value from a radwindow to refresh a RadGrid.

Here is the page code:

<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"
    <script type="text/javascript"
        function ShowEditForm(id, rowIndex) { 
            var grid = $find("<%= gvwTransactions.ClientID %>"); 
 
            var rowControl = grid.get_masterTableView().get_dataItems()[rowIndex].get_element(); 
            grid.get_masterTableView().selectItem(rowControl, true); 
 
            window.radopen("transaction-details.aspx?TransactionId=" + id, "TransactionListDialog"); 
            return false; 
        } 
        function ShowInsertForm(id, node) { 
            window.radopen("transaction-details.aspx?ItemId=" + id + "&SelNode=" + node, "TransactionListDialog"); 
            return false; 
        } 
        function ShowMoveForm(id, node) { 
            window.radopen("move-stock.aspx?ItemId=" + id + "&SelNode=" + node, "TransactionListDialog"); 
            return false; 
        } 
        function ShowTransferForm(id, node) { 
            window.radopen("transfer-split.aspx?ItemId=" + id + "&SelNode=" + node, "TransactionListDialog"); 
            return false; 
        } 
        function refreshGrid(arg) { 
            switch (arg) { 
                case 'Rebind': 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind"); 
                    break; 
                case 'RebindAlsoTable': 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAlsoTable"); 
                    break; 
                case 'RebindAndNavigate': 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAndNavigate"); 
                    break; 
                case 'RebindAndNavigateAlsoTable': 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAndNavigateAlsoTable"); 
                    break; 
                default: 
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAndNavigateAlsoTable"); 
            } 
        } 
    </script> 
</telerik:RadCodeBlock> 


And here is the code in the radwindow

    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"
    <script type="text/javascript"
    function CloseAndRebind(args) 
    { 
        GetRadWindow().Close(); 
        GetRadWindow().BrowserWindow.refreshGrid(args); 
    } 
 
    function GetRadWindow() 
    { 
        var oWindow = null
        if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog 
        else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;//IE (and Moz as well) 
             
        return oWindow; 
    } 
 
    function CancelEdit() 
    { 
        GetRadWindow().Close(); 
    } 
    </script> 
    </telerik:RadCodeBlock> 

Any idea why the closeandrebind event does not work?

It says GetRadWindow is not defined.

Thanks
Georgi Tunev
Telerik team
 answered on 08 Oct 2008
7 answers
164 views
Hi,

Simple question for you this one ! (I hope)

I cannot seem to get the Calendar image within the scheduler header to display (and therfore cannot access the Calendar popup to select a date for the scheduler).
Is there a simple property which set this visible / hidden ?

Many Thanks
Mark
Donna
Telerik team
 answered on 08 Oct 2008
7 answers
217 views
Dear Support Team,

We are using LinqDataSource to populate a grid using version Q2 2008. The grid needs linqExpressions to be set to true for paging; however this leads to case-sensitive search. Setting GroupingSettings->CaseSensitive:=false did not work either.

The proposed solutions in the thread: Filter is case-sensitive did not work Can you please suggest a solution to overcome this problem.

Best Regards,
Oner

P.S. Following is the settings for the grid:

<telerik:RadGrid runat="server" ID="RadGrid1"

PagerStyle-Position="TopAndBottom"

EditItemStyle-BackColor="#ccff99" Skin="Hay" GridLines="Vertical"

DataSourceID="LinqDataSource1"

AllowFilteringByColumn="True"

ClientSettings-AllowColumnsReorder="True"

AllowSorting="True"

AutoGenerateColumns="False"

AllowPaging="True" PageSize="20"

ShowStatusBar="True"

OnItemCommand="RadGrid1_ItemCommand"

OnItemCreated="RadGrid1_ItemCreated"

OnItemDataBound="RadGrid1_ItemDataBound"

OnUpdateCommand="RadGrid1_UpdateCommand"

OnInsertCommand="RadGrid1_InsertCommand"

OnItemUpdated="RadGrid1_ItemUpdated"

OnItemInserted="RadGrid1_ItemInserted"

OnPreRender="RadGrid1_PreRender"

EnableLinqExpressions="True">

<PagerStyle Mode="NextPrevAndNumeric" />

<GroupingSettings CaseSensitive="false" />

Intro
Top achievements
Rank 1
 answered on 08 Oct 2008
1 answer
152 views
I have RadSlider and dynamicly set maxvalu and step How can i show step value under RadSlider for example
http://demos.telerik.com/aspnet/prometheus/Slider/Examples/Configurator/DefaultCS.aspx
but without img



Svetlina Anati
Telerik team
 answered on 08 Oct 2008
2 answers
134 views
Hi,

Iam unable to select a row in RadGrid although I have set the AllowRowSelect to true.

When i just try to click on the row it doesn't get selected

Please find below the sample code for the grid.We set the datasource on NeedDatasource event

<

telerik:RadPageView ID="_radPageViewMarkets" runat="server" Selected="True">

 

 

<telerik:RadGrid ID="_radGridMarkets" runat="server" AutoGenerateColumns="False"

 

 

AllowPaging="True" PageSize="100" GridLines="None" Skin="Office2007" OnNeedDataSource="_radGridMarkets_NeedDataSource">

 

 

<AlternatingItemStyle BackColor="#EDEFF1" BorderColor="Blue" />

 

 

<ItemStyle BorderStyle="Solid" />

 

 

<PagerStyle AlwaysVisible="True" Position="TopAndBottom" Mode="Advanced" />

 

 

<ClientSettings>

 

 

<Selecting AllowRowSelect="true" />

 

 

</ClientSettings>

 

 

<MasterTableView>

 

 

<RowIndicatorColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

<telerik:GridBoundColumn DataField="Tag" HeaderText="Tag" UniqueName="_colTag">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="ShortDescription" HeaderText="Short Description"

 

 

UniqueName="_colMktShortDesc">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="LongDescription" HeaderText="Long Description"

 

 

UniqueName="_colMktLongDesc">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="ExchngRateMarketTag" HeaderText="Exchange Rate Tag "

 

 

UniqueName="_colExchngRateMarketTag ">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="ConvertLocalCurrency" HeaderText="Convert Local Currency "

 

 

UniqueName="_colMktConvertLocalCurrency ">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="IndexConsolidation" HeaderText="Index Consolidation"

 

 

UniqueName="_colIndexConsolidation ">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="MarketConsolidation" HeaderText="Market Consolidation"

 

 

UniqueName="_colMarketConsolidation">

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

</MasterTableView><FilterMenu EnableTheming="True">

 

 

<CollapseAnimation Duration="200" Type="OutQuint" />

 

 

</FilterMenu>

 

 

<EditItemStyle BorderStyle="Solid" />

 

 

</telerik:RadGrid></telerik:RadPageView>

Thanks
Bala

 

Balamurali Venkatesan
Top achievements
Rank 1
 answered on 08 Oct 2008
1 answer
70 views
Using http://demos.telerik.com/aspnet/prometheus/Scheduler/Examples/MultipleResourceValues/DefaultCS.aspx as a point of reference, if you click the icon to open the popup navigation, then click the 'today' link to the left of the icon (not the one presented when you click on the month header of the calendar), the result is erratic behavior.

Sometimes you'll get an apparent ajax refresh, sometimes it will navigate to the actual date, and others it will sit there seemingly unresponsive and eventually refresh to the correct date (without the loading panel displaying).

Is there a way to disable the 'today' link when the calendar popup is showing?
Simon
Telerik team
 answered on 08 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?