This is a migrated thread and some comments may be shown as answers.

Regardin wizard

1 Answer 35 Views
ListView
This is a migrated thread and some comments may be shown as answers.
prathyusha
Top achievements
Rank 1
prathyusha asked on 04 Jan 2012, 09:24 PM
HI

we are using wizard in our pages.

here is the code regarding wizard page

here we are using radplitter. Inside of this we are using 2 rad panels. one has radlistview with all the items. another panel for content page.Here i am ataching the printscrren of my page. Whenever user clicks on the radlistitem it should bavigate to corresponding page and needs to dispaly it in the content panel.

We were having some issues using the wizard. that we were not able to add the tooltips to the Radlistview items since it is binding dynamically and were not able to disable/Enable the radlist item on the contentpage events.

Could some one please sugest some other option to do these operations without using wizard


<telerik:RadSplitter  ID="RadSplitter1" runat="server"
            EnableEmbeddedBaseStylesheet="false" BorderStyle="None" EnableEmbeddedScripts="true"
            LiveResize="True" Width="940px">
            <telerik:RadPane ID="RadPane1" runat="server" CssClass="myStepContainer"
                Height="500px">
                <!-- Generate the left panel for the wizard steps-->
                
                <telerik:RadListView ID="WizardStepList" runat="server" ItemPlaceholderID="WizardStepsContainer"
                    DataKeyNames="Id" DataSourceID="WizardStepDataSource" >
                    <%--OnItemDataBound="lstRelatedItems_ItemDataBound"--%>
                    <LayoutTemplate>
                        <%--<fieldset> --%>
                        
                        <asp:Panel ID="WizardStepsContainer" runat="server" />
                        <%--</fieldset>--%></LayoutTemplate>
                    <ItemTemplate>
                        <div class='<%#Eval("StatusCssClass") %>' id="workflowItem" runat="server">
                            <p class="toggler">
                                <asp:LinkButton ID="NStep" index='<%# Index++ %>' CssClass='<%#Eval("StepCssClass") %>'
                                    Text='<%#Eval("StepDisplayText") %>' runat="server" OnClick="NavigateStep" OnClientClick='<%# "return navigate(\"" + (Index) + "\");" %>' ></asp:LinkButton></p>
                        </div>
                    </ItemTemplate>
                </telerik:RadListView>
            </telerik:RadPane>
            <telerik:RadPane ID="contentPane" EnableEmbeddedScripts="true" runat="server" ContentUrl="about:blank"
                CssClass="container" Width="790px" Height="600px">
                <div id="Div1" runat="server" class="workflowButtonsHoriz">
                    <asp:Button CssClass="prevButton" ID="Previous" title="Previous" runat="server" OnClick="Previous_Click" />
                    <asp:Button CssClass="nextButton" ID="Next" title="Next" runat="server" OnClick="Next_Click" />
                    <span style="display: none">
                        <asp:Button ID="refresh" runat="server" OnClick="Refresh" /></span>
                </div>
                <div class="clearBoth">
                </div>
            </telerik:RadPane>           
        </telerik:RadSplitter>




Could some one please help me regarding this

Thanks in advance

Thanks & Regards
Usha

1 Answer, 1 is accepted

Sort by
0
Antonio Stoilkov
Telerik team
answered on 07 Jan 2012, 10:14 AM
Hello,

I have assembled a sample project based on your description and code. The application demonstrates how Tooltip property can be set on the items and method for disabling or enabling RadListViewItem.

Greetings,
Antonio Stoilkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
ListView
Asked by
prathyusha
Top achievements
Rank 1
Answers by
Antonio Stoilkov
Telerik team
Share this question
or