Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
59 views
There is an inconsistancy with the Skin SILK on the combobox between browsers that makes the control very hard to read.

When the Control is selected, (With Drop Down open or closed) the Foreground is white and the Background is a Torquise color
IF the user is using IE9, the Background color is GREY still with the White Letters making it almost impossible to Read

This can be seen on your site  
http://demos.telerik.com/aspnet-ajax/combobox/examples/populatingwithdata/xmlstringbinding/defaultcs.aspx
Change the skin to SILK and view in IE9 or in Compatibility mode. on IE 10

I have also included some same screen shots
Is it possible to get a workaround?
Nencho
Telerik team
 answered on 26 Apr 2013
3 answers
442 views
Hello,
I dont see any solution for disabling week ends and special days in date picker.
Any workarounds?
There is a solution for weekends, but we have to do server,client side code. But For special days?Holidays?
the special days are by a caculation on server side, so doing this on client side as well is going to be hard..:(
Shouldn't it be a simple propery to disable?

Thanks
Eyup
Telerik team
 answered on 26 Apr 2013
5 answers
437 views

Hello,

At the moment I am using this LINQ query in C# to check all items but I am wanting to do the same in javascript.

void cblMagistrateCourts_Load(object sender, EventArgs e)
{
    RadComboBox c = (RadComboBox)sender;
    IEnumerable<RadComboBoxItem> uncheckedItems =
                                     from uncheckedItem in c.Items.ToList()
                                     where uncheckedItem.Checked == false
                                     select uncheckedItem;
    foreach (RadComboBoxItem i in uncheckedItems)
    {
        i.Checked = true;
    }
}

I tried the following 3 thigns in javascript and in IE F12 tools I tried to find & 'check' the 'Check All' to but that did not seemed to be checking all items (Not sure)

not sure the 2nd attempt was in the right direction. I am getting the correct id of radCombobox using sender.get_id();

function radCblCheckAll(sender, eventArgs) {
    //var combo = sender.get_id();
    //var chkAll = combo + '_Header_SelectAll';
    //alert(chkAll.toString());
    //chkAll.checked = true;
 
    //alert($telerik.$('.rcbCheckAllItemsCheckBox').checked);
    //$telerik.$('.rcbCheckAllItemsCheckBox').change(function () {
    //    if (sender.get_text() == "All items checked") {
    //        sender.checked = true;
    //    }
    //});
 
    var combo = sender.get_id();
    var item = combo.findItemByText('Check All');
    item.select();
 
}
Boyan Dimitrov
Telerik team
 answered on 26 Apr 2013
1 answer
79 views
Hi,
I have 2 problems / questions:

1) First I develop with the telerik rad ajax controls for a Sharepoint 2010 application with the Trial version. Every body were please to see the result so Ma manager buy the full version. We deploy this version on the same server that the trial version was deployed. That works fine but sometime we have got the "purchase now" message who appears everywhere on pages, when we refresh the page the message disappear! want can I do to correct this point?

2) Actually we developp on the development server but we will soon deploy on the testing server then  on the production one. I don't know how to install the telerik library (radcontrolssp.wsp) and all we need for our telerik pages. Can you tell me the installation procedure for these servers?

Thank you.
Tsvetoslav
Telerik team
 answered on 26 Apr 2013
1 answer
132 views
How can we find the checked items/values in a combobox(cmobx having checkbox ) and this combobos is located in rad grid..S
ee the attached image and code

<telerik:RadGrid ID="RadGrid1" runat="server" Width="100%" ShowStatusBar="true" AutoGenerateColumns="true"
                            PageSize="10" AllowSorting="True" AllowMultiRowSelection="False" AllowPaging="True"
                            OnNeedDataSource="RadGrid1_NeedDataSource" Skin="MyCustomSkin" EnableEmbeddedSkins="false"
                            OnItemDataBound="RadGrid1_ItemDataBound" OnItemCreated="RadGrid1_ItemCreated">
                            <PagerStyle Mode="NumericPages"></PagerStyle>
                            <MasterTableView AutoGenerateColumns="false">
                                <Columns>
  <telerik:GridTemplateColumn HeaderText="Indian Affairs Benefits" ItemStyle-Width="90px"
                                        UniqueName="IndianAffairsBenefits">
                                        <ItemTemplate>
                                             
                                             
                                                <telerik:RadComboBox Skin="Inox" ID="ddOnelChild" runat="server" EnableEmbeddedSkins="False"
                                                    MarkFirstMatch="True" Width="120px" Visible="false">
                                                </telerik:RadComboBox>
                                                <telerik:RadComboBox Visible="false" Skin="Inox" ID="ddlMeAndSelectedChildren" runat="server"
                                                    EnableEmbeddedSkins="False" MarkFirstMatch="True" Width="120px">
                                                    <ItemTemplate>
                                                        <asp:CheckBox ID="chkbx" Checked="true" runat="server"  />
                                                        <asp:Label runat="server" ID="lblItem" AssociatedControlID="chkbx">
                                                        <%# Eval("Namess") %>
                                                        </asp:Label>
                                                    </ItemTemplate>
                                                    <CollapseAnimation Type="OutQuint" Duration="200" />
                                                </telerik:RadComboBox>
                                             
                                        </ItemTemplate>
                                    </telerik:GridTemplateColumn>
