Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views
Hello, i need to know if is possible that FormDecorator change the style of the pages of the multipage. i have a tabstrip with multipage and a radpageview. The tabs has contenturl that is loaded dynamically  when clicks the tab. How can i put a formdecorator in this case?

here some code 

<telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" Height="75px" Width="75px">
</telerik:RadAjaxLoadingPanel>
<telerik:RadTabStrip ID="RadTabStrip1" SelectedIndex="0" CssClass="tabStrip" runat="server"
    MultiPageID="RadMultiPage1" Skin="Default" AutoPostBack="true" ShowBaseLine="True"
    ClickSelectedTab="True" OnTabClick="RadTabStrip1_TabClick">
</telerik:RadTabStrip>
<telerik:RadAjaxManager runat="server" ID="RadAjaxManagerProxy1">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadTabStrip1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="RadTabStrip1" />
                <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="RadMultiPage1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="RadTabStrip1" />
                <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" CssClass="radMultiPage"
    BorderColor="Azure" BorderWidth="1" Height="99%" Width="100%">
    <telerik:RadPageView ID="RadPageView1" runat="server" Height="100%" Width="100%">
    </telerik:RadPageView>
</telerik:RadMultiPage>
<telerik:RadScriptBlock ID="radscriptBlock" runat="server">
    <script type="text/javascript">
        setTimeout("setPanelHeight()", 0);
         
        function setPanelHeight() {
            var heightTab = 0;
            heightTab = $("#ctl00_cphWorkWindow_tabStrip_ctl00_cphWorkWindow_tabStrip_RadTabStrip1Panel").outerHeight();
            var height = $(window).height();
            $("#ctl00_cphWorkWindow_tabStrip_ctl00_cphWorkWindow_tabStrip_RadMultiPage1Panel").height(height - heightTab - 80);
        }
    </script>
</telerik:RadScriptBlock>


regards,
Orlando.


Rumen
Telerik team
 answered on 06 Jul 2012
1 answer
115 views
I was trying a Rich Edit box for the website. We are having a basic ASP.net page. We would like to have the contents in the page edited by the Admin dynamically. Can we use RadEditor for this purpose.  Is that a free version or what is the price for the license. Do we need a separate Database to store the contents for that .
 
Rumen
Telerik team
 answered on 06 Jul 2012
2 answers
210 views
Hi all,,

i have a rad window and its contain a file upload... when i try to catch file path instead of a button click the file upload control should be always null.... and its shown an error...

please help..


Regards,

Prassin 
Prassin
Top achievements
Rank 1
 answered on 06 Jul 2012
6 answers
853 views
Hi All --

I have a templated column in my grid with a checkbox in each row.  Is there an easy way, client-side, to loop through and check/uncheck all of them?

This is not the built in checkbox column for selecting rows, but a separate column altogether.

Thanks!

Troy
Shinu
Top achievements
Rank 2
 answered on 06 Jul 2012
1 answer
77 views
Hi,

How can I prevent the user from changing the slider value? One way to do this is by disabling the slider, but the look and feel isn't good.

Thanks

Vasu
Shinu
Top achievements
Rank 2
 answered on 06 Jul 2012
3 answers
165 views
Hi,
I have a Rad Textbox in the form at page load i added style of display none,
now at rad combox selection change  at client event, i have to set style display block of that textbox.

function pageLoad() {
       txt = $find("<%=txtFuelsNameSearch.ClientID  %>");
       alert(txt);
   }






Thanks in advance.


Regards
Krishna
Princy
Top achievements
Rank 2
 answered on 06 Jul 2012
1 answer
42 views
Sir,

As hierarchical radgrid not suppor the databind method but is there any support how can we bind the data to hierarchical radgrid 
through webservice through client side.



Shinu
Top achievements
Rank 2
 answered on 06 Jul 2012
4 answers
480 views
Hi,

Radgrid details:
- I have setup only one column in the grid as a text box in item template. I need to implement something like excel, where user can enter/edit data in this cell, and press enter or down key to move to the cell on the row below.
- I have registered double click event on the row to redirect the user to a different page.

Can you please help me out with the problems below:
- On pressing enter in the cell (text box), a refresh / rebind happens. How can I avoid it? I tried putting in a default invisible button as well, but even that didn't work.
- On Double click of the cell (text box), the redirect happens. How can I avoid it? I tried having an "ondblclick" return false, but it didn't work.

Regards,
Saumil
Princy
Top achievements
Rank 2
 answered on 06 Jul 2012
2 answers
120 views
Hi All,

Just getting into creating custom skins, and have completed the combobox. All is working well other than the fact the check boxes still use the old skin sprites. How do i change the skin for the check boxes in the combo box? Is there a common gif that needs changing as there is seemingly no reference to anything the ComboBox_{skinname}.css file, and there are no check box sprites in the copied skin folder.

Any help would be appreciated.

Thanks
rpm
Top achievements
Rank 1
 answered on 05 Jul 2012
1 answer
107 views
Hi there
I created a custom skin for my RadGrid, but the Filter Items are not displaying correctly, they are too big.

I have tried setting almost every available option of the rgFilterRow height, I have set the FilterItemStyle and even created a code behind section

GridFilteringItem filteringItem = e.Item as GridFilteringItem;
            //set dimensions for the filter textbox 
            filteringItem["Date"].Width = Unit.Pixel(120);
            TextBox box = filteringItem["Status"].Controls[0] as TextBox;
            box.Height = Unit.Pixel(22);

All the other CSS works fine, but I can't get this to work and its driving me crazy :)

Here is a section of the css
.RadGrid_CustomGrid .rgFilterRow
{
    background:#eee;
    height:22px;
}
 
.RadGrid_CustomGrid .rgFilterRow input
{
    height:22px;
}
 
.RadGrid_CustomGrid .rgFilterRow td
{
    border-bottom:1px solid #828282;
    height:22px;
}
 
.RadGrid_CustomGrid .rgFilter
{
    background-position:0 -300px;
    height:22px;
}
 
.RadGrid_CustomGrid .rgFilter:hover
{
    background-position:0 -350px;
}
 
.RadGrid_CustomGrid .rgFilterActive,
.RadGrid_CustomGrid .rgFilterActive:hover
{
    background-position:0 -400px;
}
 
.RadGrid_CustomGrid .rgFilterBox
{
    border-color:#8e8e8e #c9c9c9 #c9c9c9 #8e8e8e;
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
}

Jako
Top achievements
Rank 1
 answered on 05 Jul 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?