Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
56 views
hi, 
    I have added radFormDecorator in my page and choose skin Office2007, and set the decorated controls to "all" , now all the controls are having this skin except asp.fileUpload, can any one tell me how to set this skin to fileupload control too.
Sebastian
Telerik team
 answered on 27 Jun 2011
4 answers
79 views

Hello,

I have placed an image in the editor with the following source:

<img alt="" width="319" height="292" style="z-index: -50;border: 0px solid;" src="http://mysite.com/images/9/folder1/folder2/myimage.jpg" />

Which is working fine. When double click the image to open in the image manager I am receiving the javascript error: "Invalid Characters in Folder Name" and I can click "OK" and continue on as normal.

I have tried a few different things with the paths but still no go:

 

 

Dim viewImages As String() = New String() {Page.ResolveUrl("~/SubscriberImages/" & Session("SID"

))}

 

Dim uploadImages As String() = New String() {Page.ResolveUrl("~/SubscriberImages/" & Session("SID"

))}

This has something to do with using the absolute url in the 'src' because relative urls work fine. Any suggestions are appreciated.

 

 

Dobromir
Telerik team
 answered on 27 Jun 2011
1 answer
66 views
Hi,

When I have a grid with a single bottom pager as -

<PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" Position="Bottom" />

How can I get the browser to scroll tidely to the TOP of the page after I press any paging button on the pager?

Many Thanks
Matt
Shinu
Top achievements
Rank 2
 answered on 27 Jun 2011
3 answers
138 views
There are any workaroud to implement Virtual Scroll at treeview ?

Thanks

Paulo
Nikolay Tsenkov
Telerik team
 answered on 27 Jun 2011
1 answer
92 views
I would use a RadComboBox to edit a field within a formtemplate in RadGrid, but it returns me error if I enable EnableAutomaticLoadOnDemand property. Check the documentation that is not possible to use this feature AutomaticLoadOnDemand in this case.
The curious thing is that it works if I use the EditFormType=autogenerated(adding a DropDown column on the grid and setting the property EnableAutomaticLoadOnDemand = true).
Is there any solution for use a RadComboBox inside a formtemplate? or add a reference to the DropDown column in the grid template?
Cat Cheshire
Top achievements
Rank 1
 answered on 27 Jun 2011
4 answers
142 views
Hi guys

As pe the example at http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultvb.aspx, I'm trying to hide two of the four tabs when you use 'Table Wizard'.

I'd like to keep Designer and Accessible Table but omit TableProperties and CellProperties - I can hide the two tabs but when clicking on the 'Accessible' tab, I get the content from the 'Table Properties' tab instead.

How can I hide the two tabs AND ensure the remaining two tabs behave as expected? Is it because the second tab is always expected to be the Table Properties one?

I had used this code in TableWizad.ascx:

<telerik:RadTabStrip ShowBaseline="true" ID="TableWizardTab" runat="server" SelectedIndex="0" MultiPageID="dialogMultiPage">
    <Tabs>
        <telerik:RadTab Text="Table Design" Value="Tab1HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Table Properties"  Value="Tab2HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Cell Properties" Visible="false" Value="Tab3HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Accessibility" Value="Tab4HeaderText">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

Any help would be greatly appreciated.

Regards

Neil


HWNeil
Top achievements
Rank 1
 answered on 27 Jun 2011
2 answers
83 views
Hi,

We are using RadEditor in our application. if we set the style as "align:right" then it automatically convert in to "float:right" and this happens while we switch from HTML mode to Design mode.

The issue is, our application sends bulk mails and email client such Outllook etc.. are not understanding the "float" attribute and alignment is not happening properly.

It will be great if you can give the solution as soon as possible since application is live.

Thanks
Venkat
Venkatakrishna
Top achievements
Rank 1
 answered on 27 Jun 2011
1 answer
142 views
Hi
I am trying to use the RadMenu control similar to the MegraDropDown example (http://demos.telerik.com/aspnet-ajax/menu/examples/megadropdown/defaultcs.aspx). How can i use the sitemap as a datasource for this example instead of hard coding the node values?  If i use sitemap as datasource, It's simply binding as normal parent child mapping instead i wanted to exactly the way mega dropdown looks in the example, but the data has to come from the site map. Can somebody post a sample data source for this mega dropdown?  Thank you!

-Jega
Dimitar Terziev
Telerik team
 answered on 27 Jun 2011
3 answers
744 views
Hi,
I want to set the default name for saving export excel file. Currently the file name is RadGridExport.xls. Please help. Thanks.
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Jun 2011
1 answer
122 views
Hi there.

I have a grid where I am binding a data table. The first column is a check box. The problem is that it is read only on the grid.

What I want is a column with a check box that can be checked and unchecked. Also i want the same with its header. When the header check box is ticked, all the other check boxes should be ticked as well.

This is what i have right now

<telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" AutoGenerateColumns="true">
   <MasterTableView>
        <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings>
 
        <RowIndicatorColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </RowIndicatorColumn>
 
        <ExpandCollapseColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </ExpandCollapseColumn>
        <Columns>
        </Columns>
    </MasterTableView>
</telerik:RadGrid>

System.Data.DataTable dt = new System.Data.DataTable();
 
System.Data.DataColumn column0 = new System.Data.DataColumn("IsEnabled", typeof(bool));
System.Data.DataColumn column1 = new System.Data.DataColumn("Rule", typeof(string));
System.Data.DataColumn column2 = new System.Data.DataColumn("Status", typeof(string));
System.Data.DataColumn column3 = new System.Data.DataColumn("Priority", typeof(string));
System.Data.DataColumn column4 = new System.Data.DataColumn("UpImg", typeof(string));
System.Data.DataColumn column5 = new System.Data.DataColumn("DownImg", typeof(string));
 
dt.Columns.Add(column0);
dt.Columns.Add(column1);
dt.Columns.Add(column2);
dt.Columns.Add(column3);
dt.Columns.Add(column4);
dt.Columns.Add(column5);
 
System.Data.DataRow row = dt.NewRow();
 
row[column0] = true;
row[column1] = "test";
row[column2] = "test";
row[column3] = "0";
row[column4] = "test";
row[column5] = "test";
 
dt.Rows.Add(row);
 
RadGrid1.DataSource = dt;
RadGrid1.DataBind();

Thanks in advance
Princy
Top achievements
Rank 2
 answered on 27 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?