Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
400 views
Hi All,
   I have a scenario where when I click a gridbuttoncolumn of a radgrid with buttontype as linkbutton would like to open a radwindow which should display a .aspx page. ALL should be done dynamically from code behind.


Shinu
Top achievements
Rank 2
 answered on 25 Oct 2012
1 answer
49 views
I've upgrade to 2012 Q3 and am now creating my first web application since the upgrade.  Going through the Project Configuration Wizard, the colour scheme has changed.  In the first panel where I select the project theme the white background appears and I can read the screen, but the panels after that have lost the white background making the text black on brown and very difficult to read.
Joan
Top achievements
Rank 1
 answered on 24 Oct 2012
1 answer
156 views
I have a submit button white pops a radconfirm dialog asking Yes or cancel. If they click Yes then I need to update a textbox from server side c# code. But if I do all of this the RadTextBox ontextchanged method is never fired

Once again, THE PROBLEM IS RADTEXTBOX ONTEXTCHANGED NEVER FIRES!!!!!! HOW TO GET IT TO FIRE THE SERVER SIDE EVENT? I can not remove it from up UpdatedControls because I need it for the confirm dialog

<
telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">
                <AjaxSettings>
                    <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                        <UpdatedControls>
                            <telerik:AjaxUpdatedControl ControlID="lblError" />
                       <telerik:AjaxUpdatedControl ControlID="txtSONumber" />
                        </UpdatedControls>
                    </telerik:AjaxSetting>
                </AjaxSettings>
            </telerik:RadAjaxManager>




<telerik:RadTextBox ID="txtSONumber" Width="300px" runat="server" AutoPostBack="true" CausesValidation="true"
                                Onkeydown="Keypress_Event()" ontextchanged="txtSONumber_TextChanged" >
                            </telerik:RadTextBox>




function Keypress_Event() {
 
 
              var combo = $find("<%= txtCustomerName.ClientID %>");
              combo.set_value("");
 
          }


Pavlina
Telerik team
 answered on 24 Oct 2012
3 answers
121 views
Using the new telerik control panel I updated by radControls for ASP.NET Ajax from 2012.1.215.40 to 2012.3.1016.4. This is now the only version that is installed. Then when I opened my project in Visual Studio 2010 I got the green update box indicating that the version had changed, and I clicked the update button. There were no errors shown in the update log. However I get strange errors when I open my master page and put it into design view (see attached image). I tried removing and re-adding the references to Telerik.Web.UI.dll and Telerik.Web.UI.Skins.dll, closing and restarting Visual Studio. I verified using right-click Properties that the dll files where the correct version (2012.3.1016.4). After I open the masterpage.master file and successfully build the project, the Telerik.Web.UI.dll file in my /Bin folder has reverted back to the 2012.1.215.40 version! That version isn't even installed on my computer any more, and it is not one of the project references, so where is it coming from??? And why is it overwriting the newer version???
Jeanne
Top achievements
Rank 1
 answered on 24 Oct 2012
3 answers
152 views
hi,

Is there a way to integrate AJAX controls with Kendo UI complete for MVC?
Slav
Telerik team
 answered on 24 Oct 2012
6 answers
109 views
Hello

Fields of type URL are not shown as normal links (with URL description as display text and URL address as href), but in form of http://www.xxx.com, URL description. When you click on the link, the view item properties window is opening instead of target address.

How can you control the rendering of URL values in the grid?

In the normal view of corresponding list in SharePoint the links are shown correctly.

Thank you and best regards,
Roger
Tsvetoslav
Telerik team
 answered on 24 Oct 2012
4 answers
68 views
Team,

I get a weird issue in RadScheduler in Week View mode, 

I use WebService to bind the Scheduler, in scheduler i use only Read-Only functionality. No Appointment creation or edit or delete, only to render the events i use the scheduler. 

