Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
110 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
82 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
327 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
139 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
205 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
108 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
1 answer
55 views
Hi,

I've made a little webapplication using dock layout, dock zones and a dock but the dock frame and handle looks wird.

It looks like the ends of the titlebar dock handle is lowered 1 px.
When moving the dock around inside and outside the dock zone, the dock frame looks unstable, sometimes the right frame on the dock is there sometimes it isn't.

I've tried changing the resolution of my screen from 1920x1080 to 1024x768 but that didn't make any difference.

I'm not using any skin. I'm viewing in iE 9.

I get the same wird look on your demo site. Please see attached files to see what I mean.

Thanks.

/Thomas

        <telerik:RadDockLayout ID="RadDockLayout1" runat="server"
            StoreLayoutInViewState="True">
            <telerik:RadDockZone ID="RadDockZone1" runat="server" Height="300px" Width="300px">
                <telerik:RadDock ID="RadDock1" runat="server" Width="300px"
                    EnableEmbeddedSkins="False" Resizable="True">
                <ContentTemplate>
                <asp:Label ID="Label1" runat="server" Text="Hello dock"></asp:Label>
                </ContentTemplate>   
                </telerik:RadDock>
            </telerik:RadDockZone>
            <telerik:RadDockZone ID="RadDockZone2" runat="server" Height="300px" Width="300px">
            </telerik:RadDockZone>
        </telerik:RadDockLayout>
Slav
Telerik team
 answered on 08 Jun 2012
3 answers
246 views
I have a rad combo box and I have a selected RadComboBox Item that has a text  = abcform and Value = 100.

Now somewhere in my application I updated the entry to have a value of 101, but the text is still abcform.

When I come back to RadComboBox and search, the item is correctly populated(with value 101) but on selection of item , the selected index changed event is not firing and it is retaining the old value 100.

is this a bug in Radcombobox? Please suggest any solution to the problem.
Ivana
Telerik team
 answered on 08 Jun 2012
1 answer
99 views
Hi,
I have attached an example of how we would like to have the combobox styled, is this possible to achieve using the visual style builder?

Thanks
Hallur Holm Johannessen
Ivana
Telerik team
 answered on 08 Jun 2012
0 answers
76 views
Hi,
can't reply to the thread i created
it gives me ERROR, check the screenshot
Naresh
Top achievements
Rank 1
 asked on 08 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?