Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
157 views
I have the SkinManager Chooser in the Top right corner of my page (master page) so that users can chnage the skins to their desired setting. This works unless im on a page with a RadMenu Below the Chooser.

The Chooser then gets hidden behind the radmenu. I tried Aadding style to the markup like other rad controls but get this error

Type 'Telerik.Web.UI.RadSkinManager' does not have a public property named 'style'.

I tried setting the Menu to like 0 and still no luck.

How  can i make the Combo/DropDown of the RadSkin Manager come Over the RadMenu?

Thank you
TallOne
Top achievements
Rank 2
 answered on 20 May 2015
3 answers
688 views

My system works  well before I upgrade Telerik Web UI dll to 2013.3.1324.0 ,   after I upgrade, I find the I cannot build the system, and got  following error.

 

'Telerik.Web.UI.GridColumnValidationSettings' does not have a public property named 'ModelErrorMessage'

 

We do add the property in many pages. but it is ok in previous version.

 

 

Can u give us a clue how to solve that?

 

Thanks

mingyong

Dimitar
Telerik team
 answered on 20 May 2015
1 answer
102 views

HI,

 I wanted to expand all the child node of the parent node whenever the top node is selected. Please advice 

 

thanks in advance

 

Swarna

Ivan Danchev
Telerik team
 answered on 20 May 2015
1 answer
103 views

Hi all

My context menu sometimes gets displayed outside the page.

I have my grid and my context menu in a custom control on a page and as you can see on the attached image, some the menu choices gets below the footer on the page.

The same context menu has a menu item that is built up dynamically. It creates a list of status codes for the user to select. If I click to far to the right, these sub menu choices get to far right and are partly hidden by the frame of the browser.

Any tips on how to avoid this ?

 

 

Ivan Danchev
Telerik team
 answered on 20 May 2015
6 answers
404 views
I am using Radpivotgrid to show some values and using the export function to export the data to Excel. But when exported, the filter data is coming in merged cells. So when i use the filter on this merged column, only 1 row is showing up (with which the filter data is displayed).

How can I export the data to excel with filter values unmerged and copied to all the cells (column)? (providing samples of what I have now and what I am looking for)


I am using Radpivotgrid to show some values and using the export function to export the data to Excel. But when exported, the filter data is coming in merged cells. So when i use the filter on this merged column, only 1 row is showing up (with which the filter data is displayed).

How can I export the data to excel with filter values unmerged and copied to all the cells (column)?

This is how I am getting it now: 

I am using Radpivotgrid to show some values and using the export function to export the data to Excel. But when exported, the filter data is coming in merged cells. So when i use the filter on this merged column, only 1 row is showing up (with which the filter data is displayed).

How can I export the data to excel with filter values unmerged and copied to all the cells (column)?

This is how I am getting it now: 

I am using Radpivotgrid to show some values and using the export function to export the data to Excel. But when exported, the filter data is coming in merged cells. So when i use the filter on this merged column, only 1 row is showing up (with which the filter data is displayed).

How can I export the data to excel with filter values unmerged and copied to all the cells (column)?

This is how I am getting it now: 

Maria Ilieva
Telerik team
 answered on 20 May 2015
17 answers
141 views

Hi,

I have a problem with my comboBoxes on the client side of my application. When I call [ComboBox].get_items() I get a collection of items as expected, but the items are empty. What I find odd is that if I navigate to the itemData property i can see that the value of the items are correct even though there is no text property.

The combobox is defined as follows:

<telerik:RadComboBox ID="projectComboBox"
                        runat="server"
                        DataSourceID="ProjectSqlSource"
                        DataValueField="project_id"
                        DataTextField="Name" />
Where the SQL source contains only the project_id and Name columns. On the page itself, the combobox nicely shows all of the projects. It is possible to retrieve the first text and value of the RCB, but it doesn't seem to change the selected item. It might be important to note that I've twp other RCBs configured in the same way and I can easily access the data in the code behind when it is posted back to the server.

 Hope you are able to help

 

Regards

Casper

Casper
Top achievements
Rank 1
 answered on 20 May 2015
0 answers
82 views

how i can show Rad alert with radconfirm

<asp:Button ID="Button1" Text="Button" runat="server" OnClick="Button1_Click" OnClientClick="confirmAspButton(this);return false;"></asp:Button>

 

function confirmAspButton(button)        {
if (document.getElementById("txt11").value == "")            {
               radalert('Please select txt11.', 400, 180, 'Dossier-Mgmt', null, null);           
}
if (document.getElementById("TextBox1").value == "")
{                radalert('Please select Text1.', 400, 180, 'Dossier-Mgmt', OtherCallbackFn, null);
          }
function OtherCallbackFn(arg)           {                if (arg) { }           }
            radconfirm("Are you sure you want to postback?", aspButtonCallbackFn, 330, 180, null, "Confirm"); function aspButtonCallbackFn(arg)            {            if (arg) { __doPostBack(_button.name, ""); }
        }       }

KeDaR
Top achievements
Rank 1
 asked on 20 May 2015
1 answer
84 views

I am using the RadDateTimePicker to force user to enter a date and time. But when they select a date using the date calender popup a time (12:00 am) is also entered in the field along with the date.  How can I force the user to also pick a time so users do not leave the default time in the field.  I do not want to use 2 controls  ( one for date and one for time).  I would prefer to use the single control.

Thank you,

 

Dan

Eyup
Telerik team
 answered on 20 May 2015
0 answers
129 views

Hi,

I have a .aspx page on which I have a rad tool bar, radwindow.

Inside the radwindow, I have user control. This is shown when user selects some option on rad tool bar.

I need to implement required field validations inside the user control for some textboxes.

I get a weird issue where, if I add a RequiredFieldValidator control inside the usercontrol, the radwindow does not open. It does not even postback the main page.

I need -

1. A user control with required field validators

2. Radwindow opens on click of tool bar button.

3. Validation mesages are displayed either in user control or some place in rad window.

Thanks,

Amruta.

Amruta
Top achievements
Rank 1
 asked on 20 May 2015
6 answers
477 views
Hi,

I have a web page where i need to Put Two Rad Grid side by side (one on Left, one on Right). I want to make their rows aligned with each other and their Vertical Scrolling as well. 
Means  when User scroll One Grid (Top to Bottom) other grid should also do scroll.

Is It possible with Rad Grid?? or is there any work around?
If yes It would be great to have the solution or hint.

Thanks in advance,
Ankur Mittal
Konstantin Dikov
Telerik team
 answered on 20 May 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?