First when i load to Day View mode, everything shows fine. but once i move to Week view mode it throws a error message  
"Microsoft JScript runtime error: Unable to get value of the property 'cells': object is null or undefined" (Script Reference: Type.registerNamespace("Telerik.Web.UI.Scheduler"). 

This is not reproducible when I Set ShowFullTime="true" in page Load, but you click at show business hours this issue again resumes. 

Please help me to resolve the issue. 

Thanks,
Ilayaraja.C
Boyan Dimitrov
Telerik team
 answered on 24 Oct 2012
1 answer
37 views
Hello,

Congrats on the new release. The new demo section looks really nice!

I  just spotted a problem with this demo:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/pdfexport/defaultcs.aspx


Regards,
Peter
Plamen
Telerik team
 answered on 24 Oct 2012
1 answer
56 views
After update to latest control version, some of my ComboBoxes will not callback to get results for "load on demand" scenarios.  I have three load on demand combo boxes on one page.  One continues to work, two do not.  In the firefox debugger I can see the working control performing a postback when I type in the box.  The other two do nothing when type.

Works:
<telerik:RadComboBox ID="cboEvents" runat="server"
 AutoPostBack="false" DropDownWidth="675px" EmptyMessage=""
 Height="200px" HighlightTemplatedItems="true" EnableLoadOnDemand="True" AllowCustomText="True" EnableVirtualScrolling="True" ShowMoreResultsBox="True" OnItemsRequested="cboEvent_ItemsRequested"
 Skin="Windows7" Width="300px">

Doesn't work:
<telerik:RadComboBox ID="cboURL" runat="server" AllowCustomText="True"
                                AutoPostBack="false" DropDownWidth="675px" EmptyMessage=""
                                EnableLoadOnDemand="True" EnableVirtualScrolling="True" Height="200px"
                                HighlightTemplatedItems="true"
                                ShowMoreResultsBox="True" OnItemsRequested="cboURL_ItemsRequested"
                                Skin="Windows7" Width="500px"
                                EnableAutomaticLoadOnDemand="True">
Fred Taylor
Top achievements
Rank 1
 answered on 24 Oct 2012
1 answer
144 views
Hi everyone. 

I can bind 2 level grid from object datasource. but how can i bind 3 level grid from my object datasource?
My First ObjectDataSource take no parameter,
My second ObjectDatasource take orderId;
I want to my third objectdatasource take orderProductId from 2.level; 
My code is;
telerik:RadGrid ID="radGridOrderProduct" ShowStatusBar="True" DataSourceID="objDsCartProductList"
    runat="server" Width="100%" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True"
    GridLines="None" CellSpacing="0">
    <PagerStyle Mode="NumericPages"></PagerStyle>
    <MasterTableView Width="100%" DataSourceID="objDsCartProductList" DataKeyNames="Id"
        AllowMultiColumnSorting="True">
        <NestedViewTemplate>
            <asp:Label ID="Label1" Text='<%#Eval("Id") %>' Visible="false" runat="server" />
            <telerik:RadGrid runat="server" ID="radGridOrderProductDetail" DataSourceID="objDsCartProductList"
                GridLines="None">
                <MasterTableView ShowHeader="true" AutoGenerateColumns="False" runat="server" HierarchyLoadMode="ServerOnDemand"
                    DataSourceID="objDsCartProductList">
                    <Columns>
                        <telerik:GridTemplateColumn>
                            <ItemTemplate>
                                <asp:Label ID="lblTotalPrice" runat="server" Font-Bold="true" Font-Size="14px" Text='<%#                (Eval("TotalPrice").ToString()) %>'></asp:Label>
                                <span>TL</span>
                            </ItemTemplate>
                        </telerik:GridTemplateColumn>
                    </Columns>
                </MasterTableView>
            </telerik:RadGrid>
            <asp:ObjectDataSource ID="objDsCartProductList" runat="server" SelectMethod="GetOrderProductListWithOrderId"
                TypeName="MatriksEshop.Web.UserControls.Order.Control.BaseUserControl">
                <SelectParameters>
                    <asp:ControlParameter ControlID="Label1" Name="orderId" PropertyName="Text" Type="String" />
                </SelectParameters>
            </asp:ObjectDataSource>
        </NestedViewTemplate>
        <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
        <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">
        </RowIndicatorColumn>
        <ExpandCollapseColumn Visible="True">
        </ExpandCollapseColumn>
        <Columns>
            <telerik:GridTemplateColumn>
                <HeaderTemplate>
                    <asp:Label ID="lblTotalPrices" runat="server" Text="<%$ Resources:Eshop, ProductTotal%>"></asp:Label>
                </HeaderTemplate>
                <ItemTemplate>
                    <asp:Label ID="lblTotalPrice" runat="server" Font-Bold="true" Font-Size="14px" Text='<%#(Eval("TotalPrice")) %>'></asp:Label>
                    <span>TL</span>
                </ItemTemplate>
            </telerik:GridTemplateColumn>
        </Columns>
        <EditFormSettings>
            <EditColumn FilterControlAltText="Filter EditCommandColumn column">
            </EditColumn>
        </EditFormSettings>
    </MasterTableView>
    <FilterMenu EnableTheming="True">
        <CollapseAnimation Duration="200" Type="OutQuint" />
    </FilterMenu>
</telerik:RadGrid>
<asp:ObjectDataSource ID="objDsCartProductList" runat="server" SelectMethod="GetOrderListWithMemberId"
    TypeName="MatriksEshop.Web.UserControls.Order.Control.BaseUserControl"></asp:ObjectDataSource>

I want to 3.level grid objectDataSource SelectMethod = "GetOrderProductLicenseWithOrderProductId"
Parameter should be radGridOrderProductDetail datakeynames or "Id".
Can u help me for this point?

Best Regards
Angel Petrov
Telerik team
 answered on 24 Oct 2012
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?