Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
106 views
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
Antonio Stoilkov
Telerik team
 answered on 07 Jan 2012
2 answers
278 views

Hi,

I am having a problem which is a mere nuisance at worst. Check out the following screen shot - http://i167.photobucket.com/albums/u122/sixesallround/loadingImageBehind.png

The loading panel is getting lost behind the tabs. It makes it look a bit less professional. It’s not perfect!
The loading panel is implemented as follows:

<div id="loadingDiv" class="screenCenter" style="display: none;">  
    <telerik:RadAjaxLoadingPanel ID="DarRadAjaxLoadingPanel" Skin="Black" CssClass="lPanel"
                                 runat="server" Transparency="20"
                                 IsSticky="true" ZIndex="998">       
    </telerik:RadAjaxLoadingPanel>
</div>

The relevant CSS for that stuff is:
.screenCenter
{
    width: 150px;
    height: 70px;
    position: absolute;
    top: 30%;
    left: 45%;     
}
 
.lPanel
{
    margin: 0px;
    top: 0px;
    left: 0px;
    height: 62px;
    width: 142px;
    background-color: #9eda29;
    border: 4px solid #3d7f59;
}

I am using the client events of the RadAjaxManager to display and hide it, via the following Javascript:

function ShowLoadingPanel() {
    var loadPanelWrapper = $('#loadingDiv');
    loadPanelWrapper.css({ display: 'block' });
}
 
function HideLoadingPanel() {
    var loadPanelWrapper = $('#loadingDiv');
        loadPanelWrapper.css({ display: 'none' });
    }

 

Any ideas how I can ensure that it does not sink behind the tabs? Any idea as to why it is doing that?

 

Cheers

David
Top achievements
Rank 1
 answered on 07 Jan 2012
1 answer
80 views
I currently have set up a Hierarchy with a DetailTable inside my first grid.  However, I would like to display the DetailTable as a seperate grid below the main grid. 

Do I just create a new grid, and then bind the "onRowSelect" of the main table to reloading the data of the second grid?  Or is there a better way to link two grids together?
Jayesh Goyani
Top achievements
Rank 2
 answered on 07 Jan 2012
4 answers
222 views
Hi,

I want to implement an interface with 2 RadGrid's with a plitter between them to give an 'Explorer' like view.  When the user clicks on a row in the left hand grid it identifies the item being clicked and will re-display the right hand grid to show details of the item selected.  I would have thought that this would be trivial but I can't seem to get it to work.

I have captured the SelectedIndexChanged event for the LH grid but when I look at the gridParts.SelectedItems[0].DataItem value it is always NULL which I am not sure why.

Any-one got an example of using 2 grids in this way?
Jayesh Goyani
Top achievements
Rank 2
 answered on 07 Jan 2012
4 answers
189 views
I want to add "Print" option in CommandItemSettings along with existing Export Options. Is there a way I can extend CommandItemSettings, or do I need to create my own CommandItemTemplate?
Martin
Top achievements
Rank 1
 answered on 07 Jan 2012
0 answers
128 views
My company has a project that runs on a 2.0 .net framework app pool.  This project consumes a 2009.3.1208.35 versioned Telerik DLL.  Telerik.Web.UI.  I am trying to track back and find the documentation for this version of Telerik.  Can your group help me to locate the documentation for this code library?

Thanks!!!
Allan
Allan
Top achievements
Rank 1
 asked on 06 Jan 2012
2 answers
172 views
Hi,

I was showing an expand/collapse all button in the grid using the code smaple in:
 http://www.telerik.com/community/code-library/aspnet-ajax/grid/custom-expand-collapse-column-with-expandall-collapseall-image-button-in-the-header.aspx

However, I am unable to remove the default expand collapse column. I used the solution given in the thread but that does not work for me. It changes the alignment of my grid when it is expanded.
Can you tell me how to hide the default column.
MBEN
Top achievements
Rank 2
Veteran
 answered on 06 Jan 2012
2 answers
108 views
Hello
as I can put the format "year - month - day hour:minute:second" in datatimepicker?.

thank you very much beforehand
mauricio
Top achievements
Rank 1
 answered on 06 Jan 2012
4 answers
316 views
Hello, 

I have a column 

 <telerik:GridButtonColumn CommandName="SELECT" Text="SELECT" 
                        UniqueName="Select" >
 </telerik:GridButtonColumn>

in a radgrid, and I have the radgrid property 

onitemcommand="ItemCommand"

But when the button is clicked the event does not fire. Any ideas? I am on a deadline fast coming and this has stopped me in my tracks

All I could find in my searches is that I need to enable viewstate, but that has had no effect. 
Michael
Top achievements
Rank 1
 answered on 06 Jan 2012
3 answers
247 views
I'm dealing with quite large datasets here, and my application seems to throw an IO timeout exception if i set ignorepaging to true and there's too much data.

So what i've done is created a hiddenfield for my total record count and i want to limit the number of records exported to 500, in the hope this will avert said exception, see below:,

If hd_rowcount.Value > 499 Then   
   Me.rg_properties.PageSize = 500
   Me.rg_properties.ExportSettings.IgnorePaging = False
End If

However this doesn't work. I'm assuming because the pagesize has already been set to 20, thus only 20 records are being exported.

Is there a way i can achieve the above results or are there any other suggestions you'd recommend?
Alan T
Top achievements
Rank 1
 answered on 06 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?