Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
89 views
See image. In the new empty application is layout of calendar right. But in other my application line of name of days is bad layout. Do you know what with this?
Zbysek
Top achievements
Rank 1
 answered on 08 Jun 2012
3 answers
157 views
I'm using a radtreeview inside a combobox, and I'm using the following code for the OnClientNodeClicking event clientside.

The problem is that server side btnSearch_Click event the dropdown always returns the selected value as null.

Any help would be greatly appreciated.

function OnRadTreeViewInComboBoxNodeClicking(sender, args) {
    var dropdownId = $('#' + sender.get_id()).closest('.RadComboBoxDropDown').attr('id').replace('_DropDown', '');
    var comboBox = $find(dropdownId);
 
    var node = args.get_node()
    comboBox.set_text(node.get_text());
 
    comboBox.trackChanges();
    comboBox.get_items().getItem(0).set_text(node.get_text());
    comboBox.get_items().getItem(0).set_value(node.get_value());
    comboBox.commitChanges();
 
    comboBox.hideDropDown();
    comboBox.attachDropDown();
 
    $('#btnSearch').click();
 
}
Sergi
Top achievements
Rank 1
 answered on 08 Jun 2012
11 answers
427 views
Hi
i'm using the radscheduler in order to create a schedule for ssrs and telerik reports. this will work together with my alerting engine.

currently my page allows the user to select their report and set the report parameters. thereafter they click on the radschedule to select their recurrence and save. This is where i need to add more buttons\ drop downs etc as i require more info on the scheduled report other than just the recurrence. i need to add the extra controls onto the radscheduler appointment popup.

much appreciated
Avesh
Peter
Telerik team
 answered on 08 Jun 2012
1 answer
55 views
Hi,

We are looking for third party asp.net controls and i am wondering if there is any controls available in telerik which can show related values inside the dropdown/combo box?

We want to show multiple related columns with header inside the combo box so when the user click on the table cell, it will show combo box data in multiple columns format and first columns value is related to second column and second column is related to third.

Country -> City -> Places

Also, is there any combobox control which can show values in tree format with check boxes?
Ivana
Telerik team
 answered on 08 Jun 2012
2 answers
108 views
Hi there,

I was able to connect to my hierarchical sql data according to demo
http://demos.telerik.com/aspnet-ajax/treeview/examples/programming/databinding/defaultcs.aspx.

Now I need to transfer the items between two TreeViews, similar to the demo below except for the demo is using ListBoxs:
http://demos.telerik.com/aspnet-ajax/listbox/examples/functionality/transfer/defaultcs.aspx

But I need to keep the hierarchy information during transfer. Say, if the item belongs to group1 in TreeView1, it will also be shown as group1 item in TreeView2 after transfered to TreeView2.

TreeView2 is blank at first, after finished selecting data from TreeView1, I would like to write everything in TreeView2 to database with hierarchy info.

How could I accomplish that?

Thanks,
Di
Santhosh
Top achievements
Rank 1
 answered on 08 Jun 2012
1 answer
75 views
hi
i am having some problem in recurrence event.
i created a recurrence event in day 1 for day 1-4.
i updated the subject of day-2 and this worked fine.
but when i updated the subject of day-1 then day-2 disappeared and day-3 and day-4 timing split into two similar slots.
kindly give a solution .
Plamen
Telerik team
 answered on 08 Jun 2012
3 answers
318 views
Hi Friends,

i want to deselect the telerik treeview node on form body click using javascript?

how to do that?

thanks,
Burepalli V S Rao.
Princy
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
136 views
Hi,
    I created the Radwindow Popup, within that popup designed the labels , textboxes and radcombobox.Whenever add the radcombobox into popup,getting javascript error.Please find the attachment.
I am using Telerik.Web.UI, v.2011.3.1115.40 version.
Please provide me the solution.
Marin Bratanov
Telerik team
 answered on 08 Jun 2012
5 answers
198 views
Hi all I am having my RadTabstrip designed as follows

<telerik:RadTabStrip ID="rdtabEmployee" runat="server" MultiPageID="rdmpPersonal"
            UnSelectChildren="True" Skin="Vista" EnableEmbeddedSkins="False" ClickSelectedTab="True"
            AutoPostBack="True" SelectedIndex="0">
<Tabs>
<telerik:RadTab runat="server" Text="Taxes">
                    <Tabs>
                        <telerik:RadTab runat="server" Text="Residence" Selected="true"  PageViewID="rdpgResident">
                        </telerik:RadTab>
                        <telerik:RadTab runat="server" Text="Work" PageViewID="rdpgWork">
                        </telerik:RadTab>
                        <telerik:RadTab runat="server" Text="UnEmployment">
                        </telerik:RadTab>
                        <telerik:RadTab runat="server" Text="Withholding">
                        </telerik:RadTab>
                    </Tabs>
                </telerik:RadTab>
            </Tabs>