Plamen
Telerik team
 answered on 26 Apr 2013
3 answers
100 views
I have a RadToolTip that is being shown as a modal dialog.  The dialog contains a RadGrid with Filtering enabled. When the user enters filter text and hits ENTER to apply the filter, an image button on the main page behind the modal dialog fires.

How do I stop this behavior?

Thanks

Steve
Marin Bratanov
Telerik team
 answered on 26 Apr 2013
3 answers
366 views
How do you programatically set multiple behaviors for a rad window.  I can get it to accept a sibngle behavior such as close or move but how do you tell it to have both Close and Move.

Thanks
Shinu
Top achievements
Rank 2
 answered on 26 Apr 2013
0 answers
70 views
Hi,

I have a splitter with 2 panes, on the left I have a RadTreeView, when I click on the node, the page will show on the right. But my problem is I want to display RadAjaxLoadingPanel before the page display. I try to use RadAjaxManager,
set ajaxsetting for RadTreeView updating a RadSplitter which having the RadTreeView that trigger it. This cause the RadTreeView to postback which I don't want. So how I can avoid the RadTreeView postback since I can only set the updatecontrol RadSplitter not the targeted RadPane. Its postback due to the server side NodeClick event, It seen that I need this even to make it work (display loadingpanel).
I also try to use Client script to display the RadAjaxLoadingPanel but it didn't work. Is there anyway I can make it work? I only want to make the RadTreeView node click with no postback, display the loadingpanel before the page load on the right pane.
1)

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">

    <AjaxSettings
        <telerik:AjaxSetting AjaxControlID="RadTreeView1">

                     <UpdatedControls>

                         <telerik:AjaxUpdatedControl ControlID="RadSplitter2" LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelCssClass="" />

                     </UpdatedControls>

             </telerik:AjaxSetting>

         </AjaxSettings>

 </telerik:RadAjaxManager>

 


2)

function OnClientNodeClicking(sender, args) { 
    var currentLoadingPanel = $find("<%=RadAjaxLoadingPanel1.ClientID %>");

    currentLoadingPanel.visibility = true;

     var url = args.get_node().get_value(); // get value

     var rd = $find("<%=Main.ClientID%>");

     rd.set_contentUrl(url); // Set the url

     args.set_cancel(true); // Cancell the event

    currentLoadingPanel.visibility = false;

}


Can anyone please help me? Thanks.
Dylan
Top achievements
Rank 2
 asked on 26 Apr 2013
11 answers
103 views
We have a user that uninstall the automatic updated IE10, which went back to the IE9 (the company's standard), but now the button Click action that leads to the radGrid's .ExportToPdf() method does nothing (it seemds to process for a few second but no error message nor a PDF poping up like before the IE debacle:).  Other (non .exportToPdf() based) PDF links work in the resurrected IE9 browser (our app does not work in other browser so can't test that way).

Any ideas on what setting might have gotten nuked (IOWs: what settings are needed) or does anything need to get reinstalled?

The apsx has:

<asp:Button ID="uxPrint" runat="server" ToolTip="Save/Print form" onclick="uxPrint_Click" UseSubmitBehavior="false"/>

There is no javascript on this button (other than what goes on with telerik's AJAX system);
 
The codebehind Starts with:

protected void uxPrint_Click(object sender, EventArgs e) { 
  RadGrid rgMain = Page.FindControl("rgMain") as RadGrid;

    rgMain.ExportSettings.OpenInNewWindow = true;

    rgMain.ExportSettings.Pdf.Title = uxEmployeeNameField.Text + " - " + uxCategoryField.Text; //...

    rgMain.ExportSettings.Pdf.PageTitle = rgMain.ExportSettings.Pdf.Title;

    rgMain.ExportSettings.Pdf.PageLeftMargin = Unit.Parse("10mm");

 . . .

 

//and finishes with:

    rgMain.MasterTableView.ExportToPdf();

}

AGAIN, it worked before the IE 10 upgrade then unistall back to IE9 which worked.
THANKS
Daniel
Telerik team
 answered on 26 Apr 2013
2 answers
155 views
Although i have coded the x-axis label to be hidden, it is still visible in my application.

This is the statement.
chart.PlotArea.XAxis.AxisLabel.Visible = false;

What i am doing wrong?
Sonia
Top achievements
Rank 1
 answered on 26 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?