Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
201 views
Hi,

I am using the latest version of Telerik Controls for Asp .net.
I'd like to know how to get the title of RadWindow aligned left.
Currently the title is shown at the center of the title bar.
Here is my code.

<telerik:RadWindowManager ID="SupIntdRadWindowManager" runat="server" EnableShadow="true" DestroyOnClose="true" Behaviors="Close,Move,Resize,Pin"
        AutoSize="true" VisibleStatusbar="false" Overlay="true" ShowContentDuringLoad="false" ReloadOnShow="true"  
        Modal="true" />

 var radWin = window.radopen("Something/foo.aspx");
                    radWin.SetTitle("Foo");
                    return false;


Thanks in advanced.

Regards,
Nyi Nyi
Sam Vanhoutte
Top achievements
Rank 1
 answered on 08 Jan 2012
0 answers
46 views
I have a requirement like this:
Having Edit template as a separe user control.
From Rad grid I am specifying "Edit Form" as this Edit template USer control.
But In runtime I need to launch Edit template user control with in different "mode.". 


My Example something like this..
<RadGrid>
--
--
<MasterTableView>
<GridEditColumn>
<GridEditFormSettings>
 <uc:EditTemplate Mode="UnRead" ... ; >
<ucEditTemplate Mode="Read"

Mode here is a public property of User control..which i will use to handle different panels..

SO,In a nutshell,How to change Edit template's property before that page launches?
Please help..! Tried item_bound,Item_created events..But not getting.. :(
Krish
Top achievements
Rank 1
 asked on 08 Jan 2012
2 answers
100 views
Hi Im using amazing telerik rad grid

i just have a issue and i dont know how can i change the number of items in the combo box under the grid
the default values are set to 10 20 and 50 and i wanna change them to 100 200 and 500 How can i do this?

thank you for you support
Pouya
Top achievements
Rank 1
 answered on 08 Jan 2012
9 answers
142 views
if i will need to use 2 different handle for range slider?
for right and left?
is it possible?
omer
Top achievements
Rank 1
 answered on 08 Jan 2012
0 answers
37 views
I'm struck in strange problem. In one of my forms I use RadAjaxManager, RadAjaxLoadingPanel, RadTabStrip, RadMultiPage and RadGrid along with some other controls. The page works correctly. My problem is that, when I scroll down the page, it will go up automatically. When I scroll up, it will go down. What would be the problem here?

One more problem is there, the loading panel is not working all the times. Its showing the loading image only some times.
Mukesh
Top achievements
Rank 1
 asked on 07 Jan 2012
1 answer
75 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
175 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
55 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
166 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
160 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?