My RadMultiPage is designed as follows
<telerik:RadMultiPage ID="rdmpPersonal" runat="server" SelectedIndex="0">            <telerik:RadPageView ID="rdpgResident" runat="server" Selected="true">
                <telerik:RadPanelBar runat="server" ID="rdpbResidence" ExpandMode="FullExpandedItem"
                    Skin="Vista" EnableEmbeddedSkins="false" Width="550px">
                    <Items>
                        <telerik:RadPanelItem Expanded="true" Text="Resident Location" runat="server" Selected="true">
                            <Items>
                                <telerik:RadPanelItem Value="Resident" runat="server">
                                    <ItemTemplate>
                                        <div class="text" style="background-color: #edf9fe">
                                            <ul class="formList" id="residenceInfo">
                                                <li>
                                                    <asp:Label ID="lblTaxAutority" AssociatedControlID="rdcmbTaxAuthority" Width="150px"
                                                        runat="server" Text="Tax Authority"></asp:Label>
                                                    <telerik:RadComboBox runat="server" OnSelectedIndexChanged="rdcmbTaxAuthority_SelectedIndexChanged"
                                                        ID="rdcmbTaxAuthority" CssClass="ComboBox" AutoPostBack="true" Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdresTaxAuthority" runat="server"
                                                        ErrorMessage="Select Tax Authority" ControlToValidate="rdcmbTaxAuthority" ValidationGroup="vgResident"
                                                        CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                                <li>
                                                    <asp:Label ID="lblCountry" AssociatedControlID="rdcmbCounty" Width="150px" runat="server"
                                                        Text="Country"></asp:Label>
                                                    <telerik:RadComboBox runat="server" ID="rdcmbCounty" OnSelectedIndexChanged="rdcmbCountry_SelectedIndexChanged"
                                                        CssClass="ComboBox" AutoPostBack="true" Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdresCountry" InitialValue="--select--" runat="server"
                                                        ErrorMessage="Select Country" ControlToValidate="rdcmbCounty" ValidationGroup="vgResident"
                                                        CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                                <asp:Panel ID="pnlresTaxAuthority" runat="server" Visible="false">
                                                    <li>
                                                        <asp:Label ID="lblresidentLocaltaxauthority" AssociatedControlID="rdcmbresidentLocalTaxAuthority"
                                                            Width="150px" runat="server" Text="Local Tax Authority"></asp:Label>
                                                        <telerik:RadComboBox runat="server" ID="rdcmbresidentLocalTaxAuthority" CssClass="ComboBox"
                                                            AutoPostBack="true" OnSelectedIndexChanged="rdcmbresidentLocalTaxAuthority_SelectedIndexChanged"
                                                            Width="200px">
                                                        </telerik:RadComboBox>
                                                        <asp:RequiredFieldValidator ID="rqrdresLocaltaxauthority" InitialValue="--select--"
                                                            runat="server" ErrorMessage="Select Tax Authority" ControlToValidate="rdcmbresidentLocalTaxAuthority"
                                                            ValidationGroup="vgResident" CssClass="error"></asp:RequiredFieldValidator>
                                                    </li>
                                                </asp:Panel>
                                                <asp:Panel ID="pnlresSchoolDistrict" runat="server" Visible="false">
                                                    <li>
                                                        <asp:Label ID="lblresSchoolDistrict" Width="150px" AssociatedControlID="rdcmdresSchoolDistrict"
                                                            runat="server" Text="School District"></asp:Label>
                                                        <telerik:RadComboBox runat="server" ID="rdcmdresSchoolDistrict" CssClass="ComboBox"
                                                            AutoPostBack="false" Width="200px">
                                                        </telerik:RadComboBox>
                                                        <asp:RequiredFieldValidator ID="rqrdresSchooldistrict" InitialValue="--select--" runat="server"
                                                            ErrorMessage="Select school district" ControlToValidate="rdcmdresSchoolDistrict"
                                                            ValidationGroup="vgResident" CssClass="error"></asp:RequiredFieldValidator>
                                                    </li>
                                                </asp:Panel>
                                                <li>
                                                    <asp:Label ID="lblWorkSame" AssociatedControlID="chkSame" runat="server" Width="150px"
                                                        Text="Work is same as Resident"></asp:Label>
                                                    <asp:CheckBox ID="chkSame" runat="server"  /></li>
                                            </ul>
                                            <br />
                                            <table style="margin-left: 50px;">
                                                <tr>
                                                    <td>
                                                        <telerik:RadButton ID="rdbtnResidenceBack" OnClick="rdbtnResidenceBack_Click" runat="server" Text="Back" ValidationGroup="vgResident">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnResidenceCancel" OnClick="rdbtnResidenceCancel_Click" runat="server" Text="Cancel">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnResidenceSaveExit" OnClick="rdbtnResidenceSaveExit_Click" runat="server" Text="Save & Exit">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnResidenceSaveNext" runat="server" Text="Save & Next" OnClick="rdbtnResidenceSaveNext_Click"
                                                            ValidationGroup="vgResident">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnResidenceNext" runat="server" Text="Next" OnClick="rdbtnResidenceNext_Click">
                                                        </telerik:RadButton>
                                                        <br />
                                                    </td>
                                                </tr>
                                            </table>
                                            <br />
                                        </div>
                                    </ItemTemplate>
                                </telerik:RadPanelItem>
                            </Items>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelBar>
            </telerik:RadPageView>
            <telerik:RadPageView ID="rdpgWork" runat="server">
                <telerik:RadPanelBar runat="server" ID="rdpbWork" ExpandMode="FullExpandedItem" Skin="Vista"
                    EnableEmbeddedSkins="false" Width="550px">
                    <Items>
                        <telerik:RadPanelItem Expanded="true" Text="Work Location" runat="server" Selected="true">
                            <Items>
                                <telerik:RadPanelItem Value="Work" runat="server">
                                    <ItemTemplate>
                                        <div class="text" style="background-color: #edf9fe">
                                            <ul class="formList" id="residenceInfo">
                                                <li>
                                                    <asp:Label ID="lblwrkTaxAutority" AssociatedControlID="rdwrkcmbTaxAuthority" Width="150px"
                                                        runat="server" Text="Tax Authority"></asp:Label>
                                                    <telerik:RadComboBox runat="server" ID="rdwrkcmbTaxAuthority" CssClass="ComboBox"
                                                        AutoPostBack="true" Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdwrkTaxAuthority" runat="server" ErrorMessage="Select Tax Authority"
                                                        ControlToValidate="rdwrkcmbTaxAuthority" InitialValue="--select-" ValidationGroup="vgWork"
                                                        CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                                <li>
                                                    <asp:Label ID="lblwrkCountry" AssociatedControlID="rdwrkcmbCountry" Width="150px"
                                                        runat="server" Text="Country"></asp:Label>
                                                    <telerik:RadComboBox runat="server" ID="rdwrkcmbCountry" CssClass="ComboBox" AutoPostBack="false"
                                                        Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdwrkCountry" InitialValue="--select-" runat="server"
                                                        ErrorMessage="Select Country" ControlToValidate="rdwrkcmbCountry" ValidationGroup="vgWork"
                                                        CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                                <li>
                                                    <asp:Label ID="lblwrkLocaltaxauthority" AssociatedControlID="rdwrkcmbLocalTaxAuthority"
                                                        Width="150px" runat="server" Text="Local Tax Authority"></asp:Label>
                                                    <telerik:RadComboBox runat="server" ID="rdwrkcmbLocalTaxAuthority" CssClass="ComboBox"
                                                        AutoPostBack="false" Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdwrkLocaltaxauthority" InitialValue="--select-"
                                                        runat="server" ErrorMessage="Select Tax Authority" ControlToValidate="rdwrkcmbLocalTaxAuthority"
                                                        ValidationGroup="vgWork" CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                                <li>
                                                    <asp:Label ID="lblwrkSchoolDistrict" AssociatedControlID="rdcmdwrkSchoolDistrict"
                                                        Width="150px" runat="server" Text="School District"></asp:Label>
                                                    <telerik:RadComboBox runat="server" ID="rdcmdwrkSchoolDistrict" CssClass="ComboBox"
                                                        AutoPostBack="false" Width="200px">
                                                    </telerik:RadComboBox>
                                                    <asp:RequiredFieldValidator ID="rqrdwrkSchooldistrict" runat="server" ErrorMessage="Select school district"
                                                        ControlToValidate="rdcmdwrkSchoolDistrict" InitialValue="--select-" ValidationGroup="vgWork"
                                                        CssClass="error"></asp:RequiredFieldValidator>
                                                </li>
                                            </ul>
                                            <br />
                                            <table style="margin-left: 50px;">
                                                <tr>
                                                    <td>
                                                        <telerik:RadButton ID="rdbtnworkBack" runat="server" Text="Back" ValidationGroup="vgWork">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnworkCancel" runat="server" Text="Cancel">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnworkSaveExit" runat="server" Text="Save & Exit">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnworkSaveNext" runat="server" Text="Save & Next">
                                                        </telerik:RadButton>
                                                          
                                                        <telerik:RadButton ID="rdbtnworkNext" runat="server" Text="Next">
                                                        </telerik:RadButton>
                                                        <br />
                                                    </td>
                                                </tr>
                                            </table>
                                            <br />
                                        </div>
                                    </ItemTemplate>
                                </telerik:RadPanelItem>
                            </Items>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelBar>
            </telerik:RadPageView>
        </telerik:RadMultiPage>
Initially first rdpgResident will be in active state, now if i click on a button I would like to show rdpgWork in active state, I am getting the required but the rquired pageview was not high lighted.

As per the attached images First.png shows the default scenario, when i click on Save & next button I would like to do as per Second.png Image

Dorababu
Top achievements
Rank 1
 answered on 08 Jun 2012
2 answers
101 views
Hi there Everyone

I am unsure if this is possible but i will try

I want to know if it is possible to update only one columns data while the other data stays in tact.

The rule for my grid is that there will be data that will be shown from the SQLDatabase, and then there will be a status column which should update every 5 seconds so the user will know what is happening with that rows data, Is this possible?

Please help as soon as possible as i really need to know how to do this.

Kind Regards
Gregory
KobusVisagie
Top achievements
Rank 1
 answered on 08 Jun 